mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-12-01 16:12:33 +00:00
55 lines
961 B
INI
55 lines
961 B
INI
|
/*******************************************************************\
|
||
|
GZDoom Builder Script highlighting definitions for TERRAIN
|
||
|
\*******************************************************************/
|
||
|
|
||
|
// Editor settings
|
||
|
description = "ZDoom TERRAIN";
|
||
|
codepage = 0;
|
||
|
extensions = "txt";
|
||
|
casesensitive = false;
|
||
|
codeblockopen = "{";
|
||
|
codeblockclose = "}";
|
||
|
insertcase = 1; // 0=Normal, 1=Lowercase, 2=Uppercase
|
||
|
lexer = 35; // CPP-style, case-insensitive
|
||
|
keywordhelp = "http://zdoom.org/wiki/TERRAIN";
|
||
|
|
||
|
properties
|
||
|
{
|
||
|
// Splash
|
||
|
smallclass;
|
||
|
smallclip;
|
||
|
smallsound;
|
||
|
baseclass;
|
||
|
chunkclass;
|
||
|
chunkxvelshift;
|
||
|
chunkyvelshift;
|
||
|
chunkzvelshift;
|
||
|
chunkbasezvel;
|
||
|
sound;
|
||
|
|
||
|
// Terrain
|
||
|
footclip;
|
||
|
liquid;
|
||
|
friction;
|
||
|
damagetype;
|
||
|
damageamount;
|
||
|
damagetimemask;
|
||
|
allowprotection;
|
||
|
|
||
|
// Floor
|
||
|
defaultterrain;
|
||
|
noalert;
|
||
|
optional;
|
||
|
}
|
||
|
|
||
|
constants
|
||
|
{
|
||
|
splash;
|
||
|
terrain;
|
||
|
floor;
|
||
|
ifdoom;
|
||
|
ifheretic;
|
||
|
ifhexen;
|
||
|
ifstrife;
|
||
|
endif;
|
||
|
}
|