I first played Doom RPG on a Sony Ericsson j300a in late 2006. I wasn't expecting much more than a functional Doom-themed Wolfenstein port with finicky controls. (I clearly didn't know much about it before buying it!) What I got was so much more than I thought possible from a feature phone game.
Unfortunately, Doom RPG never found its way to smartphones, or any other platform. EA Mobile doesn't even seem to have it listed in their 'Legacy' section. There aren't many games in the Doom franchise, so it's surprising to see this one get so little attention.
Actually playing the game today is a bit tricky. I've had success running it on KEmulat0r, configuring it as a Sony Ericsson k800. Of course, KEmulat0r appears to be a dead project, nearly 9 years without an update. I couldn't get it to run at all in Microemulator (an open source project), but that hardly matters as it also appears to be dead.
Doom RPG isn't nearly as popular as its older siblings, Doom and Doom II, but there does seem to be some interest. Kyle873 and Kate Fox (Pink Silver) developed a GZDoom Mod inspired by the game. While they're not the same type of game, DoomRL (now just DRL) and Jupiter Hell both offer turn-based gameplay in a Doom-like setting.
The goal here is to puzzle-out and document as much of Doom RPG as possible to empower interested modders and other developers looking to get Doom RPG running on modern systems. There's a lot of stuff here, so I won't say much, if anything, about the disovery process.
Some important things to remember before we get started:
Doom RPG uses three coordinate systems. If you're familiar with raycasting engines like the one used in Wolfenstein 3D and other early first-person games, you'll likely be familiar with the "coarse grid" and "fine grid" they employ. The coarse grid represents the "blocks" or "grid squares" that compose the level. In Doom RPG, the coarse grid is 32x32. The fine grid divides each coarse grid square in to smaller blocks, typically matching our texture width. In Doom RPG, the fine grid divides coarse grid blocks in to 64x64 blocks and, consequently, the map in to 2048x2048 blocks.
Doom RPG places objects and enemies (things) on a third grid we'll call the "medium grid", which is somewhere between the coarse grid and fine grid. This divides the map in to 256x256 blocks. You can convert medium grid coordinates to fine grid coordinates by multiplying them by 8.
All the wall textures are stored in wtexels.bin
Textures are all 64x64 pixels in size. Each pixel is represented by a 4-bit index in to a color palette.
The first four bytes in wtexels.bin
represent a uInt32 that tells us the remaining length of the file. As each texture is 2048 bytes in size, dividing 53248 by 2048 tells us that there are 26 textures in the file.
There is no palette information associated with the textures in this file.
Doom RPG renders textures in vertical strips, from left to right, just like old raycasters like Wolfenstein 3D and Doom. It would be convenient, then, to store the textures on their side, beginning with the left-most strip, so that each strip could be read sequentially, which is precisely how they're laid out. A naive rendering (each pixel in sequence from left-to-right, top-to-bottom) will produce a mirror image of the texture, rotated 90-degrees to the left.
One additional quirk: While each pixel is represented by 4-bits, meaning each byte contains the color index for two pixels, they're reversed from what you'd expect. The least significant nybble represents the left-most pixel in the group and the most significant nybble represents the right-most pixel.
For example: If you encounter [01 23 45 67], the output would look like [1 0 3 2 5 4 7 6]
Sprites are more complicated than textures, as they're spread out across two files: stexels.bin
and bitshapes.bin
stexels.bin
, like wtexels.bin
has a 4-byte header, which is just a uInt32 that tells us the remaining length of the file. The rest is just pixel data, 4-bits per pixel, with the same quirks we saw in wtexels.bin
In a confusing twist, only the visible pixels are included. There isn't a value to represent a 'transparent' color, so only the visible parts of the sprite have texels. To produce the sprites, we need to know where those invisible pixels belong. This is where bitshapes.bin
comes in.
bitshapes.bin
contains the "shape" of our sprites. In the sprite data segments, each bit represents one pixel with a 0 meaning transparent and a 1 meaning colored. The file itself starts of with 4 bytes, a uInt32, representing the remaining length of the file. This is followed by a bunch of variable length records representing individual sprites. Each sprite record contains a 12-byte header followed by the sprite shape data.
I've only managed to decipher one small part of the Sprite Record Header, the length of the data segment + 4, which is enough to move to the next record. The rest is unknown:
Sprite Record Header (12 bytes): 4 bytes (unknown) 2 bytes (uInt16) Length of Sprite Shape Data + 4 6 bytes (unknown)
Sprites are of variable size. They aren't all 64x64 like the wall textures. In order to properly render the sprite, you'll need to know how many bytes are used per vertical strip, as well as the number of strips. This information does not seem to be in the header, but I've managed to work-out the correct sizes for all the sprites. This is included in the Sprite Data Appendix.
To clarify, each 1 bit represents 4-bits in stexels.bin
. You'll need to read them together to compose an entire sprite. Additionally, if a sprite in bitshapes.bin
contains an odd number of 1's, you'll need to advance your pointer to the next byte for the next sprite. That is, a sprite with an odd-number of visible pixels will waste four bits in stexels.bin
.
There is one additional quirk. Like the nybbles in our wall texture data, the individual bits composing our sprite shape are reversed for each byte, with the least significant bit representing the left-most pixel and the most significant bit representing the right-most pixel.
Conveniently, like textures, a naive rendering (each pixel in sequence from left-to-right, top-to-bottom) will produce a mirror image of the sprite, rotated 90-degrees to the left.
You'll notice that neither stexels.bin
or bitshapes.bin
contain an index of offsets for sprite records. While you can rather quickly walk through bitshapes.bin
to find the sprite you want, you won't know where to start reading stexels.bin
to get the texels. That data doesn't appear to be anywhere. You can find it by walking through each sprite shape in sequence in tandem with stexels.bin
and making a note of each offset. I've done this already and included those values in the Sprite Data Appendix under "stexels.bin Offset".
Again, like textures, no palette information is included. This makes sense as sprites are frequently used with different palettes.
The first four bytes of palettes.bin
gives us the remaining length of the file. This is immediately followed by the palette records, each of which are 32 bytes in length.
Each palette contains 16 colors. Each color is 16 bits, in BGR565 format (not RGB565). You'll want to convert this in to the more familiar 24 or 32 bit color.
The red and blue components are 5 bits wide. The green component is 6 bits wide. We need to do more than just copy the values, as our colors would be very dark. White (0xFFFF) would become 0x1F3F1F, which is a very dark green. Shifting the components up gets us a lot closer, but they still won't be quite correct. White would turn in to 0xF8FCF8, which is both duller, and a little green.
The most obvious way to do this is to find the ratio between 0x1F and 0xFF and 0x3F and 0xFF and multiply the values. This is better, but with integer multipication we still end up with a very slightly green white (0xF8FCF8). If we try to correct this by adding 1, multiplying, and subtracting one, we preserve white, but end up with the same problem for black (0x0000), which will turn in to a slightly purple 0x070307.
While you could work around those problems, there is a much faster and simpler way. For red and blue, after shifting the values left by 3, copy the three most-significant bits to the least significant positions. Do the same for green, but with the two most significant bits. Whites and blacks are preserved, and none of our colors are tinted green. This is the way the game does this internally:
// separate each component red = color & 0x1F; green = (color >> 5 ) & 0x3F; blue = (color >> 11) & 0x1F; // convert to RGB888 red = (red << 3) | (red >> 2); green = (green << 2) | (green >> 4); blue = (blue << 3) | (blue >> 2); // put them back together color24 = (red << 16) & (green << 8) & blue;
There are 143 palettes contained in palettes.bin
Some entity information is stored in entities.db
and entities.str
. Not all in-game 'things' are stored here, with 'wall decorations' and 'fences' being the more obvious omissions. No sprite or palette information is included in either file.
The entities.str
file contains the in-game description of each entity. The file begins with a uInt16 that tells us the number of records in the file. Records are variable length. Each record begins with a uInt16 that tells us the length of the string data that follows. These records are matched with the records in entities.db
by the order in which they appear.
entities.str uInt16: number of Records to follow Records: uInt16: length of string varies: string data
The entities.db
file contains some information about in-game entities. What information it contains varies by entity type. The file begins with a uInt16 that tells us the number of records in the file. Records are 8 bytes in length.
entities.db uInt16: number of Records to follow Records uInt16: id uInt8: type uInt8: p1 uInt32: p2
Entity records are divided in to 4 parts: a 2-byte id, a type, and two parameters. The id's match the id's used for 'things' in .bsp files. The 'type' field groups related entities. Entities with a shared type (mostly) share the same purpose for p1 and p2 (keys and medkits being exceptions).
Type 0 - Doors P1: Normal: 0, Locked: 1, Unlocked: 2 P2: not used Type 1 - Enemy P1: Class P2: Enemy 'level' within each class Level1: 0x126, Level2: 0x1D3, Level3: 0x280 Type 2 - Humans P1: not used P2: not used Type 3 - Keys, health, armor, credits P1: Class (Keys: 0x18, Health: 0x14, Armor: 0x15, Credits: 0x16 & 0x17) P2: Keys: Green - 0, Yellow - 1, Blue - 2, Red - 3 Health, armor, credits: Amount to add Type 4 - Inventory Consumables P1: Sm Medkit: 0x19, Lg Medkit: 0xA1, SoulSphear: 0xA2, Berzerker: 0xA3, Dog Collar: 0xA4 P2: Only for Medkits, amount of health to add when used Type 5 - Weapons P1: Cycle order P2: Amount of ammo added on pickup Type 6, 16 - Ammo Pickups (6 - single, 16 - multiple) P1: Ammo Type (Halon: 0, Bullet: 1, Shell: 2, Rocket: 3, Cell:4) P2: Amount of ammo added on pickup Type 7 - Furniture, portal, computers, unnamed P1: unknown P2: not used Type 8, 9, 14, 15 - Unknown (Unused?) P1: not used P2: not used Type 10, 11 (10 - Fire, 11 - Lava) P1: not used P2: not used Type 12 - Breakable Items P1: Class (Barrel: 1, Crate: 2, Door/Wall: 3, Power Coupling: 4) P2: unknown Type 13 - Furniture P1: unused P2: unused
There are 115 entities included in the file. See the Entities Data Appendix for more details.
mappings.bin
contains four unrelated groups of records. The file starts out with a 16 byte header, composed of 4 uInt32's that indicate the length of each of these groups.
Group 1 maps wall textures to color palettes. As each texture is used with different palettes, we end up with 51 records instead of 26. Each record is 8 bytes in length, being composed of two uInt32's. The first uInt32 indicates the wall texture (from wtexels.bin
), the second indicates the palette (from palettes.bin
). How, in both cases, is not obvious. To find the texture index, divide by 4096. To find the texture offset, divide by 2 and add 4. To find the palette index, divide by 16. To find the palette offset, add 4.
We can now extract all of the wall textures.
Group 2 maps sprites to color palettes. There are 207 8-byte records, each composed of two uInt32's. The first indicates the sprite (from bitshapes.bin
), the second indicates the color palette (from palettes.bin
). To find the offset in to bitshapes.bin
, add 4. To find the palette index, divide by 16. To find the palette offset, add 4.
Using some additional information about the dimentions of each sprite (from the Sprite Data Appendix), we can finally extract all of the sprites.
Group 3 contains 93 records. Each record consists of a single uInt16. This maps the wall texture id from the line segment portion of .bsp files to the wall textures in Group 1. For example, The wall texture assigned to the Portal (in reactor.bsp
) is 34, but the wall texture is at index 24. The value at Group 3 index 34 is 24.
Group 4 contains 252 records. Each record consists of a single uIn16. Values range from 0 to 205. Its purpose is unknown, but appears to be related to sprites.
As luck would have it, Simon Howard (Fraggle) has worked out a good bit of the Doom RPG bsp file format [Mirror]. I'll expand on his work here, filling in quite a few of the missing details. You can also take a look at Richard Walmsley's Map Viewer.
.bsp files start off with a 13-byte header:
.bsp header: uInt24: Floor Color BGR888 uInt24: Ceiling Color BGR888 uInt24: unknown (always 0) uInt8: Level id uInt24: unknown
The Level id number starts at 1 for intro.bsp
and increases by one for each file in the natural level order: junction.bsp
, level01.bsp
, level02.bsp
, level03.bsp
, level04.bsp
, level05.bsp
, level06.bsp
, level07.bsp
, junction_destroyed.bsp
, reactor.bsp
. The enemy montage at the end of the game endgame.bsp
and the test items.bsp
both have an id of 0.
Following the header is the BSP tree. It starts with a uInt16 representing the number of nodes. Each node record is 48 bytes in length, so you can quickly skip over this section if you don't need it.
The first four bytes of each node record represent the two coordinate pairs of a bounding box (x1, y1, x2, y2 in that order). (These are positioned on the "medium grid" mentioned earlier. You can multiply each value by 8 to convert them to the "fine grid".)
The last six bytes represent different things, depending on the value of the first byte. We'll use Fraggle's naming here. The first byte is the "nodetype", the second is named "splitpos", the remaining four represent two uInt16's, the purpose of which varies depending on nodetype, called "arg1" and "arg2".
If nodetype is zero, the current node is a leaf-node. The splitpos byte is ignored. arg1 tells us the number of line segments in the node, and arg2 gives us the index of the first line segment, in the line segment record set, of the first line segment in the node. (The remaining line segment indices are in sequence from the first segment.)
If nodetype is 1, the current node is split in to two subnodes along the y-axis. splitpos contains the position along the y-axis to split the node. Arg1 contains the index of the first subnode, arg2 the index of the second.
If nodetype is 2, the current node is split in to two subnodes along the x-axis. splitpos contains the position along the y-axis to split the node. Arg1 contains the index of the first subnode, arg2 the index of the second. (This is identical to a nodetype of 1, but split along the x-axis instead of the y-axis.)
The line segment section immediately follows the bsp tree. Line segments are used for walls and doors. The line segment section begins with a uInt16 that tells us the number of line segment records that follow.
Line segment records are 36 bytes in length. The first 4 bytes represent the start and end coordinate pairs for each line segment on the medium grid. This is followed by a uInt16 for the wall texture, then a uInt16 for various flags.
The value for the wall texture is an index to group 3 in mappings.bin
which has the actual wall texture index.
For consistancy with Fraggle's work, I'll use LSB 0 numbering. From most significant to least significant:
15: Flip texture horizontally 14: East-facing wall 13: West-facing wall 12: North-facing wall 11: South-facing wall 10: Locked door 9: Shift horizontal 8: Shift vertical 7: not used 6: not used 5: Secret / Hidden 4: Shift West or North 3: Shift East or South 2: Door (with bit 0) 1: not used 0: Door (with bit 2)
Doors, short walls, and walls that are not perfectly vertical or horizontal do not have an orientation flag (bits 14-11) set.
Doors all have either bit 8 or 9 set, but none have bit 4 or 3 set.
Immediately following line segments are 'things'. Things is a broad category that covers everything to enemies and pickups to wall decorations and 'fences'. There are 107 things in the game. See the Thing Data Appendix for details.
The things section starts with a uInt16 that tells us the number of thing records that follow.
Thing records are 5 bytes in length. The first two bytes represent the x and y coordinates of the thing on the medium grid. Things are centered on their coordinates. The third byte identifies the thing id (not necessarily the entity id) of the thing being described or the wall texture if flag bit 2 is set. The remaining two bytes (uInt16) are flags which provided additional information about the thing. Flags are mostly unused by enemies and pickups. Wall decorations and 'fences' use most of the flags.
Using LSB 0 numbering, from most to least significant:
15: not used 14: not used 13: not used 12: not used 11: Fence (with bit 1) 10: not used 9: North or South-facing wall decoration 8: Dead Enemy 7: Wall Decoration 6: West-facing 5: East-facing 4: South-facing 3: North-facing 2: Treat as Wall * 1: Fence (with bit 11) 0: Hidden * When set, the id is used as the wall texture id. Orientation bits also change: 6: East-facing 5: West-facing 4: North-facing 3: South-facing
The events section immediately follows the things section. Fraggle calls these 'interactions'. Events mark every scripted action in the game. They can be triggered with the action button like activating doors, using computers, and talking to people or they can be triggered simply by stepping on or off a coarse grid square. They can even be triggerd by scripts.
The events section starts with a uInt16, which tells us how many event records follow.
Event records are 4 bytes long, with all of the fields packed tightly in to a uInt32. From most to least significant:
bits 31-25: unknown (7 bits) [sometimes set to 1, e.g. the portal in reactor.bsp] bits 24-19: Number of commands in script (6 bits) bits 18-10: Index of first command (9 bits) bits 9-5 : Event Y position on coarse grid (5 bits) bits 4-0 : Event X position on coarse grid (5 bits)
Following events are commands. The command section starts with a uInt16 which tells us how many commands follow.
Commands are 9 bytes in length. The first byte is the command. The next 8 bytes are two uInt32's, the first of which (arg1) acts as arguments to the command. The second (arg2) deals with the execution of the command. Each event has a value associated with it I'll call the Event Variable. It defaults to zero, and can be modified by other commands. That variable is referenced by the event's position on the coarse grid (typically 16 bits with bits 15-8 representing the y coordinate and bits 7-0 representing the x coordinate).
Arg2: Bits 31-16: Only execute command IF this Value matches the Event Variable Bits 15-0: 15: 14: 13: 12: 11: 10: 9: things/walls are added/removed by this command 8: Execute command on 'action button pressed' 7: East (execute command on 'leave', in directions set by bits 7-4) 6: North 5: West 4: South 3: West (execute command on 'enter' in directions set by bits 3-0) 2: 1: East 0:
Commands: 1: Change Location arg1: Orientation (bits 23-20) (N: - S: - E: - W: 8) Location Y,X on coarse grid (bits 15-0) 2: Change Level arg1: Flags, level Completed current level (bit 31) unknown (bits 30-8) Level filename (local string index, bits 7-0) 3: Run Event Script arg1: Event location Y,X (bits 15-0) 4: Show Status Bar Message arg1: Message (string index, bits 15-8) 5: Not Used 6: Not Used 7: Show Thing arg1: Thing state (bits 15-8) (state 0: normal, state 2: dead) Thing id (bits 7-0) 8: Show Message arg1: Message (string index, bits 15-8) 9: Get Map Data 10: Enter Passcode (Halt on failure) arg1: Prompt (string index, bits 15-8) 11: Set Event Variable arg1: Value (bits 31-16) Event Variable to Modify (bits 15-0, coarse grid Location) 12: Lock Door arg1: Door (line segment index) 13: Unlock Door arg1: Door (line segment index) 14: Not Used 15: Open Door arg1: Door line segment index 16: Close Door arg1: Door line segment index 17: Not Used 18: Hide Things at Location arg1: coarse grid Location (bits 15-0) 19: Incriment Event Variable arg1: event variable (bits 15-0) (increases by 2x after zero: 0, 1, 2, 4, 8, etc.) 20: Not Used 21: Increase Status Item Count arg1: Amount to gain (bits 11-8) Status item (bits 7-0) health: 0, armor: 1, credits: 2 22: Decrease Status Item Count arg1: Amount to lose (bits 11-8) Status item (bits 7-0) health: 0, armor: 1, credits: 2 23: Show Message and Halt IF Status Item Count is less than Amount arg1: Message string index (bits 31-16) Amount (bits 15-8) Status item (bits 7-0) health: 0, armor: 1, credits: 2 24: Show Status Bar Message arg1: Message (string index, bits 15-8) 25: Explosion arg1: type? (bits 31-24), location on coarse grid (bits 23-0) 26: Show Message arg1: Message (string index, bits 15-8) 27: Change Level Parameters (called before command 2) arg1: unknown (bits 31-24) Start Level At coarse grid Location Y,X (bits 23-8) unknown (bits 7-0) 28: Not Used 29: Shake Effect arg1: Intensity (bits 31-24), duration in ms (bits 23-0) 30: Set Floor Color arg2: Color BGR888 (bits 23-0) 31: Set Ceiling Color arg1: Color BGR888 (bits 23-0) 32: Give/Take All Collected Weapons arg1: 0 - Take, 1 - Give 33: Open Store arg1: store id (0, 1, 2, or 3) 34: Set State of Thing at coarse grid Location (used only to kill humans) arg1: State (Bits 23-16) (state 2: dead) unknown (bits 15-10) Human coarse grid location Y (bits 9-5) Human coarse grid location X (bits 4-0) 35: Particle Effect arg1: effect (bits 31-24) color BGR888 (bits 23-0) (Effects: 0x20 blood spurt, 0x23 teleport/transformation) 36: Draw Frame 37: Wait arg1: time to wait in ms (bits 23-0) 38: Unknown. Used Only Once (in reactor.bsp in the "gate lift" script) Related to the portal? 39: Show message IF [some level] not complete arg1: Level id (bits 31-24) from bsp header Message (string index, bits 15-8) 40: Add Notebook Entry arg1: Note (string index, bits 15-8) 41: Halt IF missing keycard arg1: Keycard id (bits 1-0) (Green: 0, Yellow: 1, Blue: 2, Red: 3)
The last 256 bytes of the file represent the block map. The blocks are ordered from left to right, top to bottom. The block map is 32x32 blocks in size, meaning that each block is represented by two bits. The MSB is a flag that tells us if a block is part of a secret area. The LSB tells us if the square is impassable. Bit pairs within each byte are not ordered as you'd expect, but 'reversed'. Each byte represents 4 blocks, but the left most block is represented by the least significant pair, the most significant pair representing the rightmost block.
Bit pairs: 00 - Floor 01 - Wall 10 - Floor (secret) 11 - Wall (secret)
This block map of Level 2 shows all four block types:
Index | Description | Offset | Strip Size | Strip Count | Length | stexels.bin Offset | Header |
0 | Axe | 4 | 3 | 63 | 189 | 4 | 00 A0 01 00 C1 00 70 01 01 3F 2C 3F |
1 | Fire Extinguisher | 205 | 4 | 25 | 100 | 296 | 48 A2 01 00 68 00 88 00 18 30 21 3F |
2 | Shotgun | 317 | 2 | 64 | 128 | 458 | 8C A3 01 00 84 00 84 01 00 3F 30 3F |
3 | Super Shotgun | 457 | 3 | 55 | 165 | 709 | 82 A5 01 00 A9 00 52 01 05 3B 2E 3F |
4 | Chain Gun | 634 | 3 | 55 | 165 | 953 | 6A A7 01 00 A9 00 50 01 05 3B 2C 3F |
5 | Rocket Launcher | 811 | 3 | 62 | 186 | 1344 | 78 AA 01 00 BE 00 7A 01 01 3E 2C 3F |
6 | Plasma Gun | 1009 | 3 | 54 | 162 | 1705 | 4A AD 01 00 A6 00 56 01 05 3A 2C 3F |
7 | BFG 9000 | 1183 | 5 | 64 | 320 | 2042 | EC AF 01 00 44 01 A6 01 00 3F 1B 3F |
8 | Zombie | 1515 | 7 | 41 | 287 | 2617 | 6A B4 01 00 23 01 D8 00 0E 36 09 3F |
9 | Zombie Attack | 1814 | 7 | 39 | 273 | 3163 | AE B8 01 00 15 01 BE 00 12 38 09 3F |
10 | Zombie Dead | 2099 | 3 | 50 | 150 | 3673 | AA BC 01 00 9A 00 CC 00 08 39 2F 3F |
11 | Hellhound | 2261 | 6 | 33 | 198 | 3959 | E6 BE 01 00 CA 00 A0 00 16 36 14 3F |
12 | Hellhound Attack | 2471 | 8 | 47 | 376 | 4327 | C6 C1 01 00 7C 01 E6 00 0D 3B 03 3F |
13 | Hellhound Dead | 2859 | 3 | 51 | 153 | 4851 | DE C5 01 00 9D 00 FC 00 07 39 29 3F |
14 | Commando | 3024 | 8 | 50 | 400 | 5232 | D8 C8 01 00 94 01 EE 00 0B 3C 05 3F |
15 | Commando Attack | 3436 | 8 | 50 | 400 | 6000 | D8 CE 01 00 94 01 02 01 0A 3B 06 3F |
16 | Commando Dead | 3848 | 3 | 64 | 192 | 6791 | 06 D5 01 00 C4 00 16 01 00 3F 2B 3F |
17 | Imp | 4052 | 7 | 46 | 322 | 7210 | 4C D8 01 00 46 01 08 01 0C 39 08 3F |
18 | Imp Attack | 4386 | 8 | 55 | 440 | 7824 | 18 DD 01 00 BC 01 48 01 07 3D 04 3F |
19 | Imp Dead | 4838 | 3 | 61 | 183 | 8458 | 0C E2 01 00 BB 00 12 01 03 3F 2A 3F |
20 | Lost Soul | 5033 | 7 | 44 | 308 | 8835 | FE E4 01 00 38 01 FE 00 0A 35 08 3F |
21 | Lost Soul Attack | 5353 | 7 | 44 | 308 | 9351 | 06 E9 01 00 38 01 08 01 0A 35 0A 3F |
22 | Lost Soul Dead | 5673 | 2 | 56 | 112 | 9862 | 04 ED 01 00 74 00 EA 00 06 3D 30 3F |
23 | Pinky | 5797 | 7 | 49 | 343 | 10109 | F2 EE 01 00 5B 01 04 01 0C 3C 08 3F |
24 | Pinky Attack | 6152 | 7 | 53 | 371 | 10921 | 4A F5 01 00 77 01 24 01 0A 3E 09 3F |
25 | Pinky Dead | 6535 | 4 | 64 | 256 | 11764 | E0 FB 01 00 04 01 28 01 00 3F 20 3F |
26 | Cacodemon | 6803 | 8 | 64 | 512 | 12330 | 4C 00 02 00 04 02 5C 01 00 3F 00 3F |
27 | Cacodemon Attack | 7327 | 8 | 64 | 512 | 13930 | CC 0C 02 00 04 02 30 01 00 3F 00 3F |
28 | Cacodemon Dead | 7851 | 5 | 64 | 320 | 15482 | EC 18 02 00 44 01 14 01 00 3F 1A 3F |
29 | Pain Elemental | 8183 | 8 | 64 | 512 | 16265 | 0A 1F 02 00 04 02 78 01 00 3F 07 3F |
30 | Pain Elemental Attack | 8707 | 8 | 64 | 512 | 17518 | D4 28 02 00 04 02 72 01 00 3F 07 3F |
31 | Pain Elemental Dead | 9231 | 5 | 63 | 315 | 18789 | C2 32 02 00 3F 01 1C 01 01 3F 1E 3F |
32 | Revenant | 9558 | 8 | 50 | 400 | 19615 | 36 39 02 00 94 01 4A 01 0B 3C 00 3F |
33 | Revenant Attack | 9970 | 7 | 49 | 343 | 20209 | DA 3D 02 00 5B 01 28 01 0D 3D 09 3F |
34 | Mancubus | 10325 | 8 | 64 | 512 | 20746 | 0C 42 02 00 04 02 40 01 00 3F 00 3F |
35 | Mancubus Attack | 10849 | 8 | 64 | 512 | 22308 | 40 4E 02 00 04 02 64 01 00 3F 00 3F |
36 | Mancubus Dead | 11373 | 4 | 64 | 256 | 23792 | D8 59 02 00 04 01 24 01 00 3F 21 3F |
37 | Archvile | 11641 | 7 | 45 | 315 | 24464 | 18 5F 02 00 3F 01 2C 01 0C 38 0E 3F |
38 | Archvile Attack | 11968 | 8 | 64 | 512 | 24943 | D6 62 02 00 04 02 C0 01 00 3F 00 3F |
39 | Archvile Dead | 12492 | 3 | 52 | 156 | 25516 | 50 67 02 00 A0 00 D6 00 06 39 2E 3F |
40 | Baron | 12660 | 8 | 48 | 384 | 25823 | B6 69 02 00 84 01 02 01 0B 3A 00 3F |
41 | Baron Attack | 13056 | 8 | 64 | 512 | 26676 | 60 70 02 00 04 02 80 01 00 3F 00 3F |
42 | Baron Dead | 13580 | 4 | 55 | 220 | 27624 | C8 77 02 00 E0 00 E4 00 06 3C 27 3F |
43 | Cyberdemon | 13812 | 8 | 52 | 416 | 28072 | 48 7B 02 00 A4 01 58 01 08 3B 00 3F |
44 | Cyberdemon Attack | 14240 | 8 | 57 | 456 | 29076 | 20 83 02 00 CC 01 AC 01 03 3B 00 3F |
45 | Kratos | 14708 | 8 | 59 | 472 | 30151 | 86 8B 02 00 DC 01 DE 01 01 3B 03 3F |
46 | Kratos Attack | 15192 | 8 | 64 | 512 | 30833 | DA 90 02 00 04 02 02 02 00 3F 05 3F |
47 | Keycard | 15716 | 3 | 15 | 45 | 31698 | 9C 97 02 00 31 00 5C 00 19 27 2B 3F |
48 | Halon Can | 15773 | 2 | 31 | 62 | 31811 | 7E 98 02 00 42 00 80 00 13 31 36 3F |
49 | Bullet Clip | 15847 | 2 | 16 | 32 | 31942 | 84 99 02 00 24 00 44 00 1B 2A 35 3F |
50 | Shotgun Clip | 15891 | 1 | 18 | 18 | 31998 | F4 99 02 00 16 00 4C 00 18 29 39 3F |
51 | Rocket | 15921 | 3 | 25 | 75 | 32043 | 4E 9A 02 00 4F 00 68 00 1A 32 27 3E |
52 | Cell Clip | 16008 | 2 | 22 | 44 | 32167 | 46 9B 02 00 30 00 5C 00 17 2C 34 3F |
53 | Health Vial | 16064 | 3 | 19 | 57 | 32275 | 1E 9C 02 00 3D 00 50 00 19 2B 2E 3F |
54 | Armor Shard | 16133 | 2 | 22 | 44 | 32367 | D6 9C 02 00 30 00 5C 00 18 2D 31 3F |
55 | Flak Jacket | 16189 | 3 | 31 | 93 | 32484 | C0 9D 02 00 61 00 8E 00 10 2E 2F 3F |
56 | Credit | 16294 | 2 | 40 | 80 | 32681 | 4A 9F 02 00 54 00 A4 00 0E 35 2E 3D |
57 | Medkit | 16386 | 3 | 38 | 114 | 32969 | 8A A1 02 00 76 00 9C 00 12 37 2D 3F |
58 | Soul Sphear | 16512 | 4 | 32 | 128 | 33262 | D4 A3 02 00 84 00 86 00 13 32 27 3F |
59 | Dog Collar | 16652 | 4 | 35 | 140 | 33541 | 02 A6 02 00 90 00 BE 00 13 35 1F 3D |
60 | Lava Pit | 16804 | 2 | 63 | 126 | 33758 | B4 A7 02 00 82 00 0E 01 01 3F 31 3F |
61 | Fire | 16942 | 8 | 64 | 512 | 34075 | 2E AA 02 00 04 02 A8 01 00 3F 01 3F |
62 | Barrel | 17466 | 4 | 39 | 156 | 35197 | F2 B2 02 00 A0 00 A0 00 14 3A 20 3F |
63 | Coupler | 17634 | 8 | 40 | 320 | 35605 | 22 B6 02 00 44 01 58 01 0C 33 01 3F |
64 | Sink | 17966 | 6 | 33 | 198 | 36332 | D0 BB 02 00 CA 00 AC 00 17 37 12 3F |
65 | Toilet | 18176 | 6 | 32 | 192 | 36653 | 52 BE 02 00 C4 00 9E 00 12 31 16 3F |
66 | Chair | 18380 | 5 | 28 | 140 | 37147 | 2E C2 02 00 90 00 B6 00 14 2F 1B 3F |
67 | Lamp | 18532 | 6 | 42 | 252 | 37419 | 4E C4 02 00 00 01 B6 00 14 3D 10 3F |
68 | Exit Sign | 18796 | 2 | 22 | 44 | 37770 | 0C C7 02 00 30 00 5C 00 15 2A 00 0D |
69 | File Cabinet | 18852 | 7 | 44 | 308 | 37921 | 3A C8 02 00 38 01 B4 00 14 3F 0C 3F |
70 | Table | 19172 | 4 | 54 | 216 | 38592 | 78 CD 02 00 DC 00 3C 01 07 3C 24 3F |
71 | Bunk | 19400 | 6 | 58 | 348 | 38939 | 2E D0 02 00 60 01 B6 01 03 3C 16 3F |
72 | Enter Sign | 19760 | 2 | 31 | 62 | 39611 | 6E D5 02 00 42 00 80 00 10 2E 00 0D |
73 | Civilian | 19834 | 7 | 36 | 252 | 39825 | 1A D7 02 00 00 01 B8 00 0E 31 08 3F |
74 | Scientist | 20098 | 8 | 34 | 272 | 40352 | 38 DB 02 00 14 01 C2 00 13 34 06 3F |
75 | Marine | 20382 | 8 | 36 | 288 | 40855 | 26 DF 02 00 24 01 C2 00 11 34 06 3F |
76 | Crate | 20682 | 4 | 49 | 196 | 41347 | FE E2 02 00 C8 00 C8 00 0D 3D 20 3F |
77 | Blast A Frame 1 | 20890 | 5 | 40 | 200 | 41966 | D4 E7 02 00 CC 00 A4 00 0C 33 0C 33 |
78 | Blast A Frame 2 | 21102 | 6 | 48 | 288 | 42535 | 46 EC 02 00 24 01 8C 01 07 36 09 38 |
79 | Blast A Frame 3 | 21402 | 8 | 62 | 496 | 43296 | 38 F2 02 00 F4 01 B2 02 00 3D 02 3D |
80 | Blast B Frame 1 | 21910 | 4 | 29 | 116 | 43641 | EA F4 02 00 78 00 B6 00 11 2D 11 2D |
81 | Blast B Frame 2 | 22038 | 7 | 64 | 448 | 43868 | B0 F6 02 00 C4 01 32 01 00 3F 07 38 |
82 | Blast B Frame 3 | 22498 | 4 | 64 | 256 | 45039 | D6 FF 02 00 04 01 0E 01 00 3F 11 2C |
83 | Blast C Frame 1 | 22766 | 2 | 15 | 30 | 45478 | 44 03 03 00 22 00 40 00 18 26 19 26 |
84 | Blast C Frame 2 | 22808 | 5 | 40 | 200 | 45528 | A8 03 03 00 CC 00 FA 01 0B 32 0D 31 |
85 | Blood Splat | 23020 | 8 | 59 | 472 | 45722 | 2C 05 03 00 DC 01 E2 01 03 3D 03 3D |
86 | Blood Splat Pentagram | 23504 | 8 | 63 | 504 | 46212 | 00 09 03 00 FC 01 96 02 01 3F 03 3F |
87 | Blood Splat Die | 24020 | 8 | 52 | 416 | 46939 | AE 0E 03 00 A4 01 14 02 07 3A 06 3F |
88 | X Brace | 24448 | 8 | 64 | 512 | 47312 | 98 11 03 00 04 02 D0 01 00 3F 00 3F |
89 | Wall Tube | 24972 | 8 | 40 | 320 | 48777 | 0A 1D 03 00 44 01 A4 00 0C 33 00 3F |
90 | Wall Damage | 25304 | 8 | 64 | 512 | 50057 | 0A 27 03 00 04 02 8E 01 00 3F 00 3F |
91 | Bars | 25828 | 8 | 64 | 512 | 50788 | C0 2C 03 00 04 02 52 01 00 3F 01 3F |
92 | Wall Side Supports | 26352 | 8 | 64 | 512 | 51810 | BC 34 03 00 04 02 A4 00 00 3F 00 3F |
93 | Wall Broken Plaster | 26876 | 8 | 64 | 512 | 52203 | CE 37 03 00 04 02 04 01 00 3F 01 3F |
94 | Axe Hold | 27400 | 8 | 31 | 248 | 53640 | 08 43 03 00 FC 00 96 00 21 3F 07 3F |
95 | Axe Use | 27660 | 5 | 35 | 175 | 54079 | 76 46 03 00 B3 00 92 00 08 2A 1A 3F |
96 | Fire Extinguisher Hold | 27847 | 5 | 63 | 315 | 54299 | 2E 48 03 00 3F 01 2E 01 00 3E 1A 3F |
97 | Fire Extinguisher Use | 28174 | 8 | 56 | 448 | 55022 | D4 4D 03 00 C4 01 6E 01 06 3D 00 3F |
98 | Gun Hold | 28634 | 4 | 26 | 104 | 55884 | 90 54 03 00 6C 00 6E 00 13 2C 27 3F |
99 | Gun Use | 28750 | 4 | 26 | 104 | 56081 | 1A 56 03 00 6C 00 82 00 12 2B 20 3F |
100 | Shotgun Hold | 28866 | 4 | 42 | 168 | 56344 | 28 58 03 00 AC 00 AC 00 08 31 21 3F |
101 | Shotgun Use | 29046 | 5 | 41 | 205 | 56719 | 16 5B 03 00 D1 00 C6 00 0A 32 1A 3F |
102 | Chain Gun Hold | 29263 | 4 | 40 | 160 | 57259 | 4E 5F 03 00 A4 00 A4 00 0C 33 26 3F |
103 | Chain Gun User | 29435 | 5 | 42 | 210 | 57666 | 7C 62 03 00 D6 00 B0 00 0C 35 1A 3F |
104 | Super Shotgun Hold | 29657 | 3 | 36 | 108 | 58329 | AA 67 03 00 70 00 94 00 0E 31 28 3F |
105 | Super Shotgun Use | 29777 | 5 | 40 | 200 | 58632 | 08 6A 03 00 CC 00 C2 00 0C 33 1D 3F |
106 | Plasma Gun Hold | 29989 | 4 | 40 | 160 | 59106 | BC 6D 03 00 A4 00 A6 00 0C 33 26 3F |
107 | Plasma Gun Use | 30161 | 4 | 40 | 160 | 59532 | 10 71 03 00 A4 00 C0 00 0B 32 26 3F |
108 | Rocket Launcher Hold | 30333 | 4 | 50 | 200 | 59942 | 44 74 03 00 CC 00 CC 00 07 38 27 3F |
109 | Rocket Launcher Use | 30545 | 5 | 50 | 250 | 60410 | EC 77 03 00 FE 00 D0 00 07 38 1E 3F |
110 | BFG 9000 Hold | 30807 | 3 | 55 | 165 | 61093 | 42 7D 03 00 A9 00 E0 00 04 3A 28 3F |
111 | BFG 9000 Use | 30984 | 6 | 63 | 378 | 61622 | 64 81 03 00 7E 01 48 01 01 3F 12 3F |
112 | Hellhound Hold | 31374 | 5 | 46 | 230 | 62642 | 5C 89 03 00 EA 00 C8 00 0A 37 1A 3F |
113 | Hellhound Use | 31616 | 7 | 61 | 427 | 63179 | 8E 8D 03 00 AF 01 34 01 02 3E 09 3F |
# | ID16 | Description |
1 | 01 | Axe |
2 | 02 | Fire Extinguisher |
3 | 03 | Shotgun |
4 | 04 | Super Shotgun |
5 | 05 | Chain Gun |
6 | 06 | Rocket Launcher |
7 | 07 | Plasma Gun |
8 | 08 | BFG9000 |
9 | 11 | Zombie Pvt |
10 | 12 | Zombie Lt |
11 | 13 | Zombie Cpt |
12 | 14 | Hell Hound |
13 | 15 | Cerberus |
14 | 16 | Demon Wolf |
15 | 17 | Troop |
16 | 18 | Commando |
17 | 19 | Assassin |
18 | 1A | Impling |
19 | 1B | Imp |
20 | 1C | Imp Lord |
21 | 1D | Phantom |
22 | 1E | Lost Soul |
23 | 1F | Nightmare |
24 | 20 | Bull Demon |
25 | 21 | Pinky |
26 | 22 | Belphegor |
27 | 23 | Malwrath |
28 | 24 | Cacodemon |
29 | 25 | Wretched |
30 | 26 | Beholder |
31 | 27 | Rahovart |
32 | 28 | Pain Elemental |
33 | 29 | Ghoul |
34 | 2A | Fiend |
35 | 2B | Revenant |
36 | 2C | Behemoth |
37 | 2D | Mancubus |
38 | 2E | Druj |
39 | 2F | Infernis |
40 | 30 | Archvile |
41 | 31 | Apollyon |
42 | 32 | Ogre |
43 | 33 | Hell Knight |
44 | 34 | Baron |
45 | 35 | Cyberdemon |
46 | 36 | Kronos |
47 | 3E | Burned Steel Wall |
48 | 3F | Broken Tube Wall |
49 | 41 | Red Key |
50 | 42 | Blue Key |
51 | 43 | Green Key |
52 | 47 | Steel Wall |
53 | 49 | Yellow Key |
54 | 51 | Halon Can (1) |
55 | 52 | Halon Can (4) |
56 | 53 | Bullet Clip (1) |
57 | 54 | Bullet Clip (4) |
58 | 55 | Shell Clip (1) |
59 | 56 | Shell Clip (4) |
60 | 57 | Rocket (1) |
61 | 58 | Rocket (4) |
62 | 59 | Cell (1) |
63 | 5A | Cell Clip (4) |
64 | 5B | Health Vial |
65 | 5C | Armor Shard |
66 | 5D | Flak Jacket Green |
67 | 5E | Combat Suit Blue |
68 | 5F | Credit Green |
69 | 60 | Credit Yellow |
70 | 63 | MedKit Small |
71 | 64 | MedKit Large |
72 | 65 | Soul Sphear |
73 | 66 | Berserker |
74 | 6E | Collar |
75 | 80 | Lava |
76 | 81 | Fire |
77 | 82 | Barrel |
78 | 83 | Power Coupling |
79 | 84 | Sink |
80 | 85 | Toilet |
81 | 86 | Chair |
82 | 87 | Lamp Yellow |
83 | 8A | Exit Sign |
84 | 8B | File Cabinet |
85 | 8C | Lamp Blue |
86 | 8D | Table |
87 | 8E | Bunk |
88 | 91 | Civilian Yellow |
89 | 92 | Scientist White |
90 | 93 | Marine Green |
91 | 94 | Scientist Black |
92 | 95 | Scientist Blue (Guerard) |
93 | 96 | Civilian Purple (Nadira) |
94 | 97 | Civilian Green |
95 | 98 | Marine Blue |
96 | A1 | Crate Orange |
97 | A2 | Crate Yellow |
98 | D1 | Splat |
99 | D2 | Splat Pentagram |
100 | D3 | Splat Die |
101 | D4 | Wall X Brace |
102 | D5 | Wall X Brace |
103 | D6 | Wall Tech |
104 | D7 | Damaged Stucco |
105 | D8 | Bars |
106 | D9 | Wall Side Supports |
107 | DC | Damaged Steel Wall |
# | String | ID | Type | P1 | P2 |
0: | Axe | 0001 | 5 | 00 | 00000000 |
1: | Fire Ext | 0002 | 5 | 01 | 0000000A |
2: | Shotgun | 0003 | 5 | 03 | 00000008 |
3: | Super Shotgn | 0004 | 5 | 05 | 0000000A |
4: | Chaingun | 0005 | 5 | 04 | 0000000C |
5: | Rocket Lnchr | 0006 | 5 | 07 | 00000004 |
6: | Plasma Gun | 0007 | 5 | 06 | 0000000C |
7: | BFG | 0008 | 5 | 08 | 0000000F |
8: | Pistol | 0009 | 5 | 02 | 00000000 |
9: | Hellhound | 000A | 5 | 09 | 00000000 |
10: | Cerberus | 000B | 5 | 0A | 00000000 |
11: | Demon Wolf | 000C | 5 | 0B | 00000000 |
12: | Zombie Pvt | 0011 | 1 | 00 | 00000126 |
13: | Zombie Lt | 0012 | 1 | 00 | 000001D3 |
14: | Zombie Cpt | 0013 | 1 | 00 | 00000280 |
15: | Hellhound | 0014 | 1 | 01 | 00000126 |
16: | Cerberus | 0015 | 1 | 01 | 000001D3 |
17: | Demon Wolf | 0016 | 1 | 01 | 00000280 |
18: | Troop | 0017 | 1 | 02 | 00000126 |
19: | Commando | 0018 | 1 | 02 | 000001D3 |
20: | Assassin | 0019 | 1 | 02 | 00000280 |
21: | Impling | 001A | 1 | 03 | 00000126 |
22: | Imp | 001B | 1 | 03 | 000001D3 |
23: | Imp Lord | 001C | 1 | 03 | 00000280 |
24: | Phantom | 001D | 1 | 04 | 00000126 |
25: | Lost Soul | 001E | 1 | 04 | 000001D3 |
26: | Nightmare | 001F | 1 | 04 | 00000280 |
27: | Bull Demon | 0020 | 1 | 05 | 00000126 |
28: | Pinky | 0021 | 1 | 05 | 000001D3 |
29: | Belphegor | 0022 | 1 | 05 | 00000280 |
30: | Malwrath | 0023 | 1 | 06 | 00000126 |
31: | Cacodemon | 0024 | 1 | 06 | 000001D3 |
32: | Wretched | 0025 | 1 | 06 | 00000280 |
33: | Beholder | 0026 | 1 | 07 | 00000126 |
34: | Rahovart | 0027 | 1 | 07 | 000001D3 |
35: | Pain Elemental | 0028 | 1 | 07 | 00000280 |
36: | Ghoul | 0029 | 1 | 08 | 00000126 |
37: | Fiend | 002A | 1 | 08 | 000001D3 |
38: | Revenant | 002B | 1 | 08 | 00000280 |
39: | Behemoth | 002C | 1 | 09 | 00000126 |
40: | Mancubus | 002D | 1 | 09 | 000001D3 |
41: | Druj | 002E | 1 | 09 | 00000280 |
42: | Infernis | 002F | 1 | 0A | 00000126 |
43: | Archvile | 0030 | 1 | 0A | 000001D3 |
44: | Apollyon | 0031 | 1 | 0A | 00000280 |
45: | Ogre | 0032 | 1 | 0B | 00000126 |
46: | Hell Knight | 0033 | 1 | 0B | 000001D3 |
47: | Baron | 0034 | 1 | 0B | 00000280 |
48: | Cyberdemon | 0035 | 1 | 0C | 00000126 |
49: | Kronos | 0036 | 1 | 0D | 00000126 |
50: | Red Key | 0041 | 3 | 18 | 00000003 |
51: | Blue Key | 0042 | 3 | 18 | 00000002 |
52: | Green Key | 0043 | 3 | 18 | 00000000 |
53: | Yellow Key | 0049 | 3 | 18 | 00000001 |
54: | Halon Can | 0051 | 6 | 00 | 00000003 |
55: | Halon Cans | 0052 | 16 | 00 | 0000000A |
56: | Bullet Clip | 0053 | 6 | 01 | 00000004 |
57: | Bullet Clips | 0054 | 16 | 01 | 0000000A |
58: | Shell Clip | 0055 | 6 | 02 | 00000004 |
59: | Shell Clips | 0056 | 16 | 02 | 0000000A |
60: | Rocket | 0057 | 6 | 03 | 00000001 |
61: | Rockets | 0058 | 16 | 03 | 00000004 |
62: | Cell Clip | 0059 | 6 | 04 | 00000004 |
63: | Cell Clips | 005A | 16 | 04 | 0000000A |
64: | Health Vial | 005B | 3 | 14 | 00000004 |
65: | Armor Shard | 005C | 3 | 15 | 00000004 |
66: | Flak Jacket | 005D | 3 | 15 | 00000019 |
67: | Combat Suit | 005E | 3 | 15 | 00000032 |
68: | 1 credit | 005F | 3 | 16 | 00000001 |
69: | 5 credits | 0060 | 3 | 17 | 00000005 |
70: | Sm Medkit | 0063 | 4 | 19 | 00000019 |
71: | Lg Medkit | 0064 | 4 | 1A | 0000004B |
72: | Soul Sphere | 0065 | 4 | 1B | 00000000 |
73: | Berserker | 0066 | 4 | 1C | 00000000 |
74: | Dog Collar | 006E | 4 | 1D | 00000000 |
75: | Civilian | 0091 | 2 | 00 | 00000000 |
76: | Scientist | 0092 | 2 | 00 | 00000000 |
77: | Marine | 0093 | 2 | 00 | 00000000 |
78: | Scientist | 0094 | 2 | 00 | 00000000 |
79: | Dr. Guerard | 0095 | 2 | 00 | 00000000 |
80: | Civilian | 0096 | 2 | 00 | 00000000 |
81: | Civilian | 0097 | 2 | 00 | 00000000 |
82: | Marine | 0098 | 2 | 00 | 00000000 |
83: | Lava Pool | 0080 | 11 | 00 | 00000000 |
84: | Fire | 0081 | 10 | 00 | 00000000 |
85: | Barrel | 0082 | 12 | 01 | 00000FFF |
86: | Power Coupling | 0083 | 12 | 04 | 00000FFF |
87: | Sink | 0084 | 13 | 00 | 00000000 |
88: | Toilet | 0085 | 13 | 00 | 00000000 |
89: | Chair | 0086 | 13 | 00 | 00000000 |
90: | Yellow Lamp | 0087 | 7 | 00 | 00000000 |
91: | Cabinet | 008B | 7 | 00 | 00000000 |
92: | Blue Lamp | 008C | 7 | 00 | 00000000 |
93: | Table | 008D | 13 | 00 | 00000000 |
94: | Bunk Beds | 008E | 7 | 00 | 00000000 |
95: | Crate | 00A1 | 12 | 02 | 00000FFF |
96: | Crate | 00A2 | 12 | 02 | 00000FFF |
97: | Jammed Door | 0132 | 12 | 03 | 00000001 |
98: | Weak Wall | 014C | 12 | 03 | 00000001 |
99: | Door | 0131 | 0 | 00 | 00000000 |
100: | Red Door | 0134 | 0 | 00 | 00000000 |
101: | Blue Door | 0135 | 0 | 00 | 00000000 |
102: | Green Door | 0136 | 0 | 00 | 00000000 |
103: | Yellow Door | 0137 | 0 | 00 | 00000000 |
104: | Exit Door | 0138 | 0 | 00 | 00000000 |
105: | Locked Door | 013A | 0 | 01 | 00000000 |
106: | Unlocked Door | 013B | 0 | 02 | 00000000 |
107: | 0152 | 7 | 04 | 00000000 | |
108: | Portal | 0153 | 7 | 03 | 00000000 |
109: | Computer | 0167 | 7 | 05 | 00000000 |
110: | Item Vendor | 0168 | 7 | 00 | 00000000 |
111: | 0201 | 9 | 00 | 00000000 | |
112: | 0202 | 14 | 00 | 00000000 | |
113: | 0203 | 15 | 00 | 00000000 | |
114: | 029A | 8 | 00 | 00000000 |