Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*************************************************************\
- Doom Builder Game Configuration for HacX
- \*************************************************************/
- // This is required to prevent accedential use of a different configuration
- type = "Doom Builder 2 Game Configuration";
- // This is the title to show for this game
- game = "HacX";
- // This is the simplified game engine/sourceport name
- engine = "doom2";
- // The format interface handles the map data format
- formatinterface = "DoomMapSetIO";
- // Default lump name for new map
- defaultlumpname = "MAP01";
- // Default testing parameters
- testparameters = "-basewad \"%WP\" -skill \"%S\" -file \"%AP\" \"%F\" -warp %L1 %L2 %NM";
- // Skill levels
- skills
- {
- 1 = "Please don't shoot";
- 2 = "Arrgh, I need health";
- 3 = "Let's rip them apart";
- 4 = "I am immortal";
- 5 = "Insanity!";
- }
- // Special linedefs
- soundlinedefflag = 64; // See linedefflags
- singlesidedflag = 1; // See linedefflags
- doublesidedflag = 4; // See linedefflags
- impassableflag = 1;
- upperunpeggedflag = 8;
- lowerunpeggedflag = 16;
- // Door making
- makedoortrack = "DOORTRAK";
- makedooraction = 1; // See linedeftypes
- // Generalized actions
- generalizedlinedefs = false;
- generalizedsectors = false;
- // Texture loading options
- mixtexturesflats = true;
- defaulttexturescale = 1.0f;
- defaultflatscale = 1.0f;
- // Thing number for start position in 3D Mode
- start3dmode = 32000;
- // Default flags for first new thing
- defaultthingflags
- {
- 1;
- 2;
- 4;
- }
- /*
- TEXTURES AND FLAT SOURCES
- This tells Doom Builder where to find the information for textures
- and flats in the IWAD file, Addition WAD file and Map WAD file.
- Start and end lumps must be given in a structure (of which the
- key name doesnt matter) and any textures or flats in between them
- are loaded in either the textures category or flats category.
- For textures: PNAMES, TEXTURE1 and TEXTURE2 are loaded by default.
- */
- // Texture sources
- textures
- {
- }
- // Flat sources
- flats
- {
- standard1
- {
- start = "F_START";
- end = "F_END";
- }
- standard2
- {
- start = "FF_START";
- end = "FF_END";
- }
- standard3
- {
- start = "FF_START";
- end = "F_END";
- }
- standard4
- {
- start = "F_START";
- end = "FF_END";
- }
- }
- /*
- TEXTURES AND FLATS FILTERING
- This allows you to filter textures and flats so that you only see the
- textures/flats listed that you prefer to use.
- The key name doesnt matter here, only the values. You can use
- the following wildcards in values to specify ranges:
- ? = Any character
- * = Zero or more characters
- # = Any numeric digit
- [abc...] = Any of these characters that are between brackets
- [!abc..] = Not any of these characters that are between brackets
- */
- // List these textures...
- texturesfilter
- {
- all_textures = "*";
- }
- // But do not list these textures...
- notexturesfilter
- {
- none = "";
- }
- // List these flats...
- flatsfilter
- {
- all_flats = "*";
- }
- // But do not list these flats...
- noflatsfilter
- {
- none = "";
- }
- /*
- GAME DETECT PATTERN
- Used to guess the game for which a WAD file is made.
- 1 = One of these lumps must exist
- 2 = None of these lumps must exist
- 3 = All of these lumps must exist
- */
- gamedetect
- {
- EXTENDED = 2;
- BEHAVIOR = 2;
- E1M1 = 2; E1M2 = 2; E1M3 = 2; E1M4 = 2; E1M5 = 2; E1M6 = 2; E1M7 = 2; E1M8 = 2; E1M9 = 2;
- E2M1 = 2; E2M2 = 2; E2M3 = 2; E2M4 = 2; E2M5 = 2; E2M6 = 2; E2M7 = 2; E2M8 = 2; E2M9 = 2;
- E3M1 = 2; E3M2 = 2; E3M3 = 2; E3M4 = 2; E3M5 = 2; E3M6 = 2; E3M7 = 2; E3M8 = 2; E3M9 = 2;
- E4M1 = 2; E4M2 = 2; E4M3 = 2; E4M4 = 2; E4M5 = 2; E4M6 = 2; E4M7 = 2; E4M8 = 2; E4M9 = 2;
- MAP01 = 1; MAP02 = 1; MAP03 = 1; MAP04 = 1; MAP05 = 1; MAP06 = 1; MAP07 = 1; MAP08 = 1; MAP09 = 1; MAP10 = 1;
- MAP11 = 1; MAP12 = 1; MAP13 = 1; MAP14 = 1; MAP15 = 1; MAP16 = 1; MAP17 = 1; MAP18 = 1; MAP19 = 1; MAP20 = 1;
- MAP21 = 1; MAP22 = 1; MAP23 = 1; MAP24 = 1; MAP25 = 1; MAP26 = 1; MAP27 = 1; MAP28 = 1; MAP29 = 1; MAP30 = 1;
- MAP31 = 1; MAP32 = 1; MAP33 = 2; MAP34 = 2; MAP35 = 2; MAP36 = 2; MAP37 = 2; MAP38 = 2; MAP39 = 2; MAP40 = 2;
- MAP41 = 2;
- }
- /*
- MAP LUMP NAMES
- Map lumps are loaded with the map as long as they are right after each other. When the editor
- meets a lump which is not defined in this list it will ignore the map if not satisfied.
- The order of items defines the order in which lumps will be written to WAD file on save.
- To indicate the map header lump, use ~MAP
- Legenda:
- required = Lump is required to exist.
- blindcopy = Lump will be copied along with the map blindly. (usefull for lumps Doom Builder doesn't use)
- nodebuild = The nodebuilder generates this lump.
- allowempty = The nodebuilder is allowed to leave this lump empty.
- script = This lump is a text-based script. Specify the filename of the script configuration to use.
- */
- maplumpnames
- {
- ~MAP
- {
- required = true;
- blindcopy = true;
- nodebuild = false;
- }
- THINGS
- {
- required = true;
- nodebuild = true;
- allowempty = true;
- }
- LINEDEFS
- {
- required = true;
- nodebuild = true;
- allowempty = false;
- }
- SIDEDEFS
- {
- required = true;
- nodebuild = true;
- allowempty = false;
- }
- VERTEXES
- {
- required = true;
- nodebuild = true;
- allowempty = false;
- }
- SEGS
- {
- required = false;
- nodebuild = true;
- allowempty = false;
- }
- SSECTORS
- {
- required = false;
- nodebuild = true;
- allowempty = false;
- }
- NODES
- {
- required = false;
- nodebuild = true;
- allowempty = false;
- }
- SECTORS
- {
- required = true;
- nodebuild = true;
- allowempty = false;
- }
- REJECT
- {
- required = false;
- nodebuild = true;
- allowempty = false;
- }
- BLOCKMAP
- {
- required = false;
- nodebuild = true;
- allowempty = false;
- }
- }
- // DEFAULT SECTOR BRIGHTNESS LEVELS
- sectorbrightness
- {
- 255;
- 240;
- 224;
- 208;
- 192;
- 176;
- 160;
- 144;
- 128;
- 112;
- 96;
- 80;
- 64;
- 48;
- 32;
- 16;
- 0;
- }
- // SECTOR TYPES
- sectortypes
- {
- 0 = "Normal";
- 1 = "Light Blinks (randomly)";
- 2 = "Light Blinks (0.5 sec)";
- 3 = "Light Blinks (1 sec)";
- 4 = "Damage -10 or 20% health and Light Blinks (0.5 sec)";
- 5 = "Damage -5 or 10% health";
- 7 = "Damage -2 or 5% health";
- 8 = "Light Glows (1+ sec)";
- 9 = "Secret";
- 10 = "Door Close Stay (after 30 sec)";
- 11 = "Damage -10 or 20% health and End level";
- 12 = "Light Blinks (0.5 sec sync)";
- 13 = "Light Blinks (1 sec sync)";
- 14 = "Door Open Stay (after 300 sec)";
- 16 = "Damage -10 or 20% health";
- 17 = "Light Flickers (randomly)";
- }
- // LINEDEF FLAGS
- linedefflags
- {
- 1 = "Impassible";
- 2 = "Block Monster";
- 4 = "Double Sided";
- 8 = "Upper Unpegged";
- 16 = "Lower Unpegged";
- 32 = "Secret";
- 64 = "Block Sound";
- 128 = "Hidden";
- 256 = "Shown";
- }
- // Linedef flags UDMF translation table
- // This is needed for copy/paste and prefabs to work properly
- // When the UDMF field name is prefixed with ! it is inverted
- linedefflagstranslation
- {
- 1 = "blocking";
- 2 = "blockmonsters";
- 4 = "twosided";
- 8 = "dontpegtop";
- 16 = "dontpegbottom";
- 32 = "secret";
- 64 = "blocksound";
- 128 = "dontdraw";
- 256 = "mapped";
- }
- // LINEDEF ACTIVATIONS
- linedefactivations
- {
- }
- // LINEDEF TYPES
- linedeftypes
- {
- misc
- {
- 0
- {
- title = "None";
- prefix = "";
- }
- }
- door
- {
- title = "Door";
- 1
- {
- title = "Door Open Wait Close (also monsters)";
- prefix = "DR";
- }
- 2
- {
- title = "Door Open Stay";
- prefix = "W1";
- }
- 3
- {
- title = "Door Close Stay";
- prefix = "W1";
- }
- 4
- {
- title = "Door Open Wait Close";
- prefix = "W1";
- }
- 16
- {
- title = "Door Close Wait Open";
- prefix = "W1";
- }
- 26
- {
- title = "Door (Blue) Open Wait Close";
- prefix = "DR";
- }
- 27
- {
- title = "Door (Yellow) Open Wait Close";
- prefix = "DR";
- }
- 28
- {
- title = "Door (Red) Open Wait Close";
- prefix = "DR";
- }
- 29
- {
- title = "Door Open Wait Close";
- prefix = "S1";
- }
- 31
- {
- title = "Door Open Stay";
- prefix = "D1";
- }
- 32
- {
- title = "Door (Blue) Open Stay";
- prefix = "D1";
- }
- 33
- {
- title = "Door (Red) Open Stay";
- prefix = "D1";
- }
- 34
- {
- title = "Door (Yellow) Open Stay";
- prefix = "D1";
- }
- 42
- {
- title = "Door Close Stay";
- prefix = "SR";
- }
- 46
- {
- title = "Door Open Stay";
- prefix = "GR";
- }
- 50
- {
- title = "Door Close Stay";
- prefix = "S1";
- }
- 61
- {
- title = "Door Open Stay";
- prefix = "SR";
- }
- 63
- {
- title = "Door Open Wait Close";
- prefix = "SR";
- }
- 75
- {
- title = "Door Close Stay";
- prefix = "WR";
- }
- 76
- {
- title = "Door Close Stay Open";
- prefix = "WR";
- }
- 86
- {
- title = "Door Open Stay";
- prefix = "WR";
- }
- 90
- {
- title = "Door Open Wait Close";
- prefix = "WR";
- }
- 99
- {
- title = "Door (Blue) Open Stay (fast)";
- prefix = "SR";
- }
- 103
- {
- title = "Door Open Stay";
- prefix = "S1";
- }
- 105
- {
- title = "Door Open Wait Close (fast)";
- prefix = "WR";
- }
- 106
- {
- title = "Door Open Stay (fast)";
- prefix = "WR";
- }
- 107
- {
- title = "Door Close Stay (fast)";
- prefix = "WR";
- }
- 108
- {
- title = "Door Open Wait Close (fast)";
- prefix = "W1";
- }
- 109
- {
- title = "Door Open Stay (fast)";
- prefix = "W1";
- }
- 110
- {
- title = "Door Close (fast)";
- prefix = "W1";
- }
- 111
- {
- title = "Door Open Wait Close (fast)";
- prefix = "S1";
- }
- 112
- {
- title = "Door Open Stay (fast)";
- prefix = "S1";
- }
- 113
- {
- title = "Door Close Stay (fast)";
- prefix = "S1";
- }
- 114
- {
- title = "Door Open Wait Close (fast)";
- prefix = "SR";
- }
- 115
- {
- title = "Door Open Stay (fast)";
- prefix = "SR";
- }
- 116
- {
- title = "Door Close Stay (fast)";
- prefix = "SR";
- }
- 117
- {
- title = "Door Open Wait Close (fast)";
- prefix = "DR";
- }
- 118
- {
- title = "Door Open Stay (fast)";
- prefix = "D1";
- }
- 133
- {
- title = "Door (Blue) Open Stay (fast)";
- prefix = "S1";
- }
- 134
- {
- title = "Door (Red) Open Stay (fast)";
- prefix = "SR";
- }
- 135
- {
- title = "Door (Red) Open Stay (fast)";
- prefix = "S1";
- }
- 136
- {
- title = "Door (Yellow) Open Stay (fast)";
- prefix = "SR";
- }
- 137
- {
- title = "Door (Yellow) Open Stay (fast)";
- prefix = "S1";
- }
- }
- floor
- {
- title = "Floor";
- 5
- {
- title = "Floor Raise to Lowest Ceiling";
- prefix = "W1";
- }
- 9
- {
- title = "Floor Raise Donut (changes texture)";
- prefix = "S1";
- }
- 14
- {
- title = "Floor Raise by 32 (changes texture)";
- prefix = "S1";
- }
- 15
- {
- title = "Floor Raise by 24 (changes texture)";
- prefix = "S1";
- }
- 18
- {
- title = "Floor Raise to Next Higher Floor";
- prefix = "S1";
- }
- 19
- {
- title = "Floor Lower to Highest Floor";
- prefix = "W1";
- }
- 20
- {
- title = "Floor Raise to Next Higher Floor (changes texture)";
- prefix = "S1";
- }
- 22
- {
- title = "Floor Raise to Next Higher Floor (changes texture)";
- prefix = "W1";
- }
- 23
- {
- title = "Floor Lower to Lowest Floor";
- prefix = "S1";
- }
- 24
- {
- title = "Floor Raise to Lowest Ceiling";
- prefix = "G1";
- }
- 30
- {
- title = "Floor Raise by Shortest Lower Texture";
- prefix = "W1";
- }
- 36
- {
- title = "Floor Lower to 8 above Highest Floor";
- prefix = "W1";
- }
- 37
- {
- title = "Floor Lower to Lowest Floor (changes texture)";
- prefix = "W1";
- }
- 38
- {
- title = "Floor Lower to Lowest Floor";
- prefix = "W1";
- }
- 45
- {
- title = "Floor Lower to Highest Floor";
- prefix = "SR";
- }
- 47
- {
- title = "Floor Raise to Next Higher Floor (changes texture)";
- prefix = "G1";
- }
- 53
- {
- title = "Floor Start Moving Up and Down";
- prefix = "W1";
- }
- 54
- {
- title = "Floor Stop Moving";
- prefix = "W1";
- }
- 55
- {
- title = "Floor Raise to 8 below Lowest Ceiling (crushes)";
- prefix = "S1";
- }
- 56
- {
- title = "Floor Raise to 8 below Lowest Ceiling (crushes)";
- prefix = "W1";
- }
- 58
- {
- title = "Floor Raise by 24";
- prefix = "W1";
- }
- 59
- {
- title = "Floor Raise by 24 (changes texture)";
- prefix = "W1";
- }
- 60
- {
- title = "Floor Lower to Lowest Floor";
- prefix = "SR";
- }
- 64
- {
- title = "Floor Raise to Lowest Ceiling";
- prefix = "SR";
- }
- 65
- {
- title = "Floor Raise to 8 below Lowest Ceiling (crushes)";
- prefix = "SR";
- }
- 66
- {
- title = "Floor Raise by 24 (changes texture)";
- prefix = "SR";
- }
- 67
- {
- title = "Floor Raise by 32 (changes texture)";
- prefix = "SR";
- }
- 68
- {
- title = "Floor Raise to Next Higher Floor (changes texture)";
- prefix = "SR";
- }
- 69
- {
- title = "Floor Raise to Next Higher Floor";
- prefix = "SR";
- }
- 70
- {
- title = "Floor Lower to 8 above Highest Floor";
- prefix = "SR";
- }
- 71
- {
- title = "Floor Lower to 8 above Highest Floor";
- prefix = "S1";
- }
- 82
- {
- title = "Floor Lower to Lowest Floor";
- prefix = "WR";
- }
- 83
- {
- title = "Floor Lower to Highest Floor";
- prefix = "WR";
- }
- 84
- {
- title = "Floor Lower to Lowest Floor (changes texture)";
- prefix = "WR";
- }
- 87
- {
- title = "Floor Start Moving Up and Down";
- prefix = "WR";
- }
- 89
- {
- title = "Floor Stop Moving";
- prefix = "WR";
- }
- 91
- {
- title = "Floor Raise to Lowest Ceiling";
- prefix = "WR";
- }
- 92
- {
- title = "Floor Raise by 24";
- prefix = "WR";
- }
- 93
- {
- title = "Floor Raise by 24 (changes texture)";
- prefix = "WR";
- }
- 94
- {
- title = "Floor Raise to 8 below Lowest Ceiling (crushes)";
- prefix = "WR";
- }
- 95
- {
- title = "Floor Raise to Next Higher Floor (changes texture)";
- prefix = "WR";
- }
- 96
- {
- title = "Floor Raise by Shortest Lower Texture";
- prefix = "WR";
- }
- 98
- {
- title = "Floor Lower to 8 above Highest Floor";
- prefix = "WR";
- }
- 101
- {
- title = "Floor Raise to Lowest Ceiling";
- prefix = "S1";
- }
- 102
- {
- title = "Floor Lower to Highest Floor";
- prefix = "S1";
- }
- 119
- {
- title = "Floor Raise to Next Higher Floor";
- prefix = "W1";
- }
- 128
- {
- title = "Floor Raise to Next Higher Floor";
- prefix = "WR";
- }
- 129
- {
- title = "Floor Raise to Next Higher Floor (fast)";
- prefix = "WR";
- }
- 130
- {
- title = "Floor Raise to Next Higher Floor (fast)";
- prefix = "W1";
- }
- 131
- {
- title = "Floor Raise to Next Higher Floor (fast)";
- prefix = "S1";
- }
- 132
- {
- title = "Floor Raise to Next Higher Floor (fast)";
- prefix = "SR";
- }
- 140
- {
- title = "Floor Raise by 512";
- prefix = "S1";
- }
- }
- crusher
- {
- title = "Crusher";
- 6
- {
- title = "Crusher Start with Fast Damage";
- prefix = "W1";
- }
- 25
- {
- title = "Crusher Start with Slow Damage";
- prefix = "W1";
- }
- 57
- {
- title = "Crusher Stop";
- prefix = "W1";
- }
- 73
- {
- title = "Crusher Start with Slow Damage";
- prefix = "WR";
- }
- 74
- {
- title = "Crusher Stop";
- prefix = "WR";
- }
- 77
- {
- title = "Crusher Start with Fast Damage";
- prefix = "WR";
- }
- 141
- {
- title = "Crusher Start with Slow Damage (silent)";
- prefix = "W1";
- }
- }
- stairs
- {
- title = "Stairs";
- 7
- {
- title = "Stairs Raise by 8";
- prefix = "S1";
- }
- 8
- {
- title = "Stairs Raise by 8";
- prefix = "W1";
- }
- 100
- {
- title = "Stairs Raise by 16 (fast)";
- prefix = "W1";
- }
- 127
- {
- title = "Stairs Raise by 16 (fast)";
- prefix = "S1";
- }
- }
- lift
- {
- title = "Lift";
- 10
- {
- title = "Lift Lower Wait Raise";
- prefix = "W1";
- }
- 21
- {
- title = "Lift Lower Wait Raise";
- prefix = "S1";
- }
- 62
- {
- title = "Lift Lower Wait Raise";
- prefix = "SR";
- }
- 88
- {
- title = "Lift Lower Wait Raise";
- prefix = "WR";
- }
- 120
- {
- title = "Lift Lower Wait Raise (fast)";
- prefix = "WR";
- }
- 121
- {
- title = "Lift Lower Wait Raise (fast)";
- prefix = "W1";
- }
- 122
- {
- title = "Lift Lower Wait Raise (fast)";
- prefix = "S1";
- }
- 123
- {
- title = "Lift Lower Wait Raise (fast)";
- prefix = "SR";
- }
- }
- exit
- {
- title = "Exit";
- 11
- {
- title = "Exit Level";
- prefix = "S1";
- }
- 51
- {
- title = "Exit Level (goes to secret level)";
- prefix = "S1";
- }
- 52
- {
- title = "Exit Level";
- prefix = "W1";
- }
- 124
- {
- title = "Exit Level (goes to secret level)";
- prefix = "W1";
- }
- }
- light
- {
- title = "Light";
- 12
- {
- title = "Light Change to Brightest Adjacent";
- prefix = "W1";
- }
- 13
- {
- title = "Light Change to 255";
- prefix = "W1";
- }
- 17
- {
- title = "Light Start Blinking";
- prefix = "W1";
- }
- 35
- {
- title = "Light Change to 35";
- prefix = "W1";
- }
- 79
- {
- title = "Light Change to 35";
- prefix = "WR";
- }
- 80
- {
- title = "Light Change to Brightest Adjacent";
- prefix = "WR";
- }
- 81
- {
- title = "Light Change to 255";
- prefix = "WR";
- }
- 104
- {
- title = "Light Change to Darkest Adjacent";
- prefix = "W1";
- }
- 138
- {
- title = "Light Change to 255";
- prefix = "SR";
- }
- 139
- {
- title = "Light Change to 35";
- prefix = "SR";
- }
- }
- ceiling
- {
- title = "Ceiling";
- 40
- {
- title = "Ceiling Raise to Highest Ceiling";
- prefix = "W1";
- }
- 41
- {
- title = "Ceiling Lower to Floor";
- prefix = "S1";
- }
- 43
- {
- title = "Ceiling Lower to Floor";
- prefix = "SR";
- }
- 44
- {
- title = "Ceiling Lower to 8 above Floor";
- prefix = "W1";
- }
- 49
- {
- title = "Ceiling Lower to 8 above Floor (perpetual slow crusher damage)";
- prefix = "S1";
- }
- 72
- {
- title = "Ceiling Lower to 8 above Floor";
- prefix = "WR";
- }
- }
- scroll
- {
- title = "Scroll";
- 48
- {
- title = "Scroll Texture Left";
- prefix = "";
- }
- }
- teleport
- {
- title = "Teleport";
- 125
- {
- title = "Teleport (monsters only)";
- prefix = "W1";
- }
- 126
- {
- title = "Teleport (monsters only)";
- prefix = "WR";
- }
- 97
- {
- title = "Teleport";
- prefix = "WR";
- }
- 39
- {
- title = "Teleport";
- prefix = "W1";
- }
- }
- }
- // THING FLAGS
- thingflags
- {
- 1 = "Easy";
- 2 = "Medium";
- 4 = "Hard";
- 8 = "Deaf";
- 16 = "Multiplayer";
- }
- // Thing flags UDMF translation table
- // This is needed for copy/paste and prefabs to work properly
- // When the UDMF field name is prefixed with ! it is inverted
- thingflagstranslation
- {
- 1 = "skill1";
- 2 = "skill2";
- 4 = "skill3";
- 8 = "ambush";
- 16 = "!single";
- }
- // THING FLAGS ERROR MASK
- // Mask for the thing flags which indicates the options
- // that make the same thing appear in the same modes
- thingflagsmask1 = 7; // 1 + 2 + 4
- thingflagsmask2 = 0;
- // THING TYPES
- thingtypes
- {
- editor
- {
- color = 15; // White
- arrow = 1;
- title = "Editor Things";
- width = 16;
- sort = 1;
- height = 0;
- hangs = 0;
- blocking = 0;
- error = 0;
- 32000 = "Visual Mode camera";
- }
- players
- {
- color = 10; // Light Green
- arrow = 1;
- title = "Player Starts";
- width = 16;
- sort = 1;
- height = 56;
- hangs = 0;
- blocking = 1;
- error = 2;
- 1
- {
- title = "Player 1 start";
- sprite = "PLAYA2A8";
- }
- 2
- {
- title = "Player 2 start";
- sprite = "PLAYB2B8";
- }
- 3
- {
- title = "Player 3 start";
- sprite = "PLAYC2C8";
- }
- 4
- {
- title = "Player 4 start";
- sprite = "PLAYD2D8";
- }
- 11
- {
- title = "Player Deathmatch start";
- sprite = "PLAYF1";
- }
- }
- teleports
- {
- color = 2; // Green
- arrow = 1;
- title = "Teleports";
- width = 16;
- sort = 1;
- height = 56;
- hangs = 0;
- blocking = 0;
- error = 0;
- 14
- {
- title = "Teleport Destination";
- sprite = "TFOGB0";
- }
- }
- monsters
- {
- color = 12; // Light Red
- arrow = 1;
- title = "Monsters";
- width = 20;
- sort = 1;
- height = 56;
- hangs = 0;
- blocking = 1;
- error = 2;
- 3004
- {
- title = "Thug";
- sprite = "POSSE2E8";
- height = 64;
- }
- 9
- {
- title = "Android";
- sprite = "SPOSA2A8";
- height = 72;
- }
- 3001
- {
- title = "ICE";
- sprite = "TROOA2A8";
- height = 80;
- }
- 65
- {
- title = "Monstruct";
- sprite = "CPOSA2";
- height = 96;
- }
- 3002
- {
- title = "Buzzer";
- sprite = "SARGA2A8";
- height = 64;
- width = 30;
- }
- 58
- {
- title = "Stealth";
- sprite = "SARGG6";
- height = 64;
- width = 30;
- }
- 3006
- {
- title = "D-Man";
- sprite = "SKULA8A2";
- height = 64;
- }
- 69
- {
- title = "Mechamaniac";
- sprite = "BOS2B2D8";
- height = 72;
- width = 32;
- }
- 3003
- {
- title = "Terminatrix";
- sprite = "BOSSA2A8";
- height = 64;
- width = 32;
- }
- 68
- {
- title = "Thorn Thing";
- sprite = "BSPIA2A8";
- height = 80;
- width = 64;
- }
- 23
- {
- title = "Thorn Thing (stationary)";
- sprite = "BSPIG1";
- height = 80;
- width = 64;
- }
- 71
- {
- title = "Majong 7";
- sprite = "PAINA2A8";
- height = 72;
- width = 31;
- }
- 67
- {
- title = "Phage";
- sprite = "FATTA2A8";
- height = 72;
- }
- 81
- {
- title = "Phage (mummy)";
- sprite = "BRS1A0";
- }
- 80
- {
- title = "Phage (skeleton)";
- sprite = "POB2A0";
- }
- 84
- {
- title = "Roaming Mine";
- sprite = "SSWVA2";
- }
- 66
- {
- title = "Repliant";
- sprite = "SKELA2D8";
- }
- 64
- {
- title = "Security Turret";
- sprite = "VILEA2D8";
- }
- 16
- {
- title = "GENIE (Final)";
- width = 40;
- sprite = "CYBRA2";
- height = 110;
- }
- 7
- {
- title = "Grax";
- width = 128;
- sprite = "SPIDA2A8";
- height = 100;
- }
- }
- weapons
- {
- color = 14; // Yellow
- arrow = 0;
- title = "Weapons";
- width = 20;
- height = 25;
- hangs = 0;
- blocking = 0;
- sort = 1;
- 2005
- {
- title = "Reznator";
- sprite = "CSAWA0";
- }
- 2001
- {
- title = "Tazer";
- sprite = "SHOTA0";
- }
- 82
- {
- title = "Cryogun";
- sprite = "SGN2A0";
- }
- 2002
- {
- title = "Uzi";
- sprite = "MGUNA0";
- }
- 2003
- {
- title = "Photon 'Zooka";
- sprite = "LAUNA0";
- }
- 2004
- {
- title = "Anti-Gun";
- sprite = "PLASA0";
- }
- 2006
- {
- title = "Nuker";
- sprite = "BFUGA0";
- height = 30;
- }
- }
- ammunition
- {
- color = 6; // Brown
- arrow = 0;
- title = "Ammunition";
- width = 16;
- sort = 1;
- height = 20;
- blocking = 0;
- hangs = 0;
- 2007
- {
- title = "Bullet Clip";
- sprite = "CLIPA0";
- }
- 2008
- {
- title = "Cartridges";
- sprite = "SHELA0";
- }
- 2010
- {
- title = "Torpedo";
- sprite = "ROCKA0";
- height = 25;
- }
- 2047
- {
- title = "Molecule Module";
- sprite = "CELLA0";
- }
- 2048
- {
- title = "Bullet Box";
- sprite = "AMMOA0";
- }
- 2049
- {
- title = "Cartridge Box";
- sprite = "SBOXA0";
- }
- 2046
- {
- title = "Torpedo Pack";
- sprite = "BROKA0";
- width = 30;
- height = 25;
- }
- 17
- {
- title = "Molecule Tank";
- sprite = "CELPA0";
- height = 25;
- }
- 8
- {
- title = "Valise";
- sprite = "BPAKA0";
- }
- }
- health
- {
- color = 1; // Blue
- arrow = 0;
- title = "Health and Armor";
- width = 16;
- height = 20;
- hangs = 0;
- blocking = 0;
- sort = 1;
- 2011
- {
- title = "Inhaler";
- sprite = "STIMA0";
- }
- 2012
- {
- title = "Hypo";
- sprite = "MEDIA0";
- height = 25;
- }
- 2014
- {
- title = "Bonus Microkit";
- sprite = "BON1A0";
- }
- 2015
- {
- title = "Bonus Dampener";
- sprite = "BON2A0";
- }
- 2018
- {
- title = "Kevlar Regular";
- sprite = "ARM1A0";
- }
- 2019
- {
- title = "Kevlar Super";
- sprite = "ARM2A0";
- }
- }
- powerups
- {
- color = 9; // Light Blue
- arrow = 0;
- title = "Powerups";
- width = 20;
- height = 20;
- hangs = 0;
- blocking = 0;
- sort = 1;
- 83
- {
- title = "Full-Body Armor";
- sprite = "MEGAA0";
- height = 40;
- }
- 2013
- {
- title = "Smart Drug";
- sprite = "SOULA0";
- height = 45;
- }
- 2022
- {
- title = "Force Field";
- sprite = "PINVA0";
- height = 30;
- }
- 2023
- {
- title = "007 Microtel";
- sprite = "PSTRA0";
- }
- 2024
- {
- title = "EnK Blind";
- sprite = "PINSA0";
- height = 45;
- }
- 2025
- {
- title = "Vulkan Boots";
- sprite = "SUITA0";
- height = 60;
- }
- 2026
- {
- title = "SI Array";
- sprite = "PMAPA0";
- height = 35;
- }
- 2045
- {
- title = "Infrared Visor";
- sprite = "PVISA0";
- }
- }
- keys
- {
- color = 13; // Light Magenta
- arrow = 0;
- title = "Keys";
- width = 16;
- height = 20;
- hangs = 0;
- blocking = 0;
- sort = 1;
- 5
- {
- title = "Keycard";
- sprite = "BKEYA0";
- }
- 13
- {
- title = "Password File";
- sprite = "RKEYA0";
- }
- 6
- {
- title = "C-Key";
- sprite = "YKEYA1";
- arrow = 1;
- }
- 40
- {
- title = "Z-Key Blue";
- sprite = "BSKUB0";
- }
- 38
- {
- title = "Z-Key Red";
- sprite = "RSKUB0";
- }
- 39
- {
- title = "Z-Key Yellow";
- sprite = "YSKUB0";
- }
- }
- obstacles
- {
- color = 3; // Cyan
- arrow = 0;
- title = "Blocking Objects";
- width = 20;
- sort = 1;
- height = 20;
- blocking = 1;
- hangs = 0;
- 48
- {
- title = "Spikes";
- sprite = "ELECA0";
- }
- 30
- {
- title = "Broken Android - Lower";
- sprite = "COL1A0";
- }
- 31
- {
- title = "Broken Android - Upper";
- sprite = "COL2A0";
- }
- 54
- {
- title = "Oak Tree";
- width = 32;
- sprite = "TRE2A0";
- }
- 43
- {
- title = "Alpine tree";
- sprite = "TRE1A0";
- }
- 47
- {
- title = "Bush";
- sprite = "SMITA0";
- }
- 34
- {
- title = "Samurai Statue";
- sprite = "CANDA0";
- height = 96;
- }
- 75
- {
- title = "Stalagmite (small)";
- sprite = "HDB3A0";
- height = 32;
- }
- 76
- {
- title = "Stalagmite (large)";
- sprite = "HDB4A0";
- height = 32;
- }
- 77
- {
- title = "Stalactite (small)";
- sprite = "HDB5A0";
- height = 32;
- hangs = 1;
- blocking = 0;
- }
- 78
- {
- title = "Stalactite (large)";
- sprite = "HDB6A0";
- height = 32;
- hangs = 1;
- blocking = 0;
- }
- 25
- {
- title = "Sentry Lamp";
- sprite = "POL1A0";
- blocking = 1;
- }
- 27
- {
- title = "Bonzai Tree";
- sprite = "POL4A0";
- blocking = 1;
- }
- 28
- {
- title = "Raft";
- sprite = "POL2A0";
- blocking = 1;
- }
- 29
- {
- title = "Rickshaw";
- sprite = "POL3A0";
- blocking = 1;
- }
- }
- breakables
- {
- color = 11; // Light Cyan
- arrow = 0;
- title = "Destructive Objects";
- width = 16;
- sort = 1;
- height = 16;
- blocking = 1;
- hangs = 0;
- 2035
- {
- title = "Nitro Barrel";
- width = 10;
- sprite = "BAR1A0";
- height = 32;
- }
- 3005
- {
- title = "Breaking Glass";
- width = 32;
- sprite = "HEADD2D8";
- height = 64;
- }
- 41
- {
- title = "Pulsar";
- sprite = "CEYEA0";
- }
- 45
- {
- title = "Electron";
- sprite = "TGRNA0";
- }
- 42
- {
- title = "C-Eye";
- sprite = "FSKUA0";
- }
- 35
- {
- title = "Office Chair";
- sprite = "CBRAA0";
- }
- 55
- {
- title = "Desk Lamp";
- sprite = "SMBTA0";
- }
- 57
- {
- title = "Floor Lamp";
- sprite = "SMRTA0";
- }
- 2028
- {
- title = "Computer Monitor";
- sprite = "COLUA0";
- }
- 26
- {
- title = "Vase";
- sprite = "POL6A0";
- }
- 72
- {
- title = "Exploding Object (shootable)";
- width = 16;
- sprite = "BFE1B0";
- height = 32;
- hangs = 1;
- }
- 70
- {
- title = "Exploding Object (on-sight)";
- width = 10;
- sprite = "FCANA0";
- height = 32;
- }
- }
- decoration
- {
- color = 4; // Red
- arrow = 0;
- title = "Decorative Objects";
- width = 16;
- sort = 1;
- height = 16;
- hangs = 0;
- blocking = 0;
- 32
- {
- title = "Flowers";
- sprite = "COL3A0";
- }
- 33
- {
- title = "Lava Ball (slow)";
- sprite = "FIREG0";
- }
- 37
- {
- title = "Lava Ball (fast)";
- sprite = "FIREG0";
- }
- 85
- {
- title = "Water Drip 1";
- sprite = "TLMPA0";
- }
- 86
- {
- title = "Water Drip 2";
- sprite = "TLP2A0";
- }
- 44
- {
- title = "Hanging Light (short)";
- sprite = "TBLUA0";
- }
- 46
- {
- title = "Hanging Light (tall)";
- sprite = "TREDA0";
- }
- 56
- {
- title = "Wall Torch";
- sprite = "SMGTA0";
- }
- 79
- {
- title = "Rock";
- sprite = "POB1A0";
- }
- 49
- {
- title = "Hanging body, near dead";
- sprite = "GOR1A0";
- height = 64;
- hangs = 1;
- blocking = 1;
- }
- 50
- {
- title = "Dead Lab Tech. 1";
- sprite = "GOR2A0";
- }
- 51
- {
- title = "Dead Lab Tech. 2";
- sprite = "GOR3A0";
- }
- 52
- {
- title = "Dead Lab Tech. 3";
- sprite = "GOR4A0";
- }
- 73
- {
- title = "Moss (large)";
- sprite = "HDB1A0";
- hangs = 1;
- }
- 74
- {
- title = "Moss (small)";
- sprite = "HDB2A0";
- hangs = 1;
- }
- 24
- {
- title = "Smashed Gore";
- sprite = "POL5A0";
- }
- 19
- {
- title = "Dead Android";
- sprite = "SPOSL0";
- width = 20;
- }
- 18
- {
- title = "Dead Thug";
- sprite = "POSSL0";
- width = 20;
- }
- 15
- {
- title = "Dead Player";
- sprite = "PLAYL0";
- }
- 10
- {
- title = "Dead Player (gib)";
- sprite = "PLAYW0";
- }
- 21
- {
- title = "Dead Buzzer";
- sprite = "SARGN0";
- width = 30;
- }
- }
- unused
- {
- color = 8; // Grey
- arrow = 1;
- title = "Unused Things";
- width = 16;
- sort = 1;
- height = 0;
- hangs = 0;
- blocking = 0;
- error = 0;
- 88
- {
- title = "Icon of Sin";
- width = 16;
- sprite = "BBRNA0";
- height = 16;
- }
- 89
- {
- title = "Monsters Spawner";
- sprite = "BOSFB0";
- height = 32;
- }
- 87
- {
- title = "Monsters Target";
- height = 32;
- }
- 36
- {
- title = "Short green pillar (beating heart)";
- sprite = "COL5A0";
- }
- 63
- {
- title = "Hanging victim, twitching";
- sprite = "GOR1A0";
- height = 68;
- hangs = 1;
- }
- 59
- {
- title = "Hanging victim, arms out";
- sprite = "GOR2A0";
- height = 84;
- hangs = 1;
- }
- 60
- {
- title = "Hanging pair of legs";
- sprite = "GOR4A0";
- height = 68;
- hangs = 1;
- }
- 61
- {
- title = "Hanging victim, 1-legged";
- sprite = "GOR3A0";
- height = 52;
- hangs = 1;
- }
- 53
- {
- title = "Hanging leg (blocking)";
- sprite = "GOR5A0";
- height = 52;
- hangs = 1;
- blocking = 1;
- }
- 62
- {
- title = "Hanging leg";
- sprite = "GOR5A0";
- height = 52;
- hangs = 1;
- }
- 12
- {
- title = "Bloody mess 2";
- sprite = "PLAYW0";
- }
- 22
- {
- title = "Dead cacodemon";
- sprite = "HEADL0";
- width = 31;
- }
- 20
- {
- title = "Dead imp";
- sprite = "TROOM0";
- width = 20;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement