Relegation of integer-based resources to history.

Documentation has been updated and header files have been re-sorted as a 
result of this.


git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@3024 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
mcmartin
2008-06-06 13:08:47 +00:00
parent d790e44342
commit bab2323019
64 changed files with 2472 additions and 1458 deletions
+133 -3
View File
@@ -1,3 +1,133 @@
This file documents both the currently used resource system and the
legacy system used in the original implementations. It also describes
how to update the resources while keeping everything functional.
THE UQM RESOURCE SYSTEM
-----------------------
Resources are identified by "resource IDs", which are arbitrary
strings. The UQM convention is to treat them as paths or qualified
names, with the period being the separator. An example would be
"comm.arilou.dialogue", which is conceptually grouped with all other
resources beginning with "comm." or "comm.arilou."
Resources are mapped to files via "resource map files" or RMPs. These
files are full of key-value pairs. Each line of an RMP file matches
this format:
resource_ID = RESOURCE_TYPE:resource_data
The currently defined resource types and their accompanying data are:
GFXRES: A single animation. The resource data is the name of the
.ani file that defines it. See the "aniformat" file for
details.
FONTRES: A font. The resource data is the name of the directory
in which the font is defined.
MUSICRES: A music file. The resource data is the filename of the
relevant file in OGG or MOD format.
SNDRES: A set of related sounds. Points to a text file,
traditionally suffixed ".snd", that lists each sound
file in the collection, one per line. These sounds are
in WAV format.
STRTAB: An unadorned string table. The resource data is the file
name.
BINTAB: Indexed binary data, mostly used for palettes and
topological data for planet terrain generation. The
resource data is the file name. See the "strtab" file, but
be aware that all information not regarding .ct or .xlt
files has been obsoleted.
CONVERSATION: All data corresponding to an individual conversation
tree. The resource data has three components, separated
by colons: the conversation text (similar to the
STRTAB), the directory in which voiceovers may be
found, and the timestamp file corresponding to those
voiceovers. The second and third values are optional,
but if either is present, both must be.
SHIP: This is an integer that specifies which ship corresponds
to a specified resource. The mapping of SHIP integers
to actual ship_info structures is done by the dummy.c
routines.
STRING: A string. The resource data is the string itself.
INT32: A 32-bit integer. The resource data is the integer as a
string giving its representation in decimal.
BOOLEAN: A true/false value. Any value of the resource data that
is not the exact case-insensitive string "true" will be
treated as false.
UNKNOWNRES: A catch-all internal type for any type the system does
not recognize. It is functionally equivalent to STRING,
mainly so that sensible debug messages may be emitted.
When UQM is started, each RMP file in the content directory (but not
its subdirectories) is read and indexed. Then, for each addon pack
rqeuested, it reads each RMP file in the addons/(addon name)/
directory and updates the resource index accordingly. Generally
speaking, this will overwrite older values of the resources with
pointers to the new content.
It is permissible to have multiple RMP files in a single directory;
however, if this is done, there should be no overlap between the
resources defined. The UQM resource system makes no guarantees about
the loading order of RMP files within a unit.
It is not required for an addon to restrict its references to its own
subdirectory; all paths are relative to the base of the content
directory. This allows fonts to be shared across addons, for an "addon
pack" to simply reorganize content within the base directory. (For
instance, a popular modification to the original games involved
juggling .SHP files and renaming them so that the "Earthling Cruiser"
was actually a much more powerful ship like the Utwig Jugger or Chmmr
Avatar. This may be effected in the current system by making an addon
pack that redefines the relevant SHIP-typed resources.)
UPDATING THE CORE RESOURCES
---------------------------
The officially supported content is kept in three indices:
- content/uqm.rmp: The core content.
- content/addons/3domusic/3domusic.rmp: 3DO music.
- content/addons/3dovoice/3dovoice.rmp: The 3DO conversations.
These latter two are treated the same as any other addons, except that
they are guaranteed to be loaded first if selected by the
configuration file.
These files do not house all the necessary data, however. The code
itself uses a set of automatically generated header files to #define
constants that correspond to each resource. In order to add new
resources or change currently defined resource IDs, the .h files must
also be updated.
To keep all information in one place, the tools/resmap directory
contains a master data file for all core resources ("resource.csv")
and a number of Python scripts for manipulating it.
If files have simply been moved, renamed, or re-typed, one may reflect
these changes in uqm.rmp and run the "reverse_rmp.py" script. This
will reflect changes in uqm.rmp back into resources.csv.
If the header constants or resource IDs have changed, changes will
need to propagate to the .h files. Edit or add the relevant lines to
resources.csv and run "gen_resfiles.py". This will read resources.csv
and regenerate uqm.rmp and all the relevant header files.
The resources.csv file is a comma-separated-values file suitable for
importing into most spreadsheet programs. It has one line for each
resource, and each line has five "columns":
C constant, resource id, header file, resource type, resource data
If a resource exists in the code, but not in the base content the
resource type and resource data are both the string "--". The C
constant and header file are still mandatory - otherwise UQM will not
compile. Such resources will not be reflected in the RMP files, but
will have their headers defined appropriately so that addon packs may
provide values.
LEGACY SYSTEM
-------------
The resource files the resource system in SC2 uses, comes in two flavours. The resource files the resource system in SC2 uses, comes in two flavours.
There are 'packaged' files, which contain the data in the file itself, There are 'packaged' files, which contain the data in the file itself,
and 'non-packaged' (index) files, which only point to other files. and 'non-packaged' (index) files, which only point to other files.
@@ -42,7 +172,7 @@ CODE (7) - actual PC code (compressed; used for ships as well as comm;
(8) - Deluxe Paint .ANM (8) - Deluxe Paint .ANM
In the current Urquan Masters, the following types are used: In the UQM project pre-resmap, the following types were used:
KEY_CONFIG (1) - keyboard configuration (not used in the 3do packages) KEY_CONFIG (1) - keyboard configuration (not used in the 3do packages)
GFXRES (2) - graphics data GFXRES (2) - graphics data
FONTRES (3) - font data FONTRES (3) - font data
@@ -57,7 +187,7 @@ The resource files, resinst.h, restypes.h, and respkg.h files were
originally generated from information from the .res and .typ files. The originally generated from information from the .res and .typ files. The
resource library should be compiled with 'PACKAGING' defined for this. resource library should be compiled with 'PACKAGING' defined for this.
---
Initial version of this file 2002-10-23 by Serge van den Boom. Initial version of this file 2002-10-23 by Serge van den Boom.
Updated for the 0.7.0 system by Michael Martin.
+1 -1
View File
@@ -2,5 +2,5 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define ARILOU_PMAP_ANIM "comm.arilou.graphics"
#define ARILOU_COLOR_MAP "comm.arilou.colortable" #define ARILOU_COLOR_MAP "comm.arilou.colortable"
#define ARILOU_PMAP_ANIM "comm.arilou.graphics"
+1 -1
View File
@@ -2,5 +2,5 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define BLACKURQ_CONVERSATION_PHRASES "comm.kohrah.dialogue"
#define BLACKURQ_COLOR_MAP "comm.kohrah.colortable" #define BLACKURQ_COLOR_MAP "comm.kohrah.colortable"
#define BLACKURQ_CONVERSATION_PHRASES "comm.kohrah.dialogue"
+1 -1
View File
@@ -2,5 +2,5 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define CHMMR_CONVERSATION_PHRASES "comm.chmmr.dialogue"
#define CHMMR_COLOR_MAP "comm.chmmr.colortable" #define CHMMR_COLOR_MAP "comm.chmmr.colortable"
#define CHMMR_CONVERSATION_PHRASES "comm.chmmr.dialogue"
+1 -1
View File
@@ -2,6 +2,6 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define COMMANDER_LOWPOW_MUSIC "comm.comlowpw.music"
#define COMMANDER_MUSIC "comm.commander.music" #define COMMANDER_MUSIC "comm.commander.music"
#define STARBASE_ALT_MUSIC "comm.starbase.music" #define STARBASE_ALT_MUSIC "comm.starbase.music"
#define COMMANDER_LOWPOW_MUSIC "comm.comlowpw.music"
+1 -1
View File
@@ -2,5 +2,5 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define DRUUGE_CONVERSATION_PHRASES "comm.druuge.dialogue"
#define DRUUGE_COLOR_MAP "comm.druuge.colortable" #define DRUUGE_COLOR_MAP "comm.druuge.colortable"
#define DRUUGE_CONVERSATION_PHRASES "comm.druuge.dialogue"
+1 -1
View File
@@ -2,5 +2,5 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define ILWRATH_CONVERSATION_PHRASES "comm.ilwrath.dialogue"
#define ILWRATH_COLOR_MAP "comm.ilwrath.colortable" #define ILWRATH_COLOR_MAP "comm.ilwrath.colortable"
#define ILWRATH_CONVERSATION_PHRASES "comm.ilwrath.dialogue"
+1 -1
View File
@@ -2,5 +2,5 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define MELNORME_CONVERSATION_PHRASES "comm.melnorme.dialogue"
#define MELNORME_COLOR_MAP "comm.melnorme.colortable" #define MELNORME_COLOR_MAP "comm.melnorme.colortable"
#define MELNORME_CONVERSATION_PHRASES "comm.melnorme.dialogue"
+1 -1
View File
@@ -2,5 +2,5 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define MYCON_CONVERSATION_PHRASES "comm.mycon.dialogue"
#define MYCON_COLOR_MAP "comm.mycon.colortable" #define MYCON_COLOR_MAP "comm.mycon.colortable"
#define MYCON_CONVERSATION_PHRASES "comm.mycon.dialogue"
+1 -1
View File
@@ -2,5 +2,5 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define ORZ_CONVERSATION_PHRASES "comm.orz.dialogue"
#define ORZ_COLOR_MAP "comm.orz.colortable" #define ORZ_COLOR_MAP "comm.orz.colortable"
#define ORZ_CONVERSATION_PHRASES "comm.orz.dialogue"
+1 -1
View File
@@ -2,5 +2,5 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define PKUNK_CONVERSATION_PHRASES "comm.pkunk.dialogue"
#define PKUNK_COLOR_MAP "comm.pkunk.colortable" #define PKUNK_COLOR_MAP "comm.pkunk.colortable"
#define PKUNK_CONVERSATION_PHRASES "comm.pkunk.dialogue"
+1 -1
View File
@@ -2,5 +2,5 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define SHOFIXTI_CONVERSATION_PHRASES "comm.shofixti.dialogue"
#define SHOFIXTI_COLOR_MAP "comm.shofixti.colortable" #define SHOFIXTI_COLOR_MAP "comm.shofixti.colortable"
#define SHOFIXTI_CONVERSATION_PHRASES "comm.shofixti.dialogue"
+1 -1
View File
@@ -2,5 +2,5 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define SLYLANDRO_CONVERSATION_PHRASES "comm.slyhome.dialogue"
#define SLYLANDRO_COLOR_MAP "comm.slyhome.colortable" #define SLYLANDRO_COLOR_MAP "comm.slyhome.colortable"
#define SLYLANDRO_CONVERSATION_PHRASES "comm.slyhome.dialogue"
+1 -1
View File
@@ -2,5 +2,5 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define SLYLAND_CONVERSATION_PHRASES "comm.slylandro.dialogue"
#define SLYLAND_COLOR_MAP "comm.slylandro.colortable" #define SLYLAND_COLOR_MAP "comm.slylandro.colortable"
#define SLYLAND_CONVERSATION_PHRASES "comm.slylandro.dialogue"
+1 -1
View File
@@ -2,5 +2,5 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define SPATHI_PMAP_ANIM "comm.spathi.graphics"
#define SPATHI_HOME_PMAP_ANIM "comm.spahome.graphics" #define SPATHI_HOME_PMAP_ANIM "comm.spahome.graphics"
#define SPATHI_PMAP_ANIM "comm.spathi.graphics"
+2 -2
View File
@@ -2,6 +2,6 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define SPATHI_MUSIC "comm.spathi.music"
#define SPAHOME_MUSIC "comm.spahome.music"
#define FWIFFO_MUSIC "comm.spafwiff.music" #define FWIFFO_MUSIC "comm.spafwiff.music"
#define SPAHOME_MUSIC "comm.spahome.music"
#define SPATHI_MUSIC "comm.spathi.music"
+1 -1
View File
@@ -2,7 +2,7 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define SPATHI_COLOR_MAP "comm.spathi.colortable"
#define SPATHI_CONVERSATION_PHRASES "comm.spathi.dialogue" #define SPATHI_CONVERSATION_PHRASES "comm.spathi.dialogue"
#define SPATHI_HOME_COLOR_MAP "comm.spahome.colortable" #define SPATHI_HOME_COLOR_MAP "comm.spahome.colortable"
#define SPATHI_HOME_CONVERSATION_PHRASES "comm.spahome.dialogue" #define SPATHI_HOME_CONVERSATION_PHRASES "comm.spahome.dialogue"
#define SPATHI_COLOR_MAP "comm.spathi.colortable"
+1 -1
View File
@@ -2,5 +2,5 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define SUPOX_CONVERSATION_PHRASES "comm.supox.dialogue"
#define SUPOX_COLOR_MAP "comm.supox.colortable" #define SUPOX_COLOR_MAP "comm.supox.colortable"
#define SUPOX_CONVERSATION_PHRASES "comm.supox.dialogue"
+1 -1
View File
@@ -2,5 +2,5 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define SYREEN_CONVERSATION_PHRASES "comm.syreen.dialogue"
#define SYREEN_COLOR_MAP "comm.syreen.colortable" #define SYREEN_COLOR_MAP "comm.syreen.colortable"
#define SYREEN_CONVERSATION_PHRASES "comm.syreen.dialogue"
+1 -1
View File
@@ -2,5 +2,5 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define TALKING_PET_CONVERSATION_PHRASES "comm.talkingpet.dialogue"
#define TALKING_PET_COLOR_MAP "comm.talkingpet.colortable" #define TALKING_PET_COLOR_MAP "comm.talkingpet.colortable"
#define TALKING_PET_CONVERSATION_PHRASES "comm.talkingpet.dialogue"
+1 -1
View File
@@ -2,5 +2,5 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define THRADD_CONVERSATION_PHRASES "comm.thraddash.dialogue"
#define THRADD_COLOR_MAP "comm.thraddash.colortable" #define THRADD_COLOR_MAP "comm.thraddash.colortable"
#define THRADD_CONVERSATION_PHRASES "comm.thraddash.dialogue"
+1 -1
View File
@@ -2,5 +2,5 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define UMGAH_CONVERSATION_PHRASES "comm.umgah.dialogue"
#define UMGAH_COLOR_MAP "comm.umgah.colortable" #define UMGAH_COLOR_MAP "comm.umgah.colortable"
#define UMGAH_CONVERSATION_PHRASES "comm.umgah.dialogue"
+1 -1
View File
@@ -2,5 +2,5 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define URQUAN_CONVERSATION_PHRASES "comm.urquan.dialogue"
#define URQUAN_COLOR_MAP "comm.urquan.colortable" #define URQUAN_COLOR_MAP "comm.urquan.colortable"
#define URQUAN_CONVERSATION_PHRASES "comm.urquan.dialogue"
+1 -1
View File
@@ -2,5 +2,5 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define UTWIG_CONVERSATION_PHRASES "comm.utwig.dialogue"
#define UTWIG_COLOR_MAP "comm.utwig.colortable" #define UTWIG_COLOR_MAP "comm.utwig.colortable"
#define UTWIG_CONVERSATION_PHRASES "comm.utwig.dialogue"
+1 -1
View File
@@ -2,5 +2,5 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define VUX_CONVERSATION_PHRASES "comm.vux.dialogue"
#define VUX_COLOR_MAP "comm.vux.colortable" #define VUX_COLOR_MAP "comm.vux.colortable"
#define VUX_CONVERSATION_PHRASES "comm.vux.dialogue"
+1 -1
View File
@@ -2,5 +2,5 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define YEHAT_MUSIC "comm.yehat.music"
#define REBEL_MUSIC "comm.yehat.rebel.music" #define REBEL_MUSIC "comm.yehat.rebel.music"
#define YEHAT_MUSIC "comm.yehat.music"
+1 -1
View File
@@ -2,6 +2,6 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define YEHAT_CONVERSATION_PHRASES "comm.yehat.dialogue"
#define REBEL_CONVERSATION_PHRASES "comm.yehat.rebel.dialogue" #define REBEL_CONVERSATION_PHRASES "comm.yehat.rebel.dialogue"
#define YEHAT_COLOR_MAP "comm.yehat.colortable" #define YEHAT_COLOR_MAP "comm.yehat.colortable"
#define YEHAT_CONVERSATION_PHRASES "comm.yehat.dialogue"
+1 -1
View File
@@ -2,5 +2,5 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define ZOQFOTPIK_CONVERSATION_PHRASES "comm.zoqfotpik.dialogue"
#define ZOQFOTPIK_COLOR_MAP "comm.zoqfotpik.colortable" #define ZOQFOTPIK_COLOR_MAP "comm.zoqfotpik.colortable"
#define ZOQFOTPIK_CONVERSATION_PHRASES "comm.zoqfotpik.dialogue"
+3 -3
View File
@@ -2,11 +2,11 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define STARCON_FONT "font.starcon"
#define TINY_FONT "font.tiny"
#define MICRO_FONT "font.micro"
#define LANDER_FONT "font.lander" #define LANDER_FONT "font.lander"
#define MICRO_FONT "font.micro"
#define PLAYER_FONT "font.player" #define PLAYER_FONT "font.player"
#define PT13AA_FONT "credits.font.pt13" #define PT13AA_FONT "credits.font.pt13"
#define PT17AA_FONT "credits.font.pt17" #define PT17AA_FONT "credits.font.pt17"
#define PT45AA_FONT "credits.font.pt45" #define PT45AA_FONT "credits.font.pt45"
#define STARCON_FONT "font.starcon"
#define TINY_FONT "font.tiny"
+51 -51
View File
@@ -2,40 +2,35 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define TITLE_ANIM "graphics.title"
#define STATUS_MASK_PMAP_ANIM "graphics.status"
#define ACTIVITY_ANIM "graphics.activity" #define ACTIVITY_ANIM "graphics.activity"
#define PLAYMENU_ANIM "graphics.playmenu" #define AMBIENT_MASK_PMAP_ANIM "graphics.ambanim"
#define FLAGSTAT_MASK_PMAP_ANIM "graphics.flagstat" #define AQUA_MASK_PMAP_ANIM "graphics.aquhelix"
#define MISCDATA_MASK_PMAP_ANIM "graphics.miscdata" #define ARISPACE_MASK_PMAP_ANIM "graphics.arispace"
#define FONTGRAD_PMAP_ANIM "graphics.fontgrad"
#define STAR_MASK_PMAP_ANIM "graphics.stars"
#define ASTEROID_BIG_MASK_PMAP_ANIM "graphics.astbig" #define ASTEROID_BIG_MASK_PMAP_ANIM "graphics.astbig"
#define ASTEROID_MED_MASK_PMAP_ANIM "graphics.astmed" #define ASTEROID_MED_MASK_PMAP_ANIM "graphics.astmed"
#define ASTEROID_SML_MASK_PMAP_ANIM "graphics.astsml" #define ASTEROID_SML_MASK_PMAP_ANIM "graphics.astsml"
#define BLAST_BIG_MASK_PMAP_ANIM "graphics.blabig" #define BLAST_BIG_MASK_PMAP_ANIM "graphics.blabig"
#define BLAST_MED_MASK_PMAP_ANIM "graphics.blamed" #define BLAST_MED_MASK_PMAP_ANIM "graphics.blamed"
#define BLAST_SML_MASK_PMAP_ANIM "graphics.blasml" #define BLAST_SML_MASK_PMAP_ANIM "graphics.blasml"
#define BOMB_MASK_PMAP_ANIM "graphics.utwbomb"
#define BOOM_BIG_MASK_PMAP_ANIM "graphics.boobig" #define BOOM_BIG_MASK_PMAP_ANIM "graphics.boobig"
#define BOOM_MED_MASK_PMAP_ANIM "graphics.boomed" #define BOOM_MED_MASK_PMAP_ANIM "graphics.boomed"
#define BOOM_SML_MASK_PMAP_ANIM "graphics.boosml" #define BOOM_SML_MASK_PMAP_ANIM "graphics.boosml"
#define AMBIENT_MASK_PMAP_ANIM "graphics.ambanim" #define BURV_BCS_MASK_PMAP_ANIM "graphics.drutrans"
#define HYPERSTARS_MASK_PMAP_ANIM "graphics.hyperstr"
#define ARISPACE_MASK_PMAP_ANIM "graphics.arispace"
#define IPBKGND_MASK_PMAP_ANIM "graphics.obbkgnd"
#define SISIP_MASK_PMAP_ANIM "graphics.sis_ip"
#define ORBPLAN_MASK_PMAP_ANIM "graphics.orbplan"
#define SUN_MASK_PMAP_ANIM "graphics.ip_sun"
#define LANDER_MASK_PMAP_ANIM "graphics.lander"
#define QUAKE_MASK_PMAP_ANIM "graphics.quake"
#define LIGHTNING_MASK_ANIM "graphics.lightnin"
#define LAVA_MASK_PMAP_ANIM "graphics.lavaspot"
#define LANDER_SHIELD_MASK_ANIM "graphics.lndrshld"
#define LANDER_LAUNCH_MASK_PMAP_ANIM "graphics.launch"
#define LANDER_RETURN_MASK_PMAP_ANIM "graphics.return"
#define ORBIT_VIEW_ANIM "graphics.orbview"
#define EARTH_MASK_ANIM "graphics.eartmask"
#define CANNISTER_MASK_PMAP_ANIM "graphics.lifecan" #define CANNISTER_MASK_PMAP_ANIM "graphics.lifecan"
#define CREDITS_BACK_ANIM "credits.background"
#define EARTH_MASK_ANIM "graphics.eartmask"
#define EGG_CASE_MASK_PMAP_ANIM "graphics.eggcase"
#define FLAGSTAT_MASK_PMAP_ANIM "graphics.flagstat"
#define FONTGRAD_PMAP_ANIM "graphics.fontgrad"
#define HYPERSTARS_MASK_PMAP_ANIM "graphics.hyperstr"
#define IPBKGND_MASK_PMAP_ANIM "graphics.obbkgnd"
#define LANDER_FONTEFF_PMAP_ANIM "graphics.landfeff"
#define LANDER_LAUNCH_MASK_PMAP_ANIM "graphics.launch"
#define LANDER_MASK_PMAP_ANIM "graphics.lander"
#define LANDER_RETURN_MASK_PMAP_ANIM "graphics.return"
#define LANDER_SHIELD_MASK_ANIM "graphics.lndrshld"
#define LAVA_MASK_PMAP_ANIM "graphics.lavaspot"
#define LIFE00_MASK_PMAP_ANIM "graphics.life.0" #define LIFE00_MASK_PMAP_ANIM "graphics.life.0"
#define LIFE01_MASK_PMAP_ANIM "graphics.life.1" #define LIFE01_MASK_PMAP_ANIM "graphics.life.1"
#define LIFE02_MASK_PMAP_ANIM "graphics.life.2" #define LIFE02_MASK_PMAP_ANIM "graphics.life.2"
@@ -62,35 +57,18 @@
#define LIFE23_MASK_PMAP_ANIM "graphics.life.23" #define LIFE23_MASK_PMAP_ANIM "graphics.life.23"
#define LIFE24_MASK_PMAP_ANIM "graphics.life.24" #define LIFE24_MASK_PMAP_ANIM "graphics.life.24"
#define LIFE25_MASK_PMAP_ANIM "graphics.life.25" #define LIFE25_MASK_PMAP_ANIM "graphics.life.25"
#define LANDER_FONTEFF_PMAP_ANIM "graphics.landfeff" #define LIGHTNING_MASK_ANIM "graphics.lightnin"
#define MOONBASE_MASK_PMAP_ANIM "graphics.moonbase"
#define MAIDENS_MASK_PMAP_ANIM "graphics.maidens" #define MAIDENS_MASK_PMAP_ANIM "graphics.maidens"
#define AQUA_MASK_PMAP_ANIM "graphics.aquhelix"
#define BURV_BCS_MASK_PMAP_ANIM "graphics.drutrans"
#define TAALO_DEVICE_MASK_PMAP_ANIM "graphics.taadevic"
#define SUN_DEVICE_MASK_PMAP_ANIM "graphics.sundevic"
#define VAULT_MASK_PMAP_ANIM "graphics.syrvault"
#define WRECK_MASK_PMAP_ANIM "graphics.urqwreck"
#define BOMB_MASK_PMAP_ANIM "graphics.utwbomb"
#define EGG_CASE_MASK_PMAP_ANIM "graphics.eggcase"
#define SPAPLUTO_MASK_PMAP_ANIM "graphics.spapluto"
#define RUINS_MASK_PMAP_ANIM "graphics.ruins"
#define UMGAH_BCS_MASK_PMAP_ANIM "graphics.umgtrans"
#define MELEE_SCREEN_PMAP_ANIM "graphics.melebkgd"
#define MELEE_PICK_MASK_PMAP_ANIM "graphics.melee" #define MELEE_PICK_MASK_PMAP_ANIM "graphics.melee"
#define SEGUE_PMAP_ANIM "graphics.segue" #define MELEE_SCREEN_PMAP_ANIM "graphics.melebkgd"
#define SC2_PICK_PMAP_ANIM "graphics.pickship" #define MENUBKG_PMAP_ANIM "graphics.setupmenu"
#define RESTART_PMAP_ANIM "graphics.newgame" #define MISCDATA_MASK_PMAP_ANIM "graphics.miscdata"
#define MODULES_PMAP_ANIM "graphics.modules" #define MODULES_PMAP_ANIM "graphics.modules"
#define SISMODS_MASK_PMAP_ANIM "graphics.sismods" #define MOONBASE_MASK_PMAP_ANIM "graphics.moonbase"
#define ORBENTER_PMAP_ANIM "graphics.orbenter"
#define ORBIT_VIEW_ANIM "graphics.orbview"
#define ORBPLAN_MASK_PMAP_ANIM "graphics.orbplan"
#define OUTFIT_PMAP_ANIM "graphics.outfit" #define OUTFIT_PMAP_ANIM "graphics.outfit"
#define SISBLU_MASK_ANIM "graphics.sisblu"
#define SHIPYARD_PMAP_ANIM "graphics.shipyard"
#define STARBASE_ANIM "graphics.starbase"
#define SAMATRA_BIG_MASK_PMAP_ANIM "planet.samatra.large"
#define SHIELDED_BIG_MASK_PMAP_ANIM "planet.slaveshield.large"
#define SHIELDED_MED_MASK_PMAP_ANIM "planet.slaveshield.medium"
#define SHIELDED_SML_MASK_PMAP_ANIM "planet.slaveshield.small"
#define PLANET00_BIG_MASK_PMAP_ANIM "planet.oolite.large" #define PLANET00_BIG_MASK_PMAP_ANIM "planet.oolite.large"
#define PLANET00_MED_MASK_PMAP_ANIM "planet.oolite.medium" #define PLANET00_MED_MASK_PMAP_ANIM "planet.oolite.medium"
#define PLANET00_SML_MASK_PMAP_ANIM "planet.oolite.small" #define PLANET00_SML_MASK_PMAP_ANIM "planet.oolite.small"
@@ -268,7 +246,29 @@
#define PLANET58_BIG_MASK_PMAP_ANIM "planet.yellowgas.large" #define PLANET58_BIG_MASK_PMAP_ANIM "planet.yellowgas.large"
#define PLANET58_MED_MASK_PMAP_ANIM "planet.yellowgas.medium" #define PLANET58_MED_MASK_PMAP_ANIM "planet.yellowgas.medium"
#define PLANET58_SML_MASK_PMAP_ANIM "planet.yellowgas.small" #define PLANET58_SML_MASK_PMAP_ANIM "planet.yellowgas.small"
#define CREDITS_BACK_ANIM "credits.background" #define PLAYMENU_ANIM "graphics.playmenu"
#define QUAKE_MASK_PMAP_ANIM "graphics.quake"
#define RESTART_PMAP_ANIM "graphics.newgame"
#define RUINS_MASK_PMAP_ANIM "graphics.ruins"
#define SAMATRA_BIG_MASK_PMAP_ANIM "planet.samatra.large"
#define SC2_PICK_PMAP_ANIM "graphics.pickship"
#define SEGUE_PMAP_ANIM "graphics.segue"
#define SHIELDED_BIG_MASK_PMAP_ANIM "planet.slaveshield.large"
#define SHIELDED_MED_MASK_PMAP_ANIM "planet.slaveshield.medium"
#define SHIELDED_SML_MASK_PMAP_ANIM "planet.slaveshield.small"
#define SHIPYARD_PMAP_ANIM "graphics.shipyard"
#define SISBLU_MASK_ANIM "graphics.sisblu"
#define SISIP_MASK_PMAP_ANIM "graphics.sis_ip"
#define SISMODS_MASK_PMAP_ANIM "graphics.sismods"
#define SISSKEL_MASK_PMAP_ANIM "graphics.sisskeleton" #define SISSKEL_MASK_PMAP_ANIM "graphics.sisskeleton"
#define ORBENTER_PMAP_ANIM "graphics.orbenter" #define SPAPLUTO_MASK_PMAP_ANIM "graphics.spapluto"
#define MENUBKG_PMAP_ANIM "graphics.setupmenu" #define STARBASE_ANIM "graphics.starbase"
#define STAR_MASK_PMAP_ANIM "graphics.stars"
#define STATUS_MASK_PMAP_ANIM "graphics.status"
#define SUN_DEVICE_MASK_PMAP_ANIM "graphics.sundevic"
#define SUN_MASK_PMAP_ANIM "graphics.ip_sun"
#define TAALO_DEVICE_MASK_PMAP_ANIM "graphics.taadevic"
#define TITLE_ANIM "graphics.title"
#define UMGAH_BCS_MASK_PMAP_ANIM "graphics.umgtrans"
#define VAULT_MASK_PMAP_ANIM "graphics.syrvault"
#define WRECK_MASK_PMAP_ANIM "graphics.urqwreck"
+6 -6
View File
@@ -2,19 +2,19 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define BATTLE_MUSIC "music.battle"
#define CREDITS_MUSIC "music.credits"
#define HYPERSPACE_MUSIC "music.hyper" #define HYPERSPACE_MUSIC "music.hyper"
#define QUASISPACE_MUSIC "music.arispace"
#define IP_MUSIC "music.space" #define IP_MUSIC "music.space"
#define MAINMENU_MUSIC "music.mainmenu"
#define MELEE_MUSIC "music.meleemenu"
#define ORBIT1_MUSIC "music.orbit1" #define ORBIT1_MUSIC "music.orbit1"
#define ORBIT2_MUSIC "music.orbit2" #define ORBIT2_MUSIC "music.orbit2"
#define ORBIT3_MUSIC "music.orbit3" #define ORBIT3_MUSIC "music.orbit3"
#define ORBIT4_MUSIC "music.orbit4" #define ORBIT4_MUSIC "music.orbit4"
#define ORBIT5_MUSIC "music.orbit5" #define ORBIT5_MUSIC "music.orbit5"
#define MELEE_MUSIC "music.meleemenu"
#define REDALERT_MUSIC "music.redalert"
#define MAINMENU_MUSIC "music.mainmenu"
#define OUTFIT_MUSIC "music.outfit" #define OUTFIT_MUSIC "music.outfit"
#define QUASISPACE_MUSIC "music.arispace"
#define REDALERT_MUSIC "music.redalert"
#define SHIPYARD_MUSIC "music.shipyard" #define SHIPYARD_MUSIC "music.shipyard"
#define STARBASE_MUSIC "music.starbase" #define STARBASE_MUSIC "music.starbase"
#define BATTLE_MUSIC "music.battle"
#define CREDITS_MUSIC "music.credits"
+1 -1
View File
@@ -2,6 +2,6 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define MENU_SOUNDS "sounds.menu"
#define GAME_SOUNDS "sounds.game" #define GAME_SOUNDS "sounds.game"
#define LANDER_SOUNDS "sounds.landsnds" #define LANDER_SOUNDS "sounds.landsnds"
#define MENU_SOUNDS "sounds.menu"
+125 -125
View File
@@ -2,152 +2,152 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define STARCON_COLOR_MAP "colortable.scclrtab"
#define STARCON_GAME_STRINGS "text.starcon"
#define HYPER_COLOR_TAB "colortable.hyperpal"
#define ARISPACE_COLOR_TAB "colortable.arispace"
#define ORBPLAN_COLOR_MAP "colortable.orbplan"
#define IPSUN_COLOR_MAP "colortable.ip_sun"
#define OOLITE_COLOR_TAB "planet.oolite.colortable"
#define OOLITE_XLAT_TAB "planet.oolite.translatetable"
#define YTTRIC_COLOR_TAB "planet.yttric.colortable"
#define YTTRIC_XLAT_TAB "planet.yttric.translatetable"
#define QUASI_DEGENERATE_COLOR_TAB "planet.quasidegenerate.colortable"
#define QUASI_DEGENERATE_XLAT_TAB "planet.quasidegenerate.translatetable"
#define LANTHANIDE_COLOR_TAB "planet.lanthanide.colortable"
#define LANTHANIDE_XLAT_TAB "planet.lanthanide.translatetable"
#define TREASURE_COLOR_TAB "planet.treasure.colortable"
#define TREASURE_XLAT_TAB "planet.treasure.translatetable"
#define UREA_COLOR_TAB "planet.urea.colortable"
#define UREA_XLAT_TAB "planet.urea.translatetable"
#define METAL_COLOR_TAB "planet.metal.colortable"
#define METAL_XLAT_TAB "planet.metal.translatetable"
#define RADIOACTIVE_COLOR_TAB "planet.radioactive.colortable"
#define RADIOACTIVE_XLAT_TAB "planet.radioactive.translatetable"
#define OPALESCENT_COLOR_TAB "planet.opalescent.colortable"
#define OPALESCENT_XLAT_TAB "planet.opalescent.translatetable"
#define CYANIC_COLOR_TAB "planet.cyanic.colortable"
#define CYANIC_XLAT_TAB "planet.cyanic.translatetable"
#define ACID_COLOR_TAB "planet.acid.colortable" #define ACID_COLOR_TAB "planet.acid.colortable"
#define ACID_XLAT_TAB "planet.acid.translatetable" #define ACID_XLAT_TAB "planet.acid.translatetable"
#define ALKALI_COLOR_TAB "planet.alkali.colortable" #define ALKALI_COLOR_TAB "planet.alkali.colortable"
#define ALKALI_XLAT_TAB "planet.alkali.translatetable" #define ALKALI_XLAT_TAB "planet.alkali.translatetable"
#define HALIDE_COLOR_TAB "planet.halide.colortable" #define ANDROSYNTH_RUINS_STRTAB "text.andruins"
#define HALIDE_XLAT_TAB "planet.halide.translatetable" #define AQUA_STRTAB "text.aquhelix"
#define GREEN_COLOR_TAB "planet.green.colortable" #define ARISPACE_COLOR_TAB "colortable.arispace"
#define GREEN_XLAT_TAB "planet.green.translatetable"
#define COPPER_COLOR_TAB "planet.copper.colortable"
#define COPPER_XLAT_TAB "planet.copper.translatetable"
#define CARBIDE_COLOR_TAB "planet.carbide.colortable"
#define CARBIDE_XLAT_TAB "planet.carbide.translatetable"
#define ULTRAMARINE_COLOR_TAB "planet.ultramarine.colortable"
#define ULTRAMARINE_XLAT_TAB "planet.ultramarine.translatetable"
#define NOBLE_COLOR_TAB "planet.noble.colortable"
#define NOBLE_XLAT_TAB "planet.noble.translatetable"
#define AZURE_COLOR_TAB "planet.azure.colortable"
#define AZURE_XLAT_TAB "planet.azure.translatetable"
#define CHONDRITE_COLOR_TAB "planet.chondrite.colortable"
#define CHONDRITE_XLAT_TAB "planet.chondrite.translatetable"
#define PURPLE_COLOR_TAB "planet.purple.colortable"
#define PURPLE_XLAT_TAB "planet.purple.translatetable"
#define SUPER_DENSE_COLOR_TAB "planet.superdense.colortable"
#define SUPER_DENSE_XLAT_TAB "planet.superdense.translatetable"
#define PELLUCID_COLOR_TAB "planet.pellucid.colortable"
#define PELLUCID_XLAT_TAB "planet.pellucid.translatetable"
#define DUST_COLOR_TAB "planet.dust.colortable"
#define DUST_XLAT_TAB "planet.dust.translatetable"
#define CRIMSON_COLOR_TAB "planet.crimson.colortable"
#define CRIMSON_XLAT_TAB "planet.crimson.translatetable"
#define CIMMERIAN_COLOR_TAB "planet.cimmerian.colortable"
#define CIMMERIAN_XLAT_TAB "planet.cimmerian.translatetable"
#define INFRARED_COLOR_TAB "planet.infrared.colortable"
#define INFRARED_XLAT_TAB "planet.infrared.translatetable"
#define SELENIC_COLOR_TAB "planet.selenic.colortable"
#define SELENIC_XLAT_TAB "planet.selenic.translatetable"
#define AURIC_COLOR_TAB "planet.auric.colortable" #define AURIC_COLOR_TAB "planet.auric.colortable"
#define AURIC_XLAT_TAB "planet.auric.translatetable" #define AURIC_XLAT_TAB "planet.auric.translatetable"
#define FLUORESCENT_COLOR_TAB "planet.fluorescent.colortable" #define AZURE_COLOR_TAB "planet.azure.colortable"
#define FLUORESCENT_XLAT_TAB "planet.fluorescent.translatetable" #define AZURE_XLAT_TAB "planet.azure.translatetable"
#define ULTRAVIOLET_COLOR_TAB "planet.ultraviolet.colortable" #define BEAST_STRTAB "text.vuxbeast"
#define ULTRAVIOLET_XLAT_TAB "planet.ultraviolet.translatetable"
#define PLUTONIC_COLOR_TAB "planet.plutonic.colortable"
#define PLUTONIC_XLAT_TAB "planet.plutonic.translatetable"
#define RAINBOW_COLOR_TAB "planet.rainbow.colortable"
#define RAINBOW_XLAT_TAB "planet.rainbow.translatetable"
#define SHATTERED_COLOR_TAB "planet.shattered.colortable"
#define SHATTERED_XLAT_TAB "planet.shattered.translatetable"
#define SAPPHIRE_COLOR_TAB "planet.sapphire.colortable"
#define SAPPHIRE_XLAT_TAB "planet.sapphire.translatetable"
#define ORGANIC_COLOR_TAB "planet.organic.colortable"
#define ORGANIC_XLAT_TAB "planet.organic.translatetable"
#define XENOLITHIC_COLOR_TAB "planet.xenolithic.colortable"
#define XENOLITHIC_XLAT_TAB "planet.xenolithic.translatetable"
#define REDUX_COLOR_TAB "planet.redux.colortable"
#define REDUX_XLAT_TAB "planet.redux.translatetable"
#define PRIMORDIAL_COLOR_TAB "planet.primordial.colortable"
#define PRIMORDIAL_XLAT_TAB "planet.primordial.translatetable"
#define EMERALD_COLOR_TAB "planet.emerald.colortable"
#define EMERALD_XLAT_TAB "planet.emerald.translatetable"
#define CHLORINE_COLOR_TAB "planet.chlorine.colortable"
#define CHLORINE_XLAT_TAB "planet.chlorine.translatetable"
#define MAGNETIC_COLOR_TAB "planet.magnetic.colortable"
#define MAGNETIC_XLAT_TAB "planet.magnetic.translatetable"
#define WATER_COLOR_TAB "planet.water.colortable"
#define WATER_XLAT_TAB "planet.water.translatetable"
#define TELLURIC_COLOR_TAB "planet.telluric.colortable"
#define TELLURIC_XLAT_TAB "planet.telluric.translatetable"
#define HYDROCARBON_COLOR_TAB "planet.hydrocarbon.colortable"
#define HYDROCARBON_XLAT_TAB "planet.hydrocarbon.translatetable"
#define IODINE_COLOR_TAB "planet.iodine.colortable"
#define IODINE_XLAT_TAB "planet.iodine.translatetable"
#define VINYLOGOUS_COLOR_TAB "planet.vinylogous.colortable"
#define VINYLOGOUS_XLAT_TAB "planet.vinylogous.translatetable"
#define RUBY_COLOR_TAB "planet.ruby.colortable"
#define RUBY_XLAT_TAB "planet.ruby.translatetable"
#define MAGMA_COLOR_TAB "planet.magma.colortable"
#define MAGMA_XLAT_TAB "planet.magma.translatetable"
#define MAROON_COLOR_TAB "planet.maroon.colortable"
#define MAROON_XLAT_TAB "planet.maroon.translatetable"
#define BLU_GAS_COLOR_TAB "planet.bluegas.colortable" #define BLU_GAS_COLOR_TAB "planet.bluegas.colortable"
#define BLU_GAS_XLAT_TAB "planet.bluegas.translatetable" #define BLU_GAS_XLAT_TAB "planet.bluegas.translatetable"
#define BOMB_STRTAB "text.utwbomb"
#define BURV_BCS_STRTAB "text.drutrans"
#define BURV_RUINS_STRTAB "text.burruins"
#define CARBIDE_COLOR_TAB "planet.carbide.colortable"
#define CARBIDE_XLAT_TAB "planet.carbide.translatetable"
#define CHLORINE_COLOR_TAB "planet.chlorine.colortable"
#define CHLORINE_XLAT_TAB "planet.chlorine.translatetable"
#define CHMMR_BASE_STRTAB "text.chmmrbas"
#define CHONDRITE_COLOR_TAB "planet.chondrite.colortable"
#define CHONDRITE_XLAT_TAB "planet.chondrite.translatetable"
#define CIMMERIAN_COLOR_TAB "planet.cimmerian.colortable"
#define CIMMERIAN_XLAT_TAB "planet.cimmerian.translatetable"
#define COPPER_COLOR_TAB "planet.copper.colortable"
#define COPPER_XLAT_TAB "planet.copper.translatetable"
#define CREDITS_STRTAB "credits.credits"
#define CRIMSON_COLOR_TAB "planet.crimson.colortable"
#define CRIMSON_XLAT_TAB "planet.crimson.translatetable"
#define CYANIC_COLOR_TAB "planet.cyanic.colortable"
#define CYANIC_XLAT_TAB "planet.cyanic.translatetable"
#define CYA_GAS_COLOR_TAB "planet.cyangas.colortable" #define CYA_GAS_COLOR_TAB "planet.cyangas.colortable"
#define CYA_GAS_XLAT_TAB "planet.cyangas.translatetable" #define CYA_GAS_XLAT_TAB "planet.cyangas.translatetable"
#define DRUUGE_RUINS_STRTAB "text.sphere"
#define DUST_COLOR_TAB "planet.dust.colortable"
#define DUST_XLAT_TAB "planet.dust.translatetable"
#define EGG_CASE_STRTAB "text.eggcase"
#define EMERALD_COLOR_TAB "planet.emerald.colortable"
#define EMERALD_XLAT_TAB "planet.emerald.translatetable"
#define FINALPRES_STRTAB "slides.ending"
#define FLUORESCENT_COLOR_TAB "planet.fluorescent.colortable"
#define FLUORESCENT_XLAT_TAB "planet.fluorescent.translatetable"
#define GREEN_COLOR_TAB "planet.green.colortable"
#define GREEN_XLAT_TAB "planet.green.translatetable"
#define GRN_GAS_COLOR_TAB "planet.greengas.colortable" #define GRN_GAS_COLOR_TAB "planet.greengas.colortable"
#define GRN_GAS_XLAT_TAB "planet.greengas.translatetable" #define GRN_GAS_XLAT_TAB "planet.greengas.translatetable"
#define GRY_GAS_COLOR_TAB "planet.greygas.colortable" #define GRY_GAS_COLOR_TAB "planet.greygas.colortable"
#define GRY_GAS_XLAT_TAB "planet.greygas.translatetable" #define GRY_GAS_XLAT_TAB "planet.greygas.translatetable"
#define HALIDE_COLOR_TAB "planet.halide.colortable"
#define HALIDE_XLAT_TAB "planet.halide.translatetable"
#define HANGAR_COLOR_TAB "colortable.dockpani"
#define HYDROCARBON_COLOR_TAB "planet.hydrocarbon.colortable"
#define HYDROCARBON_XLAT_TAB "planet.hydrocarbon.translatetable"
#define HYPER_COLOR_TAB "colortable.hyperpal"
#define INFRARED_COLOR_TAB "planet.infrared.colortable"
#define INFRARED_XLAT_TAB "planet.infrared.translatetable"
#define INTROPRES_STRTAB "slides.intro"
#define IODINE_COLOR_TAB "planet.iodine.colortable"
#define IODINE_XLAT_TAB "planet.iodine.translatetable"
#define IPSUN_COLOR_MAP "colortable.ip_sun"
#define JOYSTICK_ALPHA_STRTAB "text.joyalpha"
#define LANTHANIDE_COLOR_TAB "planet.lanthanide.colortable"
#define LANTHANIDE_XLAT_TAB "planet.lanthanide.translatetable"
#define MAGMA_COLOR_TAB "planet.magma.colortable"
#define MAGMA_XLAT_TAB "planet.magma.translatetable"
#define MAGNETIC_COLOR_TAB "planet.magnetic.colortable"
#define MAGNETIC_XLAT_TAB "planet.magnetic.translatetable"
#define MAIDENS_STRTAB "text.maidens"
#define MAROON_COLOR_TAB "planet.maroon.colortable"
#define MAROON_XLAT_TAB "planet.maroon.translatetable"
#define METAL_COLOR_TAB "planet.metal.colortable"
#define METAL_XLAT_TAB "planet.metal.translatetable"
#define MOONBASE_STRTAB "text.moonbase"
#define NOBLE_COLOR_TAB "planet.noble.colortable"
#define NOBLE_XLAT_TAB "planet.noble.translatetable"
#define OOLITE_COLOR_TAB "planet.oolite.colortable"
#define OOLITE_XLAT_TAB "planet.oolite.translatetable"
#define OPALESCENT_COLOR_TAB "planet.opalescent.colortable"
#define OPALESCENT_XLAT_TAB "planet.opalescent.translatetable"
#define ORA_GAS_COLOR_TAB "planet.orangegas.colortable" #define ORA_GAS_COLOR_TAB "planet.orangegas.colortable"
#define ORA_GAS_XLAT_TAB "planet.orangegas.translatetable" #define ORA_GAS_XLAT_TAB "planet.orangegas.translatetable"
#define ORBPLAN_COLOR_MAP "colortable.orbplan"
#define ORGANIC_COLOR_TAB "planet.organic.colortable"
#define ORGANIC_XLAT_TAB "planet.organic.translatetable"
#define PELLUCID_COLOR_TAB "planet.pellucid.colortable"
#define PELLUCID_XLAT_TAB "planet.pellucid.translatetable"
#define PKUNK_RUINS_STRTAB "text.spindle"
#define PLUTONIC_COLOR_TAB "planet.plutonic.colortable"
#define PLUTONIC_XLAT_TAB "planet.plutonic.translatetable"
#define PRIMORDIAL_COLOR_TAB "planet.primordial.colortable"
#define PRIMORDIAL_XLAT_TAB "planet.primordial.translatetable"
#define PURPLE_COLOR_TAB "planet.purple.colortable"
#define PURPLE_XLAT_TAB "planet.purple.translatetable"
#define PUR_GAS_COLOR_TAB "planet.purplegas.colortable" #define PUR_GAS_COLOR_TAB "planet.purplegas.colortable"
#define PUR_GAS_XLAT_TAB "planet.purplegas.translatetable" #define PUR_GAS_XLAT_TAB "planet.purplegas.translatetable"
#define QUASI_DEGENERATE_COLOR_TAB "planet.quasidegenerate.colortable"
#define QUASI_DEGENERATE_XLAT_TAB "planet.quasidegenerate.translatetable"
#define RADIOACTIVE_COLOR_TAB "planet.radioactive.colortable"
#define RADIOACTIVE_XLAT_TAB "planet.radioactive.translatetable"
#define RAINBOW_COLOR_TAB "planet.rainbow.colortable"
#define RAINBOW_XLAT_TAB "planet.rainbow.translatetable"
#define REDUX_COLOR_TAB "planet.redux.colortable"
#define REDUX_XLAT_TAB "planet.redux.translatetable"
#define RED_GAS_COLOR_TAB "planet.redgas.colortable" #define RED_GAS_COLOR_TAB "planet.redgas.colortable"
#define RED_GAS_XLAT_TAB "planet.redgas.translatetable" #define RED_GAS_XLAT_TAB "planet.redgas.translatetable"
#define RUBY_COLOR_TAB "planet.ruby.colortable"
#define RUBY_XLAT_TAB "planet.ruby.translatetable"
#define RUINS_STRTAB "text.ruins"
#define SAPPHIRE_COLOR_TAB "planet.sapphire.colortable"
#define SAPPHIRE_XLAT_TAB "planet.sapphire.translatetable"
#define SELENIC_COLOR_TAB "planet.selenic.colortable"
#define SELENIC_XLAT_TAB "planet.selenic.translatetable"
#define SETUP_MENU_STRTAB "text.setupmenu"
#define SHATTERED_COLOR_TAB "planet.shattered.colortable"
#define SHATTERED_XLAT_TAB "planet.shattered.translatetable"
#define SPAPLUTO_STRTAB "text.spapluto"
#define STARCON_COLOR_MAP "colortable.scclrtab"
#define STARCON_GAME_STRINGS "text.starcon"
#define SUN_DEVICE_STRTAB "text.sundevic"
#define SUPER_DENSE_COLOR_TAB "planet.superdense.colortable"
#define SUPER_DENSE_XLAT_TAB "planet.superdense.translatetable"
#define TAALO_DEVICE_STRTAB "text.taadevic"
#define TELLURIC_COLOR_TAB "planet.telluric.colortable"
#define TELLURIC_XLAT_TAB "planet.telluric.translatetable"
#define TREASURE_COLOR_TAB "planet.treasure.colortable"
#define TREASURE_XLAT_TAB "planet.treasure.translatetable"
#define ULTRAMARINE_COLOR_TAB "planet.ultramarine.colortable"
#define ULTRAMARINE_XLAT_TAB "planet.ultramarine.translatetable"
#define ULTRAVIOLET_COLOR_TAB "planet.ultraviolet.colortable"
#define ULTRAVIOLET_XLAT_TAB "planet.ultraviolet.translatetable"
#define UMGAH_BCS_STRTAB "text.umgtrans"
#define UREA_COLOR_TAB "planet.urea.colortable"
#define UREA_XLAT_TAB "planet.urea.translatetable"
#define VAULT_STRTAB "text.syrvault"
#define VINYLOGOUS_COLOR_TAB "planet.vinylogous.colortable"
#define VINYLOGOUS_XLAT_TAB "planet.vinylogous.translatetable"
#define VIO_GAS_COLOR_TAB "planet.violetgas.colortable" #define VIO_GAS_COLOR_TAB "planet.violetgas.colortable"
#define VIO_GAS_XLAT_TAB "planet.violetgas.translatetable" #define VIO_GAS_XLAT_TAB "planet.violetgas.translatetable"
#define WATER_COLOR_TAB "planet.water.colortable"
#define WATER_XLAT_TAB "planet.water.translatetable"
#define WRECK_STRTAB "text.urqwreck"
#define XENOLITHIC_COLOR_TAB "planet.xenolithic.colortable"
#define XENOLITHIC_XLAT_TAB "planet.xenolithic.translatetable"
#define YEL_GAS_COLOR_TAB "planet.yellowgas.colortable" #define YEL_GAS_COLOR_TAB "planet.yellowgas.colortable"
#define YEL_GAS_XLAT_TAB "planet.yellowgas.translatetable" #define YEL_GAS_XLAT_TAB "planet.yellowgas.translatetable"
#define MOONBASE_STRTAB "text.moonbase" #define YTTRIC_COLOR_TAB "planet.yttric.colortable"
#define MAIDENS_STRTAB "text.maidens" #define YTTRIC_XLAT_TAB "planet.yttric.translatetable"
#define CHMMR_BASE_STRTAB "text.chmmrbas"
#define AQUA_STRTAB "text.aquhelix"
#define BURV_BCS_STRTAB "text.drutrans"
#define TAALO_DEVICE_STRTAB "text.taadevic"
#define SUN_DEVICE_STRTAB "text.sundevic"
#define VAULT_STRTAB "text.syrvault"
#define WRECK_STRTAB "text.urqwreck"
#define BOMB_STRTAB "text.utwbomb"
#define BEAST_STRTAB "text.vuxbeast"
#define EGG_CASE_STRTAB "text.eggcase"
#define SPAPLUTO_STRTAB "text.spapluto"
#define BURV_RUINS_STRTAB "text.burruins"
#define ANDROSYNTH_RUINS_STRTAB "text.andruins"
#define DRUUGE_RUINS_STRTAB "text.sphere"
#define PKUNK_RUINS_STRTAB "text.spindle"
#define RUINS_STRTAB "text.ruins"
#define UMGAH_BCS_STRTAB "text.umgtrans"
#define HANGAR_COLOR_TAB "colortable.dockpani"
#define SETUP_MENU_STRTAB "text.setupmenu"
#define INTROPRES_STRTAB "slides.intro"
#define FINALPRES_STRTAB "slides.ending"
#define CREDITS_STRTAB "credits.credits"
#define JOYSTICK_ALPHA_STRTAB "text.joyalpha"
+6 -6
View File
@@ -2,15 +2,15 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define ANDROSYNTH_ICON_MASK_PMAP_ANIM "ship.androsynth.icons"
#define ANDROSYNTH_MICON_MASK_PMAP_ANIM "ship.androsynth.meleeicons"
#define ANDROSYNTH_BIG_MASK_PMAP_ANIM "ship.androsynth.graphics.androsyn.large" #define ANDROSYNTH_BIG_MASK_PMAP_ANIM "ship.androsynth.graphics.androsyn.large"
#define ANDROSYNTH_CAPT_MASK_PMAP_ANIM "ship.androsynth.graphics.captain"
#define ANDROSYNTH_ICON_MASK_PMAP_ANIM "ship.androsynth.icons"
#define ANDROSYNTH_MED_MASK_PMAP_ANIM "ship.androsynth.graphics.androsyn.medium" #define ANDROSYNTH_MED_MASK_PMAP_ANIM "ship.androsynth.graphics.androsyn.medium"
#define ANDROSYNTH_MICON_MASK_PMAP_ANIM "ship.androsynth.meleeicons"
#define ANDROSYNTH_SML_MASK_PMAP_ANIM "ship.androsynth.graphics.androsyn.small" #define ANDROSYNTH_SML_MASK_PMAP_ANIM "ship.androsynth.graphics.androsyn.small"
#define BUBBLE_BIG_MASK_PMAP_ANIM "ship.androsynth.graphics.bubble.large"
#define BUBBLE_MED_MASK_PMAP_ANIM "ship.androsynth.graphics.bubble.medium"
#define BUBBLE_SML_MASK_PMAP_ANIM "ship.androsynth.graphics.bubble.small"
#define BLAZER_BIG_MASK_PMAP_ANIM "ship.androsynth.graphics.blazer.large" #define BLAZER_BIG_MASK_PMAP_ANIM "ship.androsynth.graphics.blazer.large"
#define BLAZER_MED_MASK_PMAP_ANIM "ship.androsynth.graphics.blazer.medium" #define BLAZER_MED_MASK_PMAP_ANIM "ship.androsynth.graphics.blazer.medium"
#define BLAZER_SML_MASK_PMAP_ANIM "ship.androsynth.graphics.blazer.small" #define BLAZER_SML_MASK_PMAP_ANIM "ship.androsynth.graphics.blazer.small"
#define ANDROSYNTH_CAPT_MASK_PMAP_ANIM "ship.androsynth.graphics.captain" #define BUBBLE_BIG_MASK_PMAP_ANIM "ship.androsynth.graphics.bubble.large"
#define BUBBLE_MED_MASK_PMAP_ANIM "ship.androsynth.graphics.bubble.medium"
#define BUBBLE_SML_MASK_PMAP_ANIM "ship.androsynth.graphics.bubble.small"
+3 -3
View File
@@ -2,12 +2,12 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define ARILOU_ICON_MASK_PMAP_ANIM "ship.arilou.icons"
#define ARILOU_MICON_MASK_PMAP_ANIM "ship.arilou.meleeicons"
#define ARILOU_BIG_MASK_PMAP_ANIM "ship.arilou.graphics.arilou.large" #define ARILOU_BIG_MASK_PMAP_ANIM "ship.arilou.graphics.arilou.large"
#define ARILOU_CAPTAIN_MASK_PMAP_ANIM "ship.arilou.graphics.captain"
#define ARILOU_ICON_MASK_PMAP_ANIM "ship.arilou.icons"
#define ARILOU_MED_MASK_PMAP_ANIM "ship.arilou.graphics.arilou.medium" #define ARILOU_MED_MASK_PMAP_ANIM "ship.arilou.graphics.arilou.medium"
#define ARILOU_MICON_MASK_PMAP_ANIM "ship.arilou.meleeicons"
#define ARILOU_SML_MASK_PMAP_ANIM "ship.arilou.graphics.arilou.small" #define ARILOU_SML_MASK_PMAP_ANIM "ship.arilou.graphics.arilou.small"
#define WARP_BIG_MASK_PMAP_ANIM "ship.arilou.graphics.warp.large" #define WARP_BIG_MASK_PMAP_ANIM "ship.arilou.graphics.warp.large"
#define WARP_MED_MASK_PMAP_ANIM "ship.arilou.graphics.warp.medium" #define WARP_MED_MASK_PMAP_ANIM "ship.arilou.graphics.warp.medium"
#define WARP_SML_MASK_PMAP_ANIM "ship.arilou.graphics.warp.small" #define WARP_SML_MASK_PMAP_ANIM "ship.arilou.graphics.warp.small"
#define ARILOU_CAPTAIN_MASK_PMAP_ANIM "ship.arilou.graphics.captain"
+5 -5
View File
@@ -2,15 +2,15 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define KOHR_AH_ICON_MASK_PMAP_ANIM "ship.kohrah.icons"
#define KOHR_AH_MICON_MASK_PMAP_ANIM "ship.kohrah.meleeicons"
#define KOHR_AH_BIG_MASK_PMAP_ANIM "ship.kohrah.graphics.blackurq.large"
#define KOHR_AH_MED_MASK_PMAP_ANIM "ship.kohrah.graphics.blackurq.medium"
#define KOHR_AH_SML_MASK_PMAP_ANIM "ship.kohrah.graphics.blackurq.small"
#define BUZZSAW_BIG_MASK_PMAP_ANIM "ship.kohrah.graphics.buz.large" #define BUZZSAW_BIG_MASK_PMAP_ANIM "ship.kohrah.graphics.buz.large"
#define BUZZSAW_MED_MASK_PMAP_ANIM "ship.kohrah.graphics.buz.medium" #define BUZZSAW_MED_MASK_PMAP_ANIM "ship.kohrah.graphics.buz.medium"
#define BUZZSAW_SML_MASK_PMAP_ANIM "ship.kohrah.graphics.buz.small" #define BUZZSAW_SML_MASK_PMAP_ANIM "ship.kohrah.graphics.buz.small"
#define GAS_BIG_MASK_PMAP_ANIM "ship.kohrah.graphics.gas.large" #define GAS_BIG_MASK_PMAP_ANIM "ship.kohrah.graphics.gas.large"
#define GAS_MED_MASK_PMAP_ANIM "ship.kohrah.graphics.gas.medium" #define GAS_MED_MASK_PMAP_ANIM "ship.kohrah.graphics.gas.medium"
#define GAS_SML_MASK_PMAP_ANIM "ship.kohrah.graphics.gas.small" #define GAS_SML_MASK_PMAP_ANIM "ship.kohrah.graphics.gas.small"
#define KOHR_AH_BIG_MASK_PMAP_ANIM "ship.kohrah.graphics.blackurq.large"
#define KOHR_AH_CAPTAIN_MASK_PMAP_ANIM "ship.kohrah.graphics.captain" #define KOHR_AH_CAPTAIN_MASK_PMAP_ANIM "ship.kohrah.graphics.captain"
#define KOHR_AH_ICON_MASK_PMAP_ANIM "ship.kohrah.icons"
#define KOHR_AH_MED_MASK_PMAP_ANIM "ship.kohrah.graphics.blackurq.medium"
#define KOHR_AH_MICON_MASK_PMAP_ANIM "ship.kohrah.meleeicons"
#define KOHR_AH_SML_MASK_PMAP_ANIM "ship.kohrah.graphics.blackurq.small"
+6 -6
View File
@@ -2,15 +2,15 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define CHENJESU_ICON_MASK_PMAP_ANIM "ship.chenjesu.icons"
#define CHENJESU_MICON_MASK_PMAP_ANIM "ship.chenjesu.meleeicons"
#define CHENJESU_BIG_MASK_PMAP_ANIM "ship.chenjesu.graphics.chenjesu.large" #define CHENJESU_BIG_MASK_PMAP_ANIM "ship.chenjesu.graphics.chenjesu.large"
#define CHENJESU_CAPTAIN_MASK_PMAP_ANIM "ship.chenjesu.graphics.captain"
#define CHENJESU_ICON_MASK_PMAP_ANIM "ship.chenjesu.icons"
#define CHENJESU_MED_MASK_PMAP_ANIM "ship.chenjesu.graphics.chenjesu.medium" #define CHENJESU_MED_MASK_PMAP_ANIM "ship.chenjesu.graphics.chenjesu.medium"
#define CHENJESU_MICON_MASK_PMAP_ANIM "ship.chenjesu.meleeicons"
#define CHENJESU_SML_MASK_PMAP_ANIM "ship.chenjesu.graphics.chenjesu.small" #define CHENJESU_SML_MASK_PMAP_ANIM "ship.chenjesu.graphics.chenjesu.small"
#define SPARK_BIG_MASK_PMAP_ANIM "ship.chenjesu.graphics.spark.large"
#define SPARK_MED_MASK_PMAP_ANIM "ship.chenjesu.graphics.spark.medium"
#define SPARK_SML_MASK_PMAP_ANIM "ship.chenjesu.graphics.spark.small"
#define DOGGY_BIG_MASK_PMAP_ANIM "ship.chenjesu.graphics.doggy.large" #define DOGGY_BIG_MASK_PMAP_ANIM "ship.chenjesu.graphics.doggy.large"
#define DOGGY_MED_MASK_PMAP_ANIM "ship.chenjesu.graphics.doggy.medium" #define DOGGY_MED_MASK_PMAP_ANIM "ship.chenjesu.graphics.doggy.medium"
#define DOGGY_SML_MASK_PMAP_ANIM "ship.chenjesu.graphics.doggy.small" #define DOGGY_SML_MASK_PMAP_ANIM "ship.chenjesu.graphics.doggy.small"
#define CHENJESU_CAPTAIN_MASK_PMAP_ANIM "ship.chenjesu.graphics.captain" #define SPARK_BIG_MASK_PMAP_ANIM "ship.chenjesu.graphics.spark.large"
#define SPARK_MED_MASK_PMAP_ANIM "ship.chenjesu.graphics.spark.medium"
#define SPARK_SML_MASK_PMAP_ANIM "ship.chenjesu.graphics.spark.small"
+3 -3
View File
@@ -2,10 +2,11 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define CHMMR_ICON_MASK_PMAP_ANIM "ship.chmmr.icons"
#define CHMMR_MICON_MASK_PMAP_ANIM "ship.chmmr.meleeicons"
#define CHMMR_BIG_MASK_PMAP_ANIM "ship.chmmr.graphics.chmmr.large" #define CHMMR_BIG_MASK_PMAP_ANIM "ship.chmmr.graphics.chmmr.large"
#define CHMMR_CAPTAIN_MASK_PMAP_ANIM "ship.chmmr.graphics.captain"
#define CHMMR_ICON_MASK_PMAP_ANIM "ship.chmmr.icons"
#define CHMMR_MED_MASK_PMAP_ANIM "ship.chmmr.graphics.chmmr.medium" #define CHMMR_MED_MASK_PMAP_ANIM "ship.chmmr.graphics.chmmr.medium"
#define CHMMR_MICON_MASK_PMAP_ANIM "ship.chmmr.meleeicons"
#define CHMMR_SML_MASK_PMAP_ANIM "ship.chmmr.graphics.chmmr.small" #define CHMMR_SML_MASK_PMAP_ANIM "ship.chmmr.graphics.chmmr.small"
#define MUZZLE_BIG_MASK_PMAP_ANIM "ship.chmmr.graphics.muz.large" #define MUZZLE_BIG_MASK_PMAP_ANIM "ship.chmmr.graphics.muz.large"
#define MUZZLE_MED_MASK_PMAP_ANIM "ship.chmmr.graphics.muz.medium" #define MUZZLE_MED_MASK_PMAP_ANIM "ship.chmmr.graphics.muz.medium"
@@ -13,4 +14,3 @@
#define SATELLITE_BIG_MASK_PMAP_ANIM "ship.chmmr.graphics.sat.large" #define SATELLITE_BIG_MASK_PMAP_ANIM "ship.chmmr.graphics.sat.large"
#define SATELLITE_MED_MASK_PMAP_ANIM "ship.chmmr.graphics.sat.medium" #define SATELLITE_MED_MASK_PMAP_ANIM "ship.chmmr.graphics.sat.medium"
#define SATELLITE_SML_MASK_PMAP_ANIM "ship.chmmr.graphics.sat.small" #define SATELLITE_SML_MASK_PMAP_ANIM "ship.chmmr.graphics.sat.small"
#define CHMMR_CAPTAIN_MASK_PMAP_ANIM "ship.chmmr.graphics.captain"
+4 -4
View File
@@ -2,12 +2,12 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define DRUUGE_ICON_MASK_PMAP_ANIM "ship.druuge.icons"
#define DRUUGE_MICON_MASK_PMAP_ANIM "ship.druuge.meleeicons"
#define DRUUGE_BIG_MASK_PMAP_ANIM "ship.druuge.graphics.druuge.large" #define DRUUGE_BIG_MASK_PMAP_ANIM "ship.druuge.graphics.druuge.large"
#define DRUUGE_MED_MASK_PMAP_ANIM "ship.druuge.graphics.druuge.medium"
#define DRUUGE_SML_MASK_PMAP_ANIM "ship.druuge.graphics.druuge.small"
#define DRUUGE_CANNON_BIG_MASK_PMAP_ANIM "ship.druuge.graphics.can.large" #define DRUUGE_CANNON_BIG_MASK_PMAP_ANIM "ship.druuge.graphics.can.large"
#define DRUUGE_CANNON_MED_MASK_PMAP_ANIM "ship.druuge.graphics.can.medium" #define DRUUGE_CANNON_MED_MASK_PMAP_ANIM "ship.druuge.graphics.can.medium"
#define DRUUGE_CANNON_SML_MASK_PMAP_ANIM "ship.druuge.graphics.can.small" #define DRUUGE_CANNON_SML_MASK_PMAP_ANIM "ship.druuge.graphics.can.small"
#define DRUUGE_CAPT_MASK_PMAP_ANIM "ship.druuge.graphics.captain" #define DRUUGE_CAPT_MASK_PMAP_ANIM "ship.druuge.graphics.captain"
#define DRUUGE_ICON_MASK_PMAP_ANIM "ship.druuge.icons"
#define DRUUGE_MED_MASK_PMAP_ANIM "ship.druuge.graphics.druuge.medium"
#define DRUUGE_MICON_MASK_PMAP_ANIM "ship.druuge.meleeicons"
#define DRUUGE_SML_MASK_PMAP_ANIM "ship.druuge.graphics.druuge.small"
+3 -3
View File
@@ -2,12 +2,12 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define HUMAN_ICON_MASK_PMAP_ANIM "ship.earthling.icons"
#define HUMAN_MICON_MASK_PMAP_ANIM "ship.earthling.meleeicons"
#define HUMAN_BIG_MASK_PMAP_ANIM "ship.earthling.graphics.human.large" #define HUMAN_BIG_MASK_PMAP_ANIM "ship.earthling.graphics.human.large"
#define HUMAN_CAPTAIN_MASK_PMAP_ANIM "ship.earthling.graphics.captain"
#define HUMAN_ICON_MASK_PMAP_ANIM "ship.earthling.icons"
#define HUMAN_MED_MASK_PMAP_ANIM "ship.earthling.graphics.human.medium" #define HUMAN_MED_MASK_PMAP_ANIM "ship.earthling.graphics.human.medium"
#define HUMAN_MICON_MASK_PMAP_ANIM "ship.earthling.meleeicons"
#define HUMAN_SML_MASK_PMAP_ANIM "ship.earthling.graphics.human.small" #define HUMAN_SML_MASK_PMAP_ANIM "ship.earthling.graphics.human.small"
#define SATURN_BIG_MASK_PMAP_ANIM "ship.earthling.graphics.saturn.large" #define SATURN_BIG_MASK_PMAP_ANIM "ship.earthling.graphics.saturn.large"
#define SATURN_MED_MASK_PMAP_ANIM "ship.earthling.graphics.saturn.medium" #define SATURN_MED_MASK_PMAP_ANIM "ship.earthling.graphics.saturn.medium"
#define SATURN_SML_MASK_PMAP_ANIM "ship.earthling.graphics.saturn.small" #define SATURN_SML_MASK_PMAP_ANIM "ship.earthling.graphics.saturn.small"
#define HUMAN_CAPTAIN_MASK_PMAP_ANIM "ship.earthling.graphics.captain"
+5 -5
View File
@@ -2,12 +2,12 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define ILWRATH_ICON_MASK_PMAP_ANIM "ship.ilwrath.icons"
#define ILWRATH_MICON_MASK_PMAP_ANIM "ship.ilwrath.meleeicons"
#define ILWRATH_BIG_MASK_PMAP_ANIM "ship.ilwrath.graphics.ilwrath.large"
#define ILWRATH_MED_MASK_PMAP_ANIM "ship.ilwrath.graphics.ilwrath.medium"
#define ILWRATH_SML_MASK_PMAP_ANIM "ship.ilwrath.graphics.ilwrath.small"
#define FIRE_BIG_MASK_PMAP_ANIM "ship.ilwrath.graphics.fire.large" #define FIRE_BIG_MASK_PMAP_ANIM "ship.ilwrath.graphics.fire.large"
#define FIRE_MED_MASK_PMAP_ANIM "ship.ilwrath.graphics.fire.medium" #define FIRE_MED_MASK_PMAP_ANIM "ship.ilwrath.graphics.fire.medium"
#define FIRE_SML_MASK_PMAP_ANIM "ship.ilwrath.graphics.fire.small" #define FIRE_SML_MASK_PMAP_ANIM "ship.ilwrath.graphics.fire.small"
#define ILWRATH_BIG_MASK_PMAP_ANIM "ship.ilwrath.graphics.ilwrath.large"
#define ILWRATH_CAPTAIN_MASK_PMAP_ANIM "ship.ilwrath.graphics.captain" #define ILWRATH_CAPTAIN_MASK_PMAP_ANIM "ship.ilwrath.graphics.captain"
#define ILWRATH_ICON_MASK_PMAP_ANIM "ship.ilwrath.icons"
#define ILWRATH_MED_MASK_PMAP_ANIM "ship.ilwrath.graphics.ilwrath.medium"
#define ILWRATH_MICON_MASK_PMAP_ANIM "ship.ilwrath.meleeicons"
#define ILWRATH_SML_MASK_PMAP_ANIM "ship.ilwrath.graphics.ilwrath.small"
+4 -4
View File
@@ -2,13 +2,13 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define GENERATOR_BIG_MASK_ANIM "ship.lastbat.graphics.gen.large"
#define GENERATOR_MED_MASK_PMAP_ANIM "ship.lastbat.graphics.gen.medium"
#define GENERATOR_SML_MASK_PMAP_ANIM "ship.lastbat.graphics.gen.small"
#define SAMATRA_BIG_MASK_ANIM "ship.lastbat.graphics.lastbat.large" #define SAMATRA_BIG_MASK_ANIM "ship.lastbat.graphics.lastbat.large"
#define SAMATRA_CAPTAIN_MASK_PMAP_ANIM "ship.lastbat.graphics.captain"
#define SAMATRA_MED_MASK_PMAP_ANIM "ship.lastbat.graphics.lastbat.medium" #define SAMATRA_MED_MASK_PMAP_ANIM "ship.lastbat.graphics.lastbat.medium"
#define SAMATRA_SML_MASK_PMAP_ANIM "ship.lastbat.graphics.lastbat.small" #define SAMATRA_SML_MASK_PMAP_ANIM "ship.lastbat.graphics.lastbat.small"
#define SENTINEL_BIG_MASK_ANIM "ship.lastbat.graphics.sen.large" #define SENTINEL_BIG_MASK_ANIM "ship.lastbat.graphics.sen.large"
#define SENTINEL_MED_MASK_PMAP_ANIM "ship.lastbat.graphics.sen.medium" #define SENTINEL_MED_MASK_PMAP_ANIM "ship.lastbat.graphics.sen.medium"
#define SENTINEL_SML_MASK_PMAP_ANIM "ship.lastbat.graphics.sen.small" #define SENTINEL_SML_MASK_PMAP_ANIM "ship.lastbat.graphics.sen.small"
#define GENERATOR_BIG_MASK_ANIM "ship.lastbat.graphics.gen.large"
#define GENERATOR_MED_MASK_PMAP_ANIM "ship.lastbat.graphics.gen.medium"
#define GENERATOR_SML_MASK_PMAP_ANIM "ship.lastbat.graphics.gen.small"
#define SAMATRA_CAPTAIN_MASK_PMAP_ANIM "ship.lastbat.graphics.captain"
+6 -6
View File
@@ -2,15 +2,15 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define MELNORME_ICON_MASK_PMAP_ANIM "ship.melnorme.icons" #define CONFUSE_BIG_MASK_PMAP_ANIM "ship.melnorme.graphics.confu.large"
#define MELNORME_MICON_MASK_PMAP_ANIM "ship.melnorme.meleeicons" #define CONFUSE_MED_MASK_PMAP_ANIM "ship.melnorme.graphics.confu.medium"
#define CONFUSE_SML_MASK_PMAP_ANIM "ship.melnorme.graphics.confu.small"
#define MELNORME_BIG_MASK_PMAP_ANIM "ship.melnorme.graphics.melnorme.large" #define MELNORME_BIG_MASK_PMAP_ANIM "ship.melnorme.graphics.melnorme.large"
#define MELNORME_CAPTAIN_MASK_PMAP_ANIM "ship.melnorme.graphics.captain"
#define MELNORME_ICON_MASK_PMAP_ANIM "ship.melnorme.icons"
#define MELNORME_MED_MASK_PMAP_ANIM "ship.melnorme.graphics.melnorme.medium" #define MELNORME_MED_MASK_PMAP_ANIM "ship.melnorme.graphics.melnorme.medium"
#define MELNORME_MICON_MASK_PMAP_ANIM "ship.melnorme.meleeicons"
#define MELNORME_SML_MASK_PMAP_ANIM "ship.melnorme.graphics.melnorme.small" #define MELNORME_SML_MASK_PMAP_ANIM "ship.melnorme.graphics.melnorme.small"
#define PUMPUP_BIG_MASK_PMAP_ANIM "ship.melnorme.graphics.pump.large" #define PUMPUP_BIG_MASK_PMAP_ANIM "ship.melnorme.graphics.pump.large"
#define PUMPUP_MED_MASK_PMAP_ANIM "ship.melnorme.graphics.pump.medium" #define PUMPUP_MED_MASK_PMAP_ANIM "ship.melnorme.graphics.pump.medium"
#define PUMPUP_SML_MASK_PMAP_ANIM "ship.melnorme.graphics.pump.small" #define PUMPUP_SML_MASK_PMAP_ANIM "ship.melnorme.graphics.pump.small"
#define CONFUSE_BIG_MASK_PMAP_ANIM "ship.melnorme.graphics.confu.large"
#define CONFUSE_MED_MASK_PMAP_ANIM "ship.melnorme.graphics.confu.medium"
#define CONFUSE_SML_MASK_PMAP_ANIM "ship.melnorme.graphics.confu.small"
#define MELNORME_CAPTAIN_MASK_PMAP_ANIM "ship.melnorme.graphics.captain"
+3 -3
View File
@@ -2,10 +2,11 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define MMRNMHRM_ICON_MASK_PMAP_ANIM "ship.mmrnmhrm.icons"
#define MMRNMHRM_MICON_MASK_PMAP_ANIM "ship.mmrnmhrm.meleeicons"
#define MMRNMHRM_BIG_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.mmrnmhrm.large" #define MMRNMHRM_BIG_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.mmrnmhrm.large"
#define MMRNMHRM_CAPTAIN_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.captain"
#define MMRNMHRM_ICON_MASK_PMAP_ANIM "ship.mmrnmhrm.icons"
#define MMRNMHRM_MED_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.mmrnmhrm.medium" #define MMRNMHRM_MED_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.mmrnmhrm.medium"
#define MMRNMHRM_MICON_MASK_PMAP_ANIM "ship.mmrnmhrm.meleeicons"
#define MMRNMHRM_SML_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.mmrnmhrm.small" #define MMRNMHRM_SML_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.mmrnmhrm.small"
#define TORP_BIG_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.torp.large" #define TORP_BIG_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.torp.large"
#define TORP_MED_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.torp.medium" #define TORP_MED_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.torp.medium"
@@ -13,4 +14,3 @@
#define YWING_BIG_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.ywing.large" #define YWING_BIG_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.ywing.large"
#define YWING_MED_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.ywing.medium" #define YWING_MED_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.ywing.medium"
#define YWING_SML_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.ywing.small" #define YWING_SML_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.ywing.small"
#define MMRNMHRM_CAPTAIN_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.captain"
+3 -3
View File
@@ -2,12 +2,12 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define MYCON_ICON_MASK_PMAP_ANIM "ship.mycon.icons"
#define MYCON_MICON_MASK_PMAP_ANIM "ship.mycon.meleeicons"
#define MYCON_BIG_MASK_PMAP_ANIM "ship.mycon.graphics.mycon.large" #define MYCON_BIG_MASK_PMAP_ANIM "ship.mycon.graphics.mycon.large"
#define MYCON_CAPTAIN_MASK_PMAP_ANIM "ship.mycon.graphics.captain"
#define MYCON_ICON_MASK_PMAP_ANIM "ship.mycon.icons"
#define MYCON_MED_MASK_PMAP_ANIM "ship.mycon.graphics.mycon.medium" #define MYCON_MED_MASK_PMAP_ANIM "ship.mycon.graphics.mycon.medium"
#define MYCON_MICON_MASK_PMAP_ANIM "ship.mycon.meleeicons"
#define MYCON_SML_MASK_PMAP_ANIM "ship.mycon.graphics.mycon.small" #define MYCON_SML_MASK_PMAP_ANIM "ship.mycon.graphics.mycon.small"
#define PLASMA_BIG_MASK_PMAP_ANIM "ship.mycon.graphics.plasma.large" #define PLASMA_BIG_MASK_PMAP_ANIM "ship.mycon.graphics.plasma.large"
#define PLASMA_MED_MASK_PMAP_ANIM "ship.mycon.graphics.plasma.medium" #define PLASMA_MED_MASK_PMAP_ANIM "ship.mycon.graphics.plasma.medium"
#define PLASMA_SML_MASK_PMAP_ANIM "ship.mycon.graphics.plasma.small" #define PLASMA_SML_MASK_PMAP_ANIM "ship.mycon.graphics.plasma.small"
#define MYCON_CAPTAIN_MASK_PMAP_ANIM "ship.mycon.graphics.captain"
+6 -6
View File
@@ -2,15 +2,15 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define ORZ_ICON_MASK_PMAP_ANIM "ship.orz.icons"
#define ORZ_MICON_MASK_PMAP_ANIM "ship.orz.meleeicons"
#define ORZ_BIG_MASK_PMAP_ANIM "ship.orz.graphics.orz.large"
#define ORZ_MED_MASK_PMAP_ANIM "ship.orz.graphics.orz.medium"
#define ORZ_SML_MASK_PMAP_ANIM "ship.orz.graphics.orz.small"
#define HOWITZER_BIG_MASK_PMAP_ANIM "ship.orz.graphics.how.large" #define HOWITZER_BIG_MASK_PMAP_ANIM "ship.orz.graphics.how.large"
#define HOWITZER_MED_MASK_PMAP_ANIM "ship.orz.graphics.how.medium" #define HOWITZER_MED_MASK_PMAP_ANIM "ship.orz.graphics.how.medium"
#define HOWITZER_SML_MASK_PMAP_ANIM "ship.orz.graphics.how.small" #define HOWITZER_SML_MASK_PMAP_ANIM "ship.orz.graphics.how.small"
#define ORZ_BIG_MASK_PMAP_ANIM "ship.orz.graphics.orz.large"
#define ORZ_CAPTAIN_MASK_PMAP_ANIM "ship.orz.graphics.captain"
#define ORZ_ICON_MASK_PMAP_ANIM "ship.orz.icons"
#define ORZ_MED_MASK_PMAP_ANIM "ship.orz.graphics.orz.medium"
#define ORZ_MICON_MASK_PMAP_ANIM "ship.orz.meleeicons"
#define ORZ_SML_MASK_PMAP_ANIM "ship.orz.graphics.orz.small"
#define TURRET_BIG_MASK_PMAP_ANIM "ship.orz.graphics.tur.large" #define TURRET_BIG_MASK_PMAP_ANIM "ship.orz.graphics.tur.large"
#define TURRET_MED_MASK_PMAP_ANIM "ship.orz.graphics.tur.medium" #define TURRET_MED_MASK_PMAP_ANIM "ship.orz.graphics.tur.medium"
#define TURRET_SML_MASK_PMAP_ANIM "ship.orz.graphics.tur.small" #define TURRET_SML_MASK_PMAP_ANIM "ship.orz.graphics.tur.small"
#define ORZ_CAPTAIN_MASK_PMAP_ANIM "ship.orz.graphics.captain"
+5 -5
View File
@@ -2,12 +2,12 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define PKUNK_ICON_MASK_PMAP_ANIM "ship.pkunk.icons"
#define PKUNK_MICON_MASK_PMAP_ANIM "ship.pkunk.meleeicons"
#define PKUNK_BIG_MASK_PMAP_ANIM "ship.pkunk.graphics.pkunk.large"
#define PKUNK_MED_MASK_PMAP_ANIM "ship.pkunk.graphics.pkunk.medium"
#define PKUNK_SML_MASK_PMAP_ANIM "ship.pkunk.graphics.pkunk.small"
#define BUG_BIG_MASK_PMAP_ANIM "ship.pkunk.graphics.bug.large" #define BUG_BIG_MASK_PMAP_ANIM "ship.pkunk.graphics.bug.large"
#define BUG_MED_MASK_PMAP_ANIM "ship.pkunk.graphics.bug.medium" #define BUG_MED_MASK_PMAP_ANIM "ship.pkunk.graphics.bug.medium"
#define BUG_SML_MASK_PMAP_ANIM "ship.pkunk.graphics.bug.small" #define BUG_SML_MASK_PMAP_ANIM "ship.pkunk.graphics.bug.small"
#define PKUNK_BIG_MASK_PMAP_ANIM "ship.pkunk.graphics.pkunk.large"
#define PKUNK_CAPTAIN_MASK_PMAP_ANIM "ship.pkunk.graphics.captain" #define PKUNK_CAPTAIN_MASK_PMAP_ANIM "ship.pkunk.graphics.captain"
#define PKUNK_ICON_MASK_PMAP_ANIM "ship.pkunk.icons"
#define PKUNK_MED_MASK_PMAP_ANIM "ship.pkunk.graphics.pkunk.medium"
#define PKUNK_MICON_MASK_PMAP_ANIM "ship.pkunk.meleeicons"
#define PKUNK_SML_MASK_PMAP_ANIM "ship.pkunk.graphics.pkunk.small"
+13 -13
View File
@@ -2,19 +2,19 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define SHOFIXTI_ICON_MASK_PMAP_ANIM "ship.shofixti.icons"
#define SHOFIXTI_MICON_MASK_PMAP_ANIM "ship.shofixti.meleeicons"
#define SHOFIXTI_BIG_MASK_PMAP_ANIM "ship.shofixti.graphics.shofixti.large"
#define SHOFIXTI_MED_MASK_PMAP_ANIM "ship.shofixti.graphics.shofixti.medium"
#define SHOFIXTI_SML_MASK_PMAP_ANIM "ship.shofixti.graphics.shofixti.small"
#define DESTRUCT_BIG_MASK_ANIM "ship.shofixti.graphics.destruct.large"
#define DESTRUCT_MED_MASK_ANIM "ship.shofixti.graphics.destruct.medium"
#define DESTRUCT_SML_MASK_ANIM "ship.shofixti.graphics.destruct.small"
#define SHOFIXTI_CAPTAIN_MASK_PMAP_ANIM "ship.shofixti.graphics.captain"
#define OLDSHOF_BIG_MASK_PMAP_ANIM "ship.shofixti.graphics.oldshof.large"
#define OLDSHOF_MED_MASK_PMAP_ANIM "ship.shofixti.graphics.oldshof.medium"
#define OLDSHOF_SML_MASK_PMAP_ANIM "ship.shofixti.graphics.oldshof.small"
#define OLDSHOF_CAPTAIN_MASK_PMAP_ANIM "ship.shofixti.graphics.oldcaptain"
#define DART_BIG_MASK_PMAP_ANIM "ship.shofixti.graphics.missile.large" #define DART_BIG_MASK_PMAP_ANIM "ship.shofixti.graphics.missile.large"
#define DART_MED_MASK_PMAP_ANIM "ship.shofixti.graphics.missile.medium" #define DART_MED_MASK_PMAP_ANIM "ship.shofixti.graphics.missile.medium"
#define DART_SML_MASK_PMAP_ANIM "ship.shofixti.graphics.missile.small" #define DART_SML_MASK_PMAP_ANIM "ship.shofixti.graphics.missile.small"
#define DESTRUCT_BIG_MASK_ANIM "ship.shofixti.graphics.destruct.large"
#define DESTRUCT_MED_MASK_ANIM "ship.shofixti.graphics.destruct.medium"
#define DESTRUCT_SML_MASK_ANIM "ship.shofixti.graphics.destruct.small"
#define OLDSHOF_BIG_MASK_PMAP_ANIM "ship.shofixti.graphics.oldshof.large"
#define OLDSHOF_CAPTAIN_MASK_PMAP_ANIM "ship.shofixti.graphics.oldcaptain"
#define OLDSHOF_MED_MASK_PMAP_ANIM "ship.shofixti.graphics.oldshof.medium"
#define OLDSHOF_SML_MASK_PMAP_ANIM "ship.shofixti.graphics.oldshof.small"
#define SHOFIXTI_BIG_MASK_PMAP_ANIM "ship.shofixti.graphics.shofixti.large"
#define SHOFIXTI_CAPTAIN_MASK_PMAP_ANIM "ship.shofixti.graphics.captain"
#define SHOFIXTI_ICON_MASK_PMAP_ANIM "ship.shofixti.icons"
#define SHOFIXTI_MED_MASK_PMAP_ANIM "ship.shofixti.graphics.shofixti.medium"
#define SHOFIXTI_MICON_MASK_PMAP_ANIM "ship.shofixti.meleeicons"
#define SHOFIXTI_SML_MASK_PMAP_ANIM "ship.shofixti.graphics.shofixti.small"
+4 -4
View File
@@ -2,12 +2,12 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define SIS_ICON_MASK_PMAP_ANIM "ship.sis_ship.icons"
#define SIS_BIG_MASK_PMAP_ANIM "ship.sis_ship.graphics.sis.large"
#define SIS_MED_MASK_PMAP_ANIM "ship.sis_ship.graphics.sis.medium"
#define SIS_SML_MASK_PMAP_ANIM "ship.sis_ship.graphics.sis.small"
#define BLASTER_BIG_MASK_PMAP_ANIM "ship.sis_ship.graphics.blas.large" #define BLASTER_BIG_MASK_PMAP_ANIM "ship.sis_ship.graphics.blas.large"
#define BLASTER_MED_MASK_PMAP_ANIM "ship.sis_ship.graphics.blas.medium" #define BLASTER_MED_MASK_PMAP_ANIM "ship.sis_ship.graphics.blas.medium"
#define BLASTER_SML_MASK_PMAP_ANIM "ship.sis_ship.graphics.blas.small" #define BLASTER_SML_MASK_PMAP_ANIM "ship.sis_ship.graphics.blas.small"
#define SIS_BIG_MASK_PMAP_ANIM "ship.sis_ship.graphics.sis.large"
#define SIS_CAPTAIN_MASK_PMAP_ANIM "ship.sis_ship.graphics.captain" #define SIS_CAPTAIN_MASK_PMAP_ANIM "ship.sis_ship.graphics.captain"
#define SIS_HYPER_MASK_PMAP_ANIM "ship.sis_ship.graphics.sishyper" #define SIS_HYPER_MASK_PMAP_ANIM "ship.sis_ship.graphics.sishyper"
#define SIS_ICON_MASK_PMAP_ANIM "ship.sis_ship.icons"
#define SIS_MED_MASK_PMAP_ANIM "ship.sis_ship.graphics.sis.medium"
#define SIS_SML_MASK_PMAP_ANIM "ship.sis_ship.graphics.sis.small"
+4 -4
View File
@@ -2,9 +2,9 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define SLYLANDRO_ICON_MASK_PMAP_ANIM "ship.slylandro.icons"
#define SLYLANDRO_MICON_MASK_PMAP_ANIM "ship.slylandro.meleeicons"
#define SLYLANDRO_BIG_MASK_PMAP_ANIM "ship.slylandro.graphics.slylandr.large" #define SLYLANDRO_BIG_MASK_PMAP_ANIM "ship.slylandro.graphics.slylandr.large"
#define SLYLANDRO_MED_MASK_PMAP_ANIM "ship.slylandro.graphics.slylandr.medium"
#define SLYLANDRO_SML_MASK_PMAP_ANIM "ship.slylandro.graphics.slylandr.small"
#define SLYLANDRO_CAPTAIN_MASK_PMAP_ANIM "ship.slylandro.graphics.captain" #define SLYLANDRO_CAPTAIN_MASK_PMAP_ANIM "ship.slylandro.graphics.captain"
#define SLYLANDRO_ICON_MASK_PMAP_ANIM "ship.slylandro.icons"
#define SLYLANDRO_MED_MASK_PMAP_ANIM "ship.slylandro.graphics.slylandr.medium"
#define SLYLANDRO_MICON_MASK_PMAP_ANIM "ship.slylandro.meleeicons"
#define SLYLANDRO_SML_MASK_PMAP_ANIM "ship.slylandro.graphics.slylandr.small"
+8 -8
View File
@@ -2,15 +2,15 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define SPATHI_ICON_MASK_PMAP_ANIM "ship.spathi.icons"
#define SPATHI_MICON_MASK_PMAP_ANIM "ship.spathi.meleeicons"
#define SPATHI_BIG_MASK_PMAP_ANIM "ship.spathi.graphics.spathi.large"
#define SPATHI_MED_MASK_PMAP_ANIM "ship.spathi.graphics.spathi.medium"
#define SPATHI_SML_MASK_PMAP_ANIM "ship.spathi.graphics.spathi.small"
#define MISSILE_BIG_MASK_PMAP_ANIM "ship.spathi.graphics.missile.large"
#define MISSILE_MED_MASK_PMAP_ANIM "ship.spathi.graphics.missile.medium"
#define MISSILE_SML_MASK_PMAP_ANIM "ship.spathi.graphics.missile.small"
#define DISCRIM_BIG_MASK_PMAP_ANIM "ship.spathi.graphics.discrim.large" #define DISCRIM_BIG_MASK_PMAP_ANIM "ship.spathi.graphics.discrim.large"
#define DISCRIM_MED_MASK_PMAP_ANIM "ship.spathi.graphics.discrim.medium" #define DISCRIM_MED_MASK_PMAP_ANIM "ship.spathi.graphics.discrim.medium"
#define DISCRIM_SML_MASK_PMAP_ANIM "ship.spathi.graphics.discrim.small" #define DISCRIM_SML_MASK_PMAP_ANIM "ship.spathi.graphics.discrim.small"
#define MISSILE_BIG_MASK_PMAP_ANIM "ship.spathi.graphics.missile.large"
#define MISSILE_MED_MASK_PMAP_ANIM "ship.spathi.graphics.missile.medium"
#define MISSILE_SML_MASK_PMAP_ANIM "ship.spathi.graphics.missile.small"
#define SPATHI_BIG_MASK_PMAP_ANIM "ship.spathi.graphics.spathi.large"
#define SPATHI_CAPTAIN_MASK_PMAP_ANIM "ship.spathi.graphics.captain" #define SPATHI_CAPTAIN_MASK_PMAP_ANIM "ship.spathi.graphics.captain"
#define SPATHI_ICON_MASK_PMAP_ANIM "ship.spathi.icons"
#define SPATHI_MED_MASK_PMAP_ANIM "ship.spathi.graphics.spathi.medium"
#define SPATHI_MICON_MASK_PMAP_ANIM "ship.spathi.meleeicons"
#define SPATHI_SML_MASK_PMAP_ANIM "ship.spathi.graphics.spathi.small"
+5 -5
View File
@@ -2,12 +2,12 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define SUPOX_ICON_MASK_PMAP_ANIM "ship.supox.icons"
#define SUPOX_MICON_MASK_PMAP_ANIM "ship.supox.meleeicons"
#define SUPOX_BIG_MASK_PMAP_ANIM "ship.supox.graphics.supox.large"
#define SUPOX_MED_MASK_PMAP_ANIM "ship.supox.graphics.supox.medium"
#define SUPOX_SML_MASK_PMAP_ANIM "ship.supox.graphics.supox.small"
#define GOB_BIG_MASK_PMAP_ANIM "ship.supox.graphics.gob.large" #define GOB_BIG_MASK_PMAP_ANIM "ship.supox.graphics.gob.large"
#define GOB_MED_MASK_PMAP_ANIM "ship.supox.graphics.gob.medium" #define GOB_MED_MASK_PMAP_ANIM "ship.supox.graphics.gob.medium"
#define GOB_SML_MASK_PMAP_ANIM "ship.supox.graphics.gob.small" #define GOB_SML_MASK_PMAP_ANIM "ship.supox.graphics.gob.small"
#define SUPOX_BIG_MASK_PMAP_ANIM "ship.supox.graphics.supox.large"
#define SUPOX_CAPTAIN_MASK_PMAP_ANIM "ship.supox.graphics.captain" #define SUPOX_CAPTAIN_MASK_PMAP_ANIM "ship.supox.graphics.captain"
#define SUPOX_ICON_MASK_PMAP_ANIM "ship.supox.icons"
#define SUPOX_MED_MASK_PMAP_ANIM "ship.supox.graphics.supox.medium"
#define SUPOX_MICON_MASK_PMAP_ANIM "ship.supox.meleeicons"
#define SUPOX_SML_MASK_PMAP_ANIM "ship.supox.graphics.supox.small"
+5 -5
View File
@@ -2,12 +2,12 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define SYREEN_ICON_MASK_PMAP_ANIM "ship.syreen.icons"
#define SYREEN_MICON_MASK_PMAP_ANIM "ship.syreen.meleeicons"
#define SYREEN_BIG_MASK_PMAP_ANIM "ship.syreen.graphics.syreen.large"
#define SYREEN_MED_MASK_PMAP_ANIM "ship.syreen.graphics.syreen.medium"
#define SYREEN_SML_MASK_PMAP_ANIM "ship.syreen.graphics.syreen.small"
#define DAGGER_BIG_MASK_PMAP_ANIM "ship.syreen.graphics.dagger.large" #define DAGGER_BIG_MASK_PMAP_ANIM "ship.syreen.graphics.dagger.large"
#define DAGGER_MED_MASK_PMAP_ANIM "ship.syreen.graphics.dagger.medium" #define DAGGER_MED_MASK_PMAP_ANIM "ship.syreen.graphics.dagger.medium"
#define DAGGER_SML_MASK_PMAP_ANIM "ship.syreen.graphics.dagger.small" #define DAGGER_SML_MASK_PMAP_ANIM "ship.syreen.graphics.dagger.small"
#define SYREEN_BIG_MASK_PMAP_ANIM "ship.syreen.graphics.syreen.large"
#define SYREEN_CAPTAIN_MASK_PMAP_ANIM "ship.syreen.graphics.captain" #define SYREEN_CAPTAIN_MASK_PMAP_ANIM "ship.syreen.graphics.captain"
#define SYREEN_ICON_MASK_PMAP_ANIM "ship.syreen.icons"
#define SYREEN_MED_MASK_PMAP_ANIM "ship.syreen.graphics.syreen.medium"
#define SYREEN_MICON_MASK_PMAP_ANIM "ship.syreen.meleeicons"
#define SYREEN_SML_MASK_PMAP_ANIM "ship.syreen.graphics.syreen.small"
+5 -5
View File
@@ -2,15 +2,15 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define THRADDASH_ICON_MASK_PMAP_ANIM "ship.thraddash.icons"
#define THRADDASH_MICON_MASK_PMAP_ANIM "ship.thraddash.meleeicons"
#define THRADDASH_BIG_MASK_PMAP_ANIM "ship.thraddash.graphics.thradd.large"
#define THRADDASH_MED_MASK_PMAP_ANIM "ship.thraddash.graphics.thradd.medium"
#define THRADDASH_SML_MASK_PMAP_ANIM "ship.thraddash.graphics.thradd.small"
#define HORN_BIG_MASK_PMAP_ANIM "ship.thraddash.graphics.hor.large" #define HORN_BIG_MASK_PMAP_ANIM "ship.thraddash.graphics.hor.large"
#define HORN_MED_MASK_PMAP_ANIM "ship.thraddash.graphics.hor.medium" #define HORN_MED_MASK_PMAP_ANIM "ship.thraddash.graphics.hor.medium"
#define HORN_SML_MASK_PMAP_ANIM "ship.thraddash.graphics.hor.small" #define HORN_SML_MASK_PMAP_ANIM "ship.thraddash.graphics.hor.small"
#define NAPALM_BIG_MASK_PMAP_ANIM "ship.thraddash.graphics.nap.large" #define NAPALM_BIG_MASK_PMAP_ANIM "ship.thraddash.graphics.nap.large"
#define NAPALM_MED_MASK_PMAP_ANIM "ship.thraddash.graphics.nap.medium" #define NAPALM_MED_MASK_PMAP_ANIM "ship.thraddash.graphics.nap.medium"
#define NAPALM_SML_MASK_PMAP_ANIM "ship.thraddash.graphics.nap.small" #define NAPALM_SML_MASK_PMAP_ANIM "ship.thraddash.graphics.nap.small"
#define THRADDASH_BIG_MASK_PMAP_ANIM "ship.thraddash.graphics.thradd.large"
#define THRADDASH_CAPTAIN_MASK_PMAP_ANIM "ship.thraddash.graphics.captain" #define THRADDASH_CAPTAIN_MASK_PMAP_ANIM "ship.thraddash.graphics.captain"
#define THRADDASH_ICON_MASK_PMAP_ANIM "ship.thraddash.icons"
#define THRADDASH_MED_MASK_PMAP_ANIM "ship.thraddash.graphics.thradd.medium"
#define THRADDASH_MICON_MASK_PMAP_ANIM "ship.thraddash.meleeicons"
#define THRADDASH_SML_MASK_PMAP_ANIM "ship.thraddash.graphics.thradd.small"
+6 -6
View File
@@ -2,13 +2,13 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define UMGAH_ICON_MASK_PMAP_ANIM "ship.umgah.icons"
#define UMGAH_MICON_MASK_PMAP_ANIM "ship.umgah.meleeicons"
#define UMGAH_BIG_MASK_PMAP_ANIM "ship.umgah.graphics.umgah.large"
#define UMGAH_MED_MASK_PMAP_ANIM "ship.umgah.graphics.umgah.medium"
#define UMGAH_SML_MASK_PMAP_ANIM "ship.umgah.graphics.umgah.small"
#define SPRITZ_MASK_PMAP_ANIM "ship.umgah.graphics.spritz"
#define CONE_BIG_MASK_ANIM "ship.umgah.graphics.cone.large" #define CONE_BIG_MASK_ANIM "ship.umgah.graphics.cone.large"
#define CONE_MED_MASK_ANIM "ship.umgah.graphics.cone.medium" #define CONE_MED_MASK_ANIM "ship.umgah.graphics.cone.medium"
#define CONE_SML_MASK_ANIM "ship.umgah.graphics.cone.small" #define CONE_SML_MASK_ANIM "ship.umgah.graphics.cone.small"
#define SPRITZ_MASK_PMAP_ANIM "ship.umgah.graphics.spritz"
#define UMGAH_BIG_MASK_PMAP_ANIM "ship.umgah.graphics.umgah.large"
#define UMGAH_CAPTAIN_MASK_PMAP_ANIM "ship.umgah.graphics.captain" #define UMGAH_CAPTAIN_MASK_PMAP_ANIM "ship.umgah.graphics.captain"
#define UMGAH_ICON_MASK_PMAP_ANIM "ship.umgah.icons"
#define UMGAH_MED_MASK_PMAP_ANIM "ship.umgah.graphics.umgah.medium"
#define UMGAH_MICON_MASK_PMAP_ANIM "ship.umgah.meleeicons"
#define UMGAH_SML_MASK_PMAP_ANIM "ship.umgah.graphics.umgah.small"
+8 -8
View File
@@ -2,15 +2,15 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define URQUAN_ICON_MASK_PMAP_ANIM "ship.urquan.icons"
#define URQUAN_MICON_MASK_PMAP_ANIM "ship.urquan.meleeicons"
#define URQUAN_BIG_MASK_PMAP_ANIM "ship.urquan.graphics.urquan.large"
#define URQUAN_MED_MASK_PMAP_ANIM "ship.urquan.graphics.urquan.medium"
#define URQUAN_SML_MASK_PMAP_ANIM "ship.urquan.graphics.urquan.small"
#define FUSION_BIG_MASK_PMAP_ANIM "ship.urquan.graphics.fusion.large"
#define FUSION_MED_MASK_PMAP_ANIM "ship.urquan.graphics.fusion.medium"
#define FUSION_SML_MASK_PMAP_ANIM "ship.urquan.graphics.fusion.small"
#define FIGHTER_BIG_MASK_PMAP_ANIM "ship.urquan.graphics.fight.large" #define FIGHTER_BIG_MASK_PMAP_ANIM "ship.urquan.graphics.fight.large"
#define FIGHTER_MED_MASK_PMAP_ANIM "ship.urquan.graphics.fight.medium" #define FIGHTER_MED_MASK_PMAP_ANIM "ship.urquan.graphics.fight.medium"
#define FIGHTER_SML_MASK_PMAP_ANIM "ship.urquan.graphics.fight.small" #define FIGHTER_SML_MASK_PMAP_ANIM "ship.urquan.graphics.fight.small"
#define FUSION_BIG_MASK_PMAP_ANIM "ship.urquan.graphics.fusion.large"
#define FUSION_MED_MASK_PMAP_ANIM "ship.urquan.graphics.fusion.medium"
#define FUSION_SML_MASK_PMAP_ANIM "ship.urquan.graphics.fusion.small"
#define URQUAN_BIG_MASK_PMAP_ANIM "ship.urquan.graphics.urquan.large"
#define URQUAN_CAPTAIN_MASK_PMAP_ANIM "ship.urquan.graphics.captain" #define URQUAN_CAPTAIN_MASK_PMAP_ANIM "ship.urquan.graphics.captain"
#define URQUAN_ICON_MASK_PMAP_ANIM "ship.urquan.icons"
#define URQUAN_MED_MASK_PMAP_ANIM "ship.urquan.graphics.urquan.medium"
#define URQUAN_MICON_MASK_PMAP_ANIM "ship.urquan.meleeicons"
#define URQUAN_SML_MASK_PMAP_ANIM "ship.urquan.graphics.urquan.small"
+5 -5
View File
@@ -2,12 +2,12 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define UTWIG_ICON_MASK_PMAP_ANIM "ship.utwig.icons"
#define UTWIG_MICON_MASK_PMAP_ANIM "ship.utwig.meleeicons"
#define UTWIG_BIG_MASK_PMAP_ANIM "ship.utwig.graphics.utwig.large"
#define UTWIG_MED_MASK_PMAP_ANIM "ship.utwig.graphics.utwig.medium"
#define UTWIG_SML_MASK_PMAP_ANIM "ship.utwig.graphics.utwig.small"
#define LANCE_BIG_MASK_PMAP_ANIM "ship.utwig.graphics.lan.large" #define LANCE_BIG_MASK_PMAP_ANIM "ship.utwig.graphics.lan.large"
#define LANCE_MED_MASK_PMAP_ANIM "ship.utwig.graphics.lan.medium" #define LANCE_MED_MASK_PMAP_ANIM "ship.utwig.graphics.lan.medium"
#define LANCE_SML_MASK_PMAP_ANIM "ship.utwig.graphics.lan.small" #define LANCE_SML_MASK_PMAP_ANIM "ship.utwig.graphics.lan.small"
#define UTWIG_BIG_MASK_PMAP_ANIM "ship.utwig.graphics.utwig.large"
#define UTWIG_CAPTAIN_MASK_PMAP_ANIM "ship.utwig.graphics.captain" #define UTWIG_CAPTAIN_MASK_PMAP_ANIM "ship.utwig.graphics.captain"
#define UTWIG_ICON_MASK_PMAP_ANIM "ship.utwig.icons"
#define UTWIG_MED_MASK_PMAP_ANIM "ship.utwig.graphics.utwig.medium"
#define UTWIG_MICON_MASK_PMAP_ANIM "ship.utwig.meleeicons"
#define UTWIG_SML_MASK_PMAP_ANIM "ship.utwig.graphics.utwig.small"
+5 -5
View File
@@ -2,13 +2,13 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define VUX_ICON_MASK_PMAP_ANIM "ship.vux.icons"
#define VUX_MICON_MASK_PMAP_ANIM "ship.vux.meleeicons"
#define VUX_BIG_MASK_PMAP_ANIM "ship.vux.graphics.vux.large"
#define VUX_MED_MASK_PMAP_ANIM "ship.vux.graphics.vux.medium"
#define VUX_SML_MASK_PMAP_ANIM "ship.vux.graphics.vux.small"
#define LIMPETS_BIG_MASK_PMAP_ANIM "ship.vux.graphics.limpets.large" #define LIMPETS_BIG_MASK_PMAP_ANIM "ship.vux.graphics.limpets.large"
#define LIMPETS_MED_MASK_PMAP_ANIM "ship.vux.graphics.limpets.medium" #define LIMPETS_MED_MASK_PMAP_ANIM "ship.vux.graphics.limpets.medium"
#define LIMPETS_SML_MASK_PMAP_ANIM "ship.vux.graphics.limpets.small" #define LIMPETS_SML_MASK_PMAP_ANIM "ship.vux.graphics.limpets.small"
#define SLIME_MASK_PMAP_ANIM "ship.vux.graphics.slime" #define SLIME_MASK_PMAP_ANIM "ship.vux.graphics.slime"
#define VUX_BIG_MASK_PMAP_ANIM "ship.vux.graphics.vux.large"
#define VUX_CAPTAIN_MASK_PMAP_ANIM "ship.vux.graphics.captain" #define VUX_CAPTAIN_MASK_PMAP_ANIM "ship.vux.graphics.captain"
#define VUX_ICON_MASK_PMAP_ANIM "ship.vux.icons"
#define VUX_MED_MASK_PMAP_ANIM "ship.vux.graphics.vux.medium"
#define VUX_MICON_MASK_PMAP_ANIM "ship.vux.meleeicons"
#define VUX_SML_MASK_PMAP_ANIM "ship.vux.graphics.vux.small"
+8 -8
View File
@@ -2,15 +2,15 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define YEHAT_ICON_MASK_PMAP_ANIM "ship.yehat.icons"
#define YEHAT_MICON_MASK_PMAP_ANIM "ship.yehat.meleeicons"
#define YEHAT_BIG_MASK_PMAP_ANIM "ship.yehat.graphics.yehat.large"
#define YEHAT_MED_MASK_PMAP_ANIM "ship.yehat.graphics.yehat.medium"
#define YEHAT_SML_MASK_PMAP_ANIM "ship.yehat.graphics.yehat.small"
#define YEHAT_CANNON_BIG_MASK_PMAP_ANIM "ship.yehat.graphics.missile.large"
#define YEHAT_CANNON_MED_MASK_PMAP_ANIM "ship.yehat.graphics.missile.medium"
#define YEHAT_CANNON_SML_MASK_PMAP_ANIM "ship.yehat.graphics.missile.small"
#define SHIELD_BIG_MASK_ANIM "ship.yehat.graphics.shield.large" #define SHIELD_BIG_MASK_ANIM "ship.yehat.graphics.shield.large"
#define SHIELD_MED_MASK_ANIM "ship.yehat.graphics.shield.medium" #define SHIELD_MED_MASK_ANIM "ship.yehat.graphics.shield.medium"
#define SHIELD_SML_MASK_ANIM "ship.yehat.graphics.shield.small" #define SHIELD_SML_MASK_ANIM "ship.yehat.graphics.shield.small"
#define YEHAT_BIG_MASK_PMAP_ANIM "ship.yehat.graphics.yehat.large"
#define YEHAT_CANNON_BIG_MASK_PMAP_ANIM "ship.yehat.graphics.missile.large"
#define YEHAT_CANNON_MED_MASK_PMAP_ANIM "ship.yehat.graphics.missile.medium"
#define YEHAT_CANNON_SML_MASK_PMAP_ANIM "ship.yehat.graphics.missile.small"
#define YEHAT_CAPTAIN_MASK_PMAP_ANIM "ship.yehat.graphics.captain" #define YEHAT_CAPTAIN_MASK_PMAP_ANIM "ship.yehat.graphics.captain"
#define YEHAT_ICON_MASK_PMAP_ANIM "ship.yehat.icons"
#define YEHAT_MED_MASK_PMAP_ANIM "ship.yehat.graphics.yehat.medium"
#define YEHAT_MICON_MASK_PMAP_ANIM "ship.yehat.meleeicons"
#define YEHAT_SML_MASK_PMAP_ANIM "ship.yehat.graphics.yehat.small"
+5 -5
View File
@@ -2,15 +2,15 @@
should not be edited directly. Modify the master resource list should not be edited directly. Modify the master resource list
instead and regenerate. */ instead and regenerate. */
#define ZOQFOTPIK_ICON_MASK_PMAP_ANIM "ship.zoqfotpik.icons"
#define ZOQFOTPIK_MICON_MASK_PMAP_ANIM "ship.zoqfotpik.meleeicons"
#define ZOQFOTPIK_BIG_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.zoqfot.large"
#define ZOQFOTPIK_MED_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.zoqfot.medium"
#define ZOQFOTPIK_SML_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.zoqfot.small"
#define SPIT_BIG_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.spit.large" #define SPIT_BIG_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.spit.large"
#define SPIT_MED_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.spit.medium" #define SPIT_MED_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.spit.medium"
#define SPIT_SML_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.spit.small" #define SPIT_SML_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.spit.small"
#define STINGER_BIG_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.sti.large" #define STINGER_BIG_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.sti.large"
#define STINGER_MED_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.sti.medium" #define STINGER_MED_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.sti.medium"
#define STINGER_SML_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.sti.small" #define STINGER_SML_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.sti.small"
#define ZOQFOTPIK_BIG_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.zoqfot.large"
#define ZOQFOTPIK_CAPTAIN_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.captain" #define ZOQFOTPIK_CAPTAIN_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.captain"
#define ZOQFOTPIK_ICON_MASK_PMAP_ANIM "ship.zoqfotpik.icons"
#define ZOQFOTPIK_MED_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.zoqfot.medium"
#define ZOQFOTPIK_MICON_MASK_PMAP_ANIM "ship.zoqfotpik.meleeicons"
#define ZOQFOTPIK_SML_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.zoqfot.small"
+10 -65
View File
@@ -9,29 +9,16 @@ contentdir = os.path.join (basedir, "content")
srcdir = os.path.join (basedir, "src") srcdir = os.path.join (basedir, "src")
class ResEntry(object): class ResEntry(object):
def __init__(self, line_num, hfile, ls2file, constant, pkg, inst, typ, res_id, res_type, res_file): def __init__(self, line_num, constant, res_id, hfile, res_type, res_file):
self.line_num = line_num self.line_num = line_num
self.hfile = hfile self.hfile = hfile
self.ls2file = ls2file
self.constant = constant self.constant = constant
self.package = int(pkg)
self.instance = int(inst)
self.int_type = int(typ)
self.res_id = res_id self.res_id = res_id
self.res_type = res_type self.res_type = res_type
self.res_file = res_file self.res_file = res_file
def res_number(self):
return res_encode (self.package, self.instance, self.int_type)
def csv_line(self): def csv_line(self):
return "%s,%s,%s,%d,%d,%d,%s,%s,%s" % (self.hfile, self.ls2file, self.constant, return "%s,%s,%s,%s,%s" % (self.constant,self.res_id, self.hfile,
self.package, self.instance, self.int_type, self.res_type, self.res_file)
self.res_id, self.res_type, self.res_file)
def res_encode(pkg, instance, t):
return ((pkg & 0x7ff) << 21) | ((instance & 0x1FFF) << 8) | (t & 0xFF)
def res_encode_str (pkg, instance, t):
return "0x%08xL" % res_encode (pkg, instance, t)
def read_csv (fname="resources.csv"): def read_csv (fname="resources.csv"):
result = [] result = []
@@ -45,11 +32,8 @@ def read_csv (fname="resources.csv"):
line = line.strip() line = line.strip()
if len(line) > 0: if len(line) > 0:
data = [x.strip() for x in line.split (',')] data = [x.strip() for x in line.split (',')]
if len(data) == 9: if len(data) == 5:
try: result.append(ResEntry(linenum, *data))
result.append(ResEntry(linenum, *data))
except ValueError:
print>>sys.stderr, "Warning: Noninteger P/I/T in line %d" % linenum
else: else:
print>>sys.strderr, "Warning: Incorrect number of fields in line %d" % linenum print>>sys.strderr, "Warning: Incorrect number of fields in line %d" % linenum
return result return result
@@ -62,23 +46,6 @@ def get_headers(l):
names.sort() names.sort()
return names return names
def get_resfiles(l):
result = {}
for res in l:
result[res.ls2file]=True
names = result.keys()
names.sort()
return names
def ls2_text(index, vals):
result = []
in_index = [x for x in vals if x.ls2file == index]
in_index.sort(lambda x,y: x.res_number() - y.res_number())
for entry in in_index:
result.append("%3d %3d %3d %s" % (entry.package, entry.instance, entry.int_type, entry.res_id))
return result
def rmp_text(vals): def rmp_text(vals):
result = [] result = []
in_index = [x for x in vals if x.res_file != "--"] in_index = [x for x in vals if x.res_file != "--"]
@@ -91,24 +58,13 @@ def rmp_text(vals):
result.append("%s = UNKNOWNRES:%s" % (entry.res_id, entry.res_file)) result.append("%s = UNKNOWNRES:%s" % (entry.res_id, entry.res_file))
return result return result
def h_integer_text(header, vals): def header_text(header, vals):
result = ["/* This file was auto-generated by the gen_resfiles utility and", result = ["/* This file was auto-generated by the gen_resfiles utility and",
" should not be edited directly. Modify the master resource list", " should not be edited directly. Modify the master resource list",
" instead and regenerate. */", " instead and regenerate. */",
""] ""]
in_index = [x for x in vals if x.hfile == header] in_index = [x for x in vals if x.hfile == header]
in_index.sort(lambda x,y: x.res_number() - y.res_number()) in_index.sort(lambda x,y: cmp(x.constant, y.constant))
for entry in in_index:
result.append("#define %s %s" % (entry.constant, res_encode_str(entry.package, entry.instance, entry.int_type)))
return result
def h_string_text(header, vals):
result = ["/* This file was auto-generated by the gen_resfiles utility and",
" should not be edited directly. Modify the master resource list",
" instead and regenerate. */",
""]
in_index = [x for x in vals if x.hfile == header]
in_index.sort(lambda x,y: x.res_number() - y.res_number())
for entry in in_index: for entry in in_index:
result.append("#define %s \"%s\"" % (entry.constant, entry.res_id)) result.append("#define %s \"%s\"" % (entry.constant, entry.res_id))
return result return result
@@ -123,25 +79,14 @@ def dump_values(data):
print>>outfile, l print>>outfile, l
outfile.close() outfile.close()
def collate_integer_data(data): def collate_data(data):
result = {}
headers = get_headers(data)
indices = get_resfiles(data)
for index in indices:
result[os.path.join(contentdir, *(index.split('/')))] = ls2_text(index, data)
for header in headers:
result[os.path.join(srcdir, *(header.split('/')))] = h_integer_text(header, data)
result[os.path.join(contentdir, 'uqm.rmp')] = rmp_text(data)
return result
def collate_string_data(data):
result = {} result = {}
headers = get_headers(data) headers = get_headers(data)
for header in headers: for header in headers:
result[os.path.join(srcdir, *(header.split('/')))] = h_string_text(header, data) result[os.path.join(srcdir, *(header.split('/')))] = header_text(header, data)
result[os.path.join(contentdir, 'uqm.rmp')] = rmp_text(data) result[os.path.join(contentdir, 'uqm.rmp')] = rmp_text(data)
return result return result
if __name__=="__main__": if __name__=="__main__":
data = collate_string_data(read_csv()) data = collate_data(read_csv())
dump_values(data) dump_values(data)
+28 -62
View File
@@ -8,24 +8,31 @@ basedir = os.path.join(os.path.pardir, os.path.pardir, "sc2")
contentdir = os.path.join (basedir, "content") contentdir = os.path.join (basedir, "content")
srcdir = os.path.join (basedir, "src") srcdir = os.path.join (basedir, "src")
res_types=['--',
'GFXRES',
'FONTRES',
'MUSICRES',
'SNDRES',
'STRTAB',
'BINTAB',
'CONVERSATION',
'SHIP']
class ResEntry(object): class ResEntry(object):
def __init__(self, line_num, hfile, ls2file, constant, pkg, inst, typ, res_id, res_type, res_file): def __init__(self, line_num, constant, pkg, inst, hfile, res_type, res_file):
self.line_num = line_num self.line_num = line_num
self.hfile = hfile self.hfile = hfile
self.ls2file = ls2file
self.constant = constant self.constant = constant
self.package = int(pkg) self.package = int(pkg)
self.instance = int(inst) self.instance = int(inst)
self.int_type = int(typ) self.int_type = res_types.index(res_type)
self.res_id = res_id
self.res_type = res_type self.res_type = res_type
self.res_file = res_file self.res_file = res_file
def res_number(self): def res_number(self):
return res_encode (self.package, self.instance, self.int_type) return res_encode (self.package, self.instance, self.int_type)
def csv_line(self): def csv_line(self):
return "%s,%s,%s,%d,%d,%d,%s,%s,%s" % (self.hfile, self.ls2file, self.constant, return "%s,%d,%d,%s,%s,%s" % (self.constant,self.package, self.instance,
self.package, self.instance, self.int_type, self.hfile, self.res_type, self.res_file)
self.res_id, self.res_type, self.res_file)
def res_encode(pkg, instance, t): def res_encode(pkg, instance, t):
return ((pkg & 0x7ff) << 21) | ((instance & 0x1FFF) << 8) | (t & 0xFF) return ((pkg & 0x7ff) << 21) | ((instance & 0x1FFF) << 8) | (t & 0xFF)
@@ -45,11 +52,11 @@ def read_csv (fname="resources.csv"):
line = line.strip() line = line.strip()
if len(line) > 0: if len(line) > 0:
data = [x.strip() for x in line.split (',')] data = [x.strip() for x in line.split (',')]
if len(data) == 9: if len(data) == 6:
try: try:
result.append(ResEntry(linenum, *data)) result.append(ResEntry(linenum, *data))
except ValueError: except ValueError:
print>>sys.stderr, "Warning: Noninteger P/I/T in line %d" % linenum print>>sys.stderr, "Warning: Illegal P/I/T in line %d" % linenum
else: else:
print>>sys.strderr, "Warning: Incorrect number of fields in line %d" % linenum print>>sys.strderr, "Warning: Incorrect number of fields in line %d" % linenum
return result return result
@@ -62,36 +69,15 @@ def get_headers(l):
names.sort() names.sort()
return names return names
def lst_text(vals):
def get_resfiles(l):
result = {}
for res in l:
result[res.ls2file]=True
names = result.keys()
names.sort()
return names
def ls2_text(index, vals):
result = [] result = []
in_index = [x for x in vals if x.ls2file == index] in_index = [x for x in vals]
in_index.sort(lambda x,y: x.res_number() - y.res_number()) in_index.sort(lambda x,y: x.res_number() - y.res_number())
for entry in in_index: for entry in in_index:
result.append("%3d %3d %3d %s" % (entry.package, entry.instance, entry.int_type, entry.res_id)) result.append("%3d %3d %3d %s" % (entry.package, entry.instance, entry.int_type, entry.res_file))
return result return result
def rmp_text(vals): def header_text(header, vals):
result = []
in_index = [x for x in vals if x.res_file != "--"]
in_index.sort(lambda x,y: cmp(x.res_id, y.res_id))
for entry in in_index:
if x.res_type != "--":
result.append("%s = %s:%s" % (entry.res_id, entry.res_type, entry.res_file))
else:
print>>sys.stderr, "Warning: Resource ID %s (on line %d) has no associated type" % (entry.line_num, entry.res_id)
result.append("%s = UNKNOWNRES:%s" % (entry.res_id, entry.res_file))
return result
def h_integer_text(header, vals):
result = ["/* This file was auto-generated by the gen_resfiles utility and", result = ["/* This file was auto-generated by the gen_resfiles utility and",
" should not be edited directly. Modify the master resource list", " should not be edited directly. Modify the master resource list",
" instead and regenerate. */", " instead and regenerate. */",
@@ -102,17 +88,6 @@ def h_integer_text(header, vals):
result.append("#define %s %s" % (entry.constant, res_encode_str(entry.package, entry.instance, entry.int_type))) result.append("#define %s %s" % (entry.constant, res_encode_str(entry.package, entry.instance, entry.int_type)))
return result return result
def h_string_text(header, vals):
result = ["/* This file was auto-generated by the gen_resfiles utility and",
" should not be edited directly. Modify the master resource list",
" instead and regenerate. */",
""]
in_index = [x for x in vals if x.hfile == header]
in_index.sort(lambda x,y: x.res_number() - y.res_number())
for entry in in_index:
result.append("#define %s \"%s\"" % (entry.constant, entry.res_id))
return result
def dump_values(data): def dump_values(data):
keys = data.keys() keys = data.keys()
keys.sort() keys.sort()
@@ -123,25 +98,16 @@ def dump_values(data):
print>>outfile, l print>>outfile, l
outfile.close() outfile.close()
def collate_integer_data(data): def collate_data(data):
result = {} result = {}
headers = get_headers(data) headers = get_headers(data)
indices = get_resfiles(data) result[os.path.join(contentdir, 'uqm.lst')] = lst_text(data)
for index in indices:
result[os.path.join(contentdir, *(index.split('/')))] = ls2_text(index, data)
for header in headers: for header in headers:
result[os.path.join(srcdir, *(header.split('/')))] = h_integer_text(header, data) result[os.path.join(srcdir, *(header.split('/')))] = header_text(header, data)
result[os.path.join(contentdir, 'uqm.rmp')] = rmp_text(data)
return result return result
def collate_string_data(data): # The actual C infrastructure isn't here for this anymore, so we don't actually call dump_values.
result = {} if __name__=='__main__':
headers = get_headers(data) data = collate_data(read_csv('int_res.csv'))
for header in headers: for x in data[os.path.join(contentdir, 'uqm.lst')]:
result[os.path.join(srcdir, *(header.split('/')))] = h_string_text(header, data) print x
result[os.path.join(contentdir, 'uqm.rmp')] = rmp_text(data)
return result
if __name__=="__main__":
data = collate_string_data(read_csv())
dump_values(data)
+973
View File
@@ -0,0 +1,973 @@
# This index is really only here for historical reasons, now.
# As the resources we use evolve, these values will diverge ever further.
HYPERSPACE_MUSIC,38,0,sc2code/imusicre.h,MUSICRES,base/nav/hyper.mod
QUASISPACE_MUSIC,39,1,sc2code/imusicre.h,MUSICRES,base/nav/quasispace.mod
IP_MUSIC,159,2,sc2code/imusicre.h,MUSICRES,base/nav/space.mod
ORBIT1_MUSIC,160,3,sc2code/imusicre.h,MUSICRES,base/nav/orbit.mod
ORBIT2_MUSIC,160,4,sc2code/imusicre.h,MUSICRES,base/nav/orbit.mod
ORBIT3_MUSIC,160,5,sc2code/imusicre.h,MUSICRES,base/nav/orbit.mod
ORBIT4_MUSIC,160,6,sc2code/imusicre.h,MUSICRES,base/nav/orbit.mod
ORBIT5_MUSIC,160,7,sc2code/imusicre.h,MUSICRES,base/nav/orbit.mod
REDALERT_MUSIC,163,8,sc2code/imusicre.h,MUSICRES,base/ui/redalert.mod
OUTFIT_MUSIC,196,9,sc2code/imusicre.h,MUSICRES,base/ui/outfit.mod
SHIPYARD_MUSIC,198,10,sc2code/imusicre.h,MUSICRES,base/ui/shipyard.mod
STARBASE_MUSIC,199,11,sc2code/imusicre.h,MUSICRES,base/ui/starbase.mod
BATTLE_MUSIC,261,12,sc2code/imusicre.h,MUSICRES,base/battle/battle.mod
CREDITS_MUSIC,282,13,sc2code/imusicre.h,--,--
MELEE_MUSIC,161,14,sc2code/imusicre.h,--,--
MAINMENU_MUSIC,193,15,sc2code/imusicre.h,--,--
STARCON_FONT,28,0,sc2code/ifontres.h,FONTRES,base/fonts/starcon.fon
TINY_FONT,28,1,sc2code/ifontres.h,FONTRES,base/fonts/tiny.fon
MICRO_FONT,30,2,sc2code/ifontres.h,FONTRES,base/fonts/micro.fon
LANDER_FONT,138,3,sc2code/ifontres.h,FONTRES,base/fonts/lander.fon
PLAYER_FONT,189,4,sc2code/ifontres.h,FONTRES,base/fonts/player.fon
PT13AA_FONT,288,5,sc2code/ifontres.h,FONTRES,base/fonts/pt13.fon
PT17AA_FONT,288,6,sc2code/ifontres.h,FONTRES,base/fonts/pt17.fon
PT45AA_FONT,288,7,sc2code/ifontres.h,FONTRES,base/fonts/pt45.fon
STARCON_COLOR_MAP,1,0,sc2code/istrtab.h,BINTAB,base/scclrtab.ct
STARCON_GAME_STRINGS,28,1,sc2code/istrtab.h,STRTAB,base/gamestrings.txt
HYPER_COLOR_TAB,36,2,sc2code/istrtab.h,BINTAB,base/nav/hyperpal.ct
ARISPACE_COLOR_TAB,37,3,sc2code/istrtab.h,BINTAB,base/nav/quasispace.ct
ORBPLAN_COLOR_MAP,41,4,sc2code/istrtab.h,BINTAB,base/nav/orbplan.ct
OOLITE_COLOR_TAB,72,5,sc2code/istrtab.h,BINTAB,base/planets/str_cts_.ct
OOLITE_XLAT_TAB,72,6,sc2code/istrtab.h,BINTAB,base/planets/mtl2xlts.xlt
YTTRIC_COLOR_TAB,73,5,sc2code/istrtab.h,BINTAB,base/planets/wr1_cts_.ct
YTTRIC_XLAT_TAB,73,6,sc2code/istrtab.h,BINTAB,base/planets/rst_xlts.xlt
QUASI_DEGENERATE_COLOR_TAB,74,5,sc2code/istrtab.h,BINTAB,base/planets/co2_cts_.ct
QUASI_DEGENERATE_XLAT_TAB,74,6,sc2code/istrtab.h,BINTAB,base/planets/bnd_xlts.xlt
LANTHANIDE_COLOR_TAB,75,5,sc2code/istrtab.h,BINTAB,base/planets/ylgscts_.ct
LANTHANIDE_XLAT_TAB,75,6,sc2code/istrtab.h,BINTAB,base/planets/rst_xlts.xlt
TREASURE_COLOR_TAB,76,5,sc2code/istrtab.h,BINTAB,base/planets/lll_cts_.ct
TREASURE_XLAT_TAB,76,6,sc2code/istrtab.h,BINTAB,base/planets/bnd_xlts.xlt
UREA_COLOR_TAB,77,5,sc2code/istrtab.h,BINTAB,base/planets/ylgscts_.ct
UREA_XLAT_TAB,77,6,sc2code/istrtab.h,BINTAB,base/planets/den_xlts.xlt
METAL_COLOR_TAB,78,5,sc2code/istrtab.h,BINTAB,base/planets/mtl_cts_.ct
METAL_XLAT_TAB,78,6,sc2code/istrtab.h,BINTAB,base/planets/mtl1xlts.xlt
RADIOACTIVE_COLOR_TAB,79,5,sc2code/istrtab.h,BINTAB,base/planets/rrr_cts_.ct
RADIOACTIVE_XLAT_TAB,79,6,sc2code/istrtab.h,BINTAB,base/planets/rst_xlts.xlt
OPALESCENT_COLOR_TAB,80,5,sc2code/istrtab.h,BINTAB,base/planets/ice_cts_.ct
OPALESCENT_XLAT_TAB,80,6,sc2code/istrtab.h,BINTAB,base/planets/ice_xlts.xlt
CYANIC_COLOR_TAB,81,5,sc2code/istrtab.h,BINTAB,base/planets/qqq_cts_.ct
CYANIC_XLAT_TAB,81,6,sc2code/istrtab.h,BINTAB,base/planets/bnd_xlts.xlt
ACID_COLOR_TAB,82,5,sc2code/istrtab.h,BINTAB,base/planets/rst_cts_.ct
ACID_XLAT_TAB,82,6,sc2code/istrtab.h,BINTAB,base/planets/rst_xlts.xlt
ALKALI_COLOR_TAB,83,5,sc2code/istrtab.h,BINTAB,base/planets/bnd_cts_.ct
ALKALI_XLAT_TAB,83,6,sc2code/istrtab.h,BINTAB,base/planets/rst_xlts.xlt
HALIDE_COLOR_TAB,84,5,sc2code/istrtab.h,BINTAB,base/planets/rdx_cts_.ct
HALIDE_XLAT_TAB,84,6,sc2code/istrtab.h,BINTAB,base/planets/rst_xlts.xlt
GREEN_COLOR_TAB,85,5,sc2code/istrtab.h,BINTAB,base/planets/nnn_cts_.ct
GREEN_XLAT_TAB,85,6,sc2code/istrtab.h,BINTAB,base/planets/den_xlts.xlt
COPPER_COLOR_TAB,86,5,sc2code/istrtab.h,BINTAB,base/planets/qqq_cts_.ct
COPPER_XLAT_TAB,86,6,sc2code/istrtab.h,BINTAB,base/planets/bnd_xlts.xlt
CARBIDE_COLOR_TAB,87,5,sc2code/istrtab.h,BINTAB,base/planets/rrr_cts_.ct
CARBIDE_XLAT_TAB,87,6,sc2code/istrtab.h,BINTAB,base/planets/ice_xlts.xlt
ULTRAMARINE_COLOR_TAB,88,5,sc2code/istrtab.h,BINTAB,base/planets/den_cts_.ct
ULTRAMARINE_XLAT_TAB,88,6,sc2code/istrtab.h,BINTAB,base/planets/den_xlts.xlt
NOBLE_COLOR_TAB,89,5,sc2code/istrtab.h,BINTAB,base/planets/blgscts_.ct
NOBLE_XLAT_TAB,89,6,sc2code/istrtab.h,BINTAB,base/planets/rst_xlts.xlt
AZURE_COLOR_TAB,90,5,sc2code/istrtab.h,BINTAB,base/planets/www_cts_.ct
AZURE_XLAT_TAB,90,6,sc2code/istrtab.h,BINTAB,base/planets/den_xlts.xlt
CHONDRITE_COLOR_TAB,91,5,sc2code/istrtab.h,BINTAB,base/planets/grv_cts_.ct
CHONDRITE_XLAT_TAB,91,6,sc2code/istrtab.h,BINTAB,base/planets/grv_xlts.xlt
PURPLE_COLOR_TAB,92,5,sc2code/istrtab.h,BINTAB,base/planets/vigscts_.ct
PURPLE_XLAT_TAB,92,6,sc2code/istrtab.h,BINTAB,base/planets/den_xlts.xlt
SUPER_DENSE_COLOR_TAB,93,5,sc2code/istrtab.h,BINTAB,base/planets/kkk_cts_.ct
SUPER_DENSE_XLAT_TAB,93,6,sc2code/istrtab.h,BINTAB,base/planets/bnd_xlts.xlt
PELLUCID_COLOR_TAB,94,5,sc2code/istrtab.h,BINTAB,base/planets/prgscts_.ct
PELLUCID_XLAT_TAB,94,6,sc2code/istrtab.h,BINTAB,base/planets/ice_xlts.xlt
DUST_COLOR_TAB,95,5,sc2code/istrtab.h,BINTAB,base/planets/dst_cts_.ct
DUST_XLAT_TAB,95,6,sc2code/istrtab.h,BINTAB,base/planets/rst_xlts.xlt
CRIMSON_COLOR_TAB,96,5,sc2code/istrtab.h,BINTAB,base/planets/dst_cts_.ct
CRIMSON_XLAT_TAB,96,6,sc2code/istrtab.h,BINTAB,base/planets/den_xlts.xlt
CIMMERIAN_COLOR_TAB,97,5,sc2code/istrtab.h,BINTAB,base/planets/jjj_cts_.ct
CIMMERIAN_XLAT_TAB,97,6,sc2code/istrtab.h,BINTAB,base/planets/bnd_xlts.xlt
INFRARED_COLOR_TAB,98,5,sc2code/istrtab.h,BINTAB,base/planets/dst_cts_.ct
INFRARED_XLAT_TAB,98,6,sc2code/istrtab.h,BINTAB,base/planets/ice_xlts.xlt
SELENIC_COLOR_TAB,99,5,sc2code/istrtab.h,BINTAB,base/planets/lit_cts_.ct
SELENIC_XLAT_TAB,99,6,sc2code/istrtab.h,BINTAB,base/planets/den_xlts.xlt
AURIC_COLOR_TAB,100,5,sc2code/istrtab.h,BINTAB,base/planets/ylgscts_.ct
AURIC_XLAT_TAB,100,6,sc2code/istrtab.h,BINTAB,base/planets/bnd_xlts.xlt
FLUORESCENT_COLOR_TAB,101,5,sc2code/istrtab.h,BINTAB,base/planets/vigscts_.ct
FLUORESCENT_XLAT_TAB,101,6,sc2code/istrtab.h,BINTAB,base/planets/ice_xlts.xlt
ULTRAVIOLET_COLOR_TAB,102,5,sc2code/istrtab.h,BINTAB,base/planets/vigscts_.ct
ULTRAVIOLET_XLAT_TAB,102,6,sc2code/istrtab.h,BINTAB,base/planets/rst_xlts.xlt
PLUTONIC_COLOR_TAB,103,5,sc2code/istrtab.h,BINTAB,base/planets/orgscts_.ct
PLUTONIC_XLAT_TAB,103,6,sc2code/istrtab.h,BINTAB,base/planets/rst_xlts.xlt
RAINBOW_COLOR_TAB,104,5,sc2code/istrtab.h,BINTAB,base/planets/rai_cts_.ct
RAINBOW_XLAT_TAB,104,6,sc2code/istrtab.h,BINTAB,base/planets/rai_xlts.xlt
SHATTERED_COLOR_TAB,105,5,sc2code/istrtab.h,BINTAB,base/planets/hel_cts_.ct
SHATTERED_XLAT_TAB,105,6,sc2code/istrtab.h,BINTAB,base/planets/hel_xlts.xlt
SAPPHIRE_COLOR_TAB,106,5,sc2code/istrtab.h,BINTAB,base/planets/cry_cts_.ct
SAPPHIRE_XLAT_TAB,106,6,sc2code/istrtab.h,BINTAB,base/planets/cry_xlts.xlt
ORGANIC_COLOR_TAB,107,5,sc2code/istrtab.h,BINTAB,base/planets/bnd_cts_.ct
ORGANIC_XLAT_TAB,107,6,sc2code/istrtab.h,BINTAB,base/planets/bnd_xlts.xlt
XENOLITHIC_COLOR_TAB,108,5,sc2code/istrtab.h,BINTAB,base/planets/cygscts_.ct
XENOLITHIC_XLAT_TAB,108,6,sc2code/istrtab.h,BINTAB,base/planets/ice_xlts.xlt
REDUX_COLOR_TAB,109,5,sc2code/istrtab.h,BINTAB,base/planets/rdx_cts_.ct
REDUX_XLAT_TAB,109,6,sc2code/istrtab.h,BINTAB,base/planets/rdx1xlts.xlt
PRIMORDIAL_COLOR_TAB,110,5,sc2code/istrtab.h,BINTAB,base/planets/co2_cts_.ct
PRIMORDIAL_XLAT_TAB,110,6,sc2code/istrtab.h,BINTAB,base/planets/rst_xlts.xlt
EMERALD_COLOR_TAB,111,5,sc2code/istrtab.h,BINTAB,base/planets/eme_cts_.ct
EMERALD_XLAT_TAB,111,6,sc2code/istrtab.h,BINTAB,base/planets/cry_xlts.xlt
CHLORINE_COLOR_TAB,112,5,sc2code/istrtab.h,BINTAB,base/planets/rst_cts_.ct
CHLORINE_XLAT_TAB,112,6,sc2code/istrtab.h,BINTAB,base/planets/h2o_xlts.xlt
MAGNETIC_COLOR_TAB,113,5,sc2code/istrtab.h,BINTAB,base/planets/rdx_cts_.ct
MAGNETIC_XLAT_TAB,113,6,sc2code/istrtab.h,BINTAB,base/planets/ice_xlts.xlt
WATER_COLOR_TAB,114,5,sc2code/istrtab.h,BINTAB,base/planets/h2o_cts_.ct
WATER_XLAT_TAB,114,6,sc2code/istrtab.h,BINTAB,base/planets/h2o_xlts.xlt
TELLURIC_COLOR_TAB,115,5,sc2code/istrtab.h,BINTAB,base/planets/h2o_cts_.ct
TELLURIC_XLAT_TAB,115,6,sc2code/istrtab.h,BINTAB,base/planets/rst_xlts.xlt
HYDROCARBON_COLOR_TAB,116,5,sc2code/istrtab.h,BINTAB,base/planets/www_cts_.ct
HYDROCARBON_XLAT_TAB,116,6,sc2code/istrtab.h,BINTAB,base/planets/bnd_xlts.xlt
IODINE_COLOR_TAB,117,5,sc2code/istrtab.h,BINTAB,base/planets/co2_cts_.ct
IODINE_XLAT_TAB,117,6,sc2code/istrtab.h,BINTAB,base/planets/den_xlts.xlt
VINYLOGOUS_COLOR_TAB,118,5,sc2code/istrtab.h,BINTAB,base/planets/wr1_cts_.ct
VINYLOGOUS_XLAT_TAB,118,6,sc2code/istrtab.h,BINTAB,base/planets/ice_xlts.xlt
RUBY_COLOR_TAB,119,5,sc2code/istrtab.h,BINTAB,base/planets/rub_cts_.ct
RUBY_XLAT_TAB,119,6,sc2code/istrtab.h,BINTAB,base/planets/cry_xlts.xlt
MAGMA_COLOR_TAB,120,5,sc2code/istrtab.h,BINTAB,base/planets/rrr_cts_.ct
MAGMA_XLAT_TAB,120,6,sc2code/istrtab.h,BINTAB,base/planets/bnd_xlts.xlt
MAROON_COLOR_TAB,121,5,sc2code/istrtab.h,BINTAB,base/planets/bbb_cts_.ct
MAROON_XLAT_TAB,121,6,sc2code/istrtab.h,BINTAB,base/planets/den_xlts.xlt
BLU_GAS_COLOR_TAB,122,5,sc2code/istrtab.h,BINTAB,base/planets/bluegasgiant.ct
BLU_GAS_XLAT_TAB,122,6,sc2code/istrtab.h,BINTAB,base/planets/gasgiant.xlt
CYA_GAS_COLOR_TAB,123,5,sc2code/istrtab.h,BINTAB,base/planets/cyangasgiant.ct
CYA_GAS_XLAT_TAB,123,6,sc2code/istrtab.h,BINTAB,base/planets/gasgiant.xlt
GRN_GAS_COLOR_TAB,124,5,sc2code/istrtab.h,BINTAB,base/planets/greengasgiant.ct
GRN_GAS_XLAT_TAB,124,6,sc2code/istrtab.h,BINTAB,base/planets/gasgiant.xlt
GRY_GAS_COLOR_TAB,125,5,sc2code/istrtab.h,BINTAB,base/planets/greygasgiant.ct
GRY_GAS_XLAT_TAB,125,6,sc2code/istrtab.h,BINTAB,base/planets/gasgiant.xlt
ORA_GAS_COLOR_TAB,126,5,sc2code/istrtab.h,BINTAB,base/planets/orangegasgiant.ct
ORA_GAS_XLAT_TAB,126,6,sc2code/istrtab.h,BINTAB,base/planets/gasgiant.xlt
PUR_GAS_COLOR_TAB,127,5,sc2code/istrtab.h,BINTAB,base/planets/purplegasgiant.ct
PUR_GAS_XLAT_TAB,127,6,sc2code/istrtab.h,BINTAB,base/planets/gasgiant.xlt
RED_GAS_COLOR_TAB,128,5,sc2code/istrtab.h,BINTAB,base/planets/redgasgiant.ct
RED_GAS_XLAT_TAB,128,6,sc2code/istrtab.h,BINTAB,base/planets/gasgiant.xlt
VIO_GAS_COLOR_TAB,129,5,sc2code/istrtab.h,BINTAB,base/planets/violetgasgiant.ct
VIO_GAS_XLAT_TAB,129,6,sc2code/istrtab.h,BINTAB,base/planets/gasgiant.xlt
YEL_GAS_COLOR_TAB,130,5,sc2code/istrtab.h,BINTAB,base/planets/yellowgasgiant.ct
YEL_GAS_XLAT_TAB,130,6,sc2code/istrtab.h,BINTAB,base/planets/gasgiant.xlt
MOONBASE_STRTAB,139,77,sc2code/istrtab.h,STRTAB,base/lander/energy/moonbase.txt
MAIDENS_STRTAB,140,78,sc2code/istrtab.h,STRTAB,base/lander/energy/maidens.txt
CHMMR_BASE_STRTAB,141,79,sc2code/istrtab.h,STRTAB,base/lander/energy/chmmrbase.txt
AQUA_STRTAB,142,80,sc2code/istrtab.h,STRTAB,base/lander/energy/aquahelix.txt
BURV_BCS_STRTAB,143,81,sc2code/istrtab.h,STRTAB,base/lander/energy/burvixcaster.txt
TAALO_DEVICE_STRTAB,144,82,sc2code/istrtab.h,STRTAB,base/lander/energy/taalodevice.txt
SUN_DEVICE_STRTAB,145,83,sc2code/istrtab.h,STRTAB,base/lander/energy/sundevice.txt
VAULT_STRTAB,146,84,sc2code/istrtab.h,STRTAB,base/lander/energy/syreenvault.txt
WRECK_STRTAB,147,85,sc2code/istrtab.h,STRTAB,base/lander/energy/urquanwreck.txt
BOMB_STRTAB,148,86,sc2code/istrtab.h,STRTAB,base/lander/energy/utwigbomb.txt
BEAST_STRTAB,149,87,sc2code/istrtab.h,STRTAB,base/lander/bio/vuxbeast.txt
EGG_CASE_STRTAB,150,88,sc2code/istrtab.h,STRTAB,base/lander/energy/eggcase.txt
SPAPLUTO_STRTAB,151,89,sc2code/istrtab.h,STRTAB,base/lander/energy/fwiffo.txt
BURV_RUINS_STRTAB,152,90,sc2code/istrtab.h,STRTAB,base/lander/energy/burvixeseruins.txt
ANDROSYNTH_RUINS_STRTAB,153,91,sc2code/istrtab.h,STRTAB,base/lander/energy/androsynth_ruins.txt
DRUUGE_RUINS_STRTAB,154,92,sc2code/istrtab.h,STRTAB,base/lander/energy/sphere.txt
PKUNK_RUINS_STRTAB,155,93,sc2code/istrtab.h,STRTAB,base/lander/energy/spindle.txt
RUINS_STRTAB,157,94,sc2code/istrtab.h,STRTAB,base/lander/energy/ruins.txt
UMGAH_BCS_STRTAB,158,95,sc2code/istrtab.h,STRTAB,base/lander/energy/umgahcaster.txt
IPSUN_COLOR_MAP,41,96,sc2code/istrtab.h,BINTAB,base/lander/ip_sun.ct
HANGAR_COLOR_TAB,197,97,sc2code/istrtab.h,BINTAB,base/ui/dockpani.ct
INTROPRES_STRTAB,286,98,sc2code/istrtab.h,STRTAB,base/cutscene/intro/intro.txt
FINALPRES_STRTAB,287,99,sc2code/istrtab.h,STRTAB,base/cutscene/ending/ending.txt
CREDITS_STRTAB,289,100,sc2code/istrtab.h,STRTAB,base/cutscene/credits/credits.txt
JOYSTICK_ALPHA_STRTAB,290,101,sc2code/istrtab.h,STRTAB,base/ui/joyalpha.txt
SETUP_MENU_STRTAB,285,287,sc2code/istrtab.h,STRTAB,base/ui/setupmenu.txt
MENU_SOUNDS,32,0,sc2code/isndres.h,SNDRES,base/ui/menu.snd
GAME_SOUNDS,33,1,sc2code/isndres.h,SNDRES,base/battle/gamesnd.snd
LANDER_SOUNDS,42,2,sc2code/isndres.h,SNDRES,base/lander/lander.snd
TITLE_ANIM,2,0,sc2code/igfxres.h,GFXRES,base/ui/title.ani
STATUS_MASK_PMAP_ANIM,28,1,sc2code/igfxres.h,GFXRES,base/ui/status.ani
ACTIVITY_ANIM,28,2,sc2code/igfxres.h,GFXRES,base/ui/activity.ani
PLAYMENU_ANIM,29,3,sc2code/igfxres.h,GFXRES,base/ui/playmenu.ani
FLAGSTAT_MASK_PMAP_ANIM,31,4,sc2code/igfxres.h,GFXRES,base/ui/flagstat.ani
MISCDATA_MASK_PMAP_ANIM,31,5,sc2code/igfxres.h,GFXRES,base/ui/miscdata.ani
STAR_MASK_PMAP_ANIM,34,6,sc2code/igfxres.h,GFXRES,base/battle/stars.ani
ASTEROID_BIG_MASK_PMAP_ANIM,34,7,sc2code/igfxres.h,GFXRES,base/battle/asteroid.big
ASTEROID_MED_MASK_PMAP_ANIM,34,8,sc2code/igfxres.h,GFXRES,base/battle/asteroid.mid
ASTEROID_SML_MASK_PMAP_ANIM,34,9,sc2code/igfxres.h,GFXRES,base/battle/asteroid.sml
BLAST_BIG_MASK_PMAP_ANIM,34,10,sc2code/igfxres.h,GFXRES,base/battle/blabig.ani
BLAST_MED_MASK_PMAP_ANIM,34,11,sc2code/igfxres.h,GFXRES,base/battle/blamed.ani
BLAST_SML_MASK_PMAP_ANIM,34,12,sc2code/igfxres.h,GFXRES,base/battle/blasml.ani
BOOM_BIG_MASK_PMAP_ANIM,34,13,sc2code/igfxres.h,GFXRES,base/battle/boobig.ani
BOOM_MED_MASK_PMAP_ANIM,34,14,sc2code/igfxres.h,GFXRES,base/battle/boomed.ani
BOOM_SML_MASK_PMAP_ANIM,34,15,sc2code/igfxres.h,GFXRES,base/battle/boosml.ani
AMBIENT_MASK_PMAP_ANIM,35,16,sc2code/igfxres.h,GFXRES,base/nav/ambientanim.ani
HYPERSTARS_MASK_PMAP_ANIM,36,17,sc2code/igfxres.h,GFXRES,base/nav/hyperstr.ani
ARISPACE_MASK_PMAP_ANIM,37,18,sc2code/igfxres.h,GFXRES,base/nav/quasispace.ani
IPBKGND_MASK_PMAP_ANIM,40,19,sc2code/igfxres.h,GFXRES,base/nav/obbkgnd.ani
SISIP_MASK_PMAP_ANIM,41,20,sc2code/igfxres.h,GFXRES,base/nav/sis_ip.ani
ORBPLAN_MASK_PMAP_ANIM,41,21,sc2code/igfxres.h,GFXRES,base/nav/orbplan.ani
SUN_MASK_PMAP_ANIM,41,22,sc2code/igfxres.h,GFXRES,base/nav/ip_sun.ani
LANDER_MASK_PMAP_ANIM,42,23,sc2code/igfxres.h,GFXRES,base/lander/lander.ani
QUAKE_MASK_PMAP_ANIM,42,24,sc2code/igfxres.h,GFXRES,base/lander/hazard/quake.ani
LIGHTNING_MASK_ANIM,42,25,sc2code/igfxres.h,GFXRES,base/lander/lightning.ani
LAVA_MASK_PMAP_ANIM,42,26,sc2code/igfxres.h,GFXRES,base/lander/hazard/lavaspot.ani
LANDER_SHIELD_MASK_ANIM,42,27,sc2code/igfxres.h,GFXRES,base/lander/shield.ani
LANDER_LAUNCH_MASK_PMAP_ANIM,42,28,sc2code/igfxres.h,GFXRES,base/lander/launch.ani
LANDER_RETURN_MASK_PMAP_ANIM,42,29,sc2code/igfxres.h,GFXRES,base/lander/return.ani
ORBIT_VIEW_ANIM,43,30,sc2code/igfxres.h,GFXRES,base/nav/orbview.ani
EARTH_MASK_ANIM,44,31,sc2code/igfxres.h,GFXRES,base/planets/earthmask.ani
CANNISTER_MASK_PMAP_ANIM,45,32,sc2code/igfxres.h,GFXRES,base/lander/bio/lifecan.ani
LIFE00_MASK_PMAP_ANIM,46,33,sc2code/igfxres.h,GFXRES,base/lander/bio/lifea.ani
LIFE01_MASK_PMAP_ANIM,47,34,sc2code/igfxres.h,GFXRES,base/lander/bio/lifeb.ani
LIFE02_MASK_PMAP_ANIM,48,35,sc2code/igfxres.h,GFXRES,base/lander/bio/lifec.ani
LIFE03_MASK_PMAP_ANIM,49,36,sc2code/igfxres.h,GFXRES,base/lander/bio/lifed.ani
LIFE04_MASK_PMAP_ANIM,50,37,sc2code/igfxres.h,GFXRES,base/lander/bio/lifee.ani
LIFE05_MASK_PMAP_ANIM,51,38,sc2code/igfxres.h,GFXRES,base/lander/bio/lifef.ani
LIFE06_MASK_PMAP_ANIM,52,39,sc2code/igfxres.h,GFXRES,base/lander/bio/lifeg.ani
LIFE07_MASK_PMAP_ANIM,53,40,sc2code/igfxres.h,GFXRES,base/lander/bio/lifeh.ani
LIFE08_MASK_PMAP_ANIM,54,41,sc2code/igfxres.h,GFXRES,base/lander/bio/lifei.ani
LIFE09_MASK_PMAP_ANIM,55,42,sc2code/igfxres.h,GFXRES,base/lander/bio/lifej.ani
LIFE10_MASK_PMAP_ANIM,56,43,sc2code/igfxres.h,GFXRES,base/lander/bio/lifek.ani
LIFE11_MASK_PMAP_ANIM,57,44,sc2code/igfxres.h,GFXRES,base/lander/bio/lifel.ani
LIFE12_MASK_PMAP_ANIM,58,45,sc2code/igfxres.h,GFXRES,base/lander/bio/lifem.ani
LIFE13_MASK_PMAP_ANIM,59,46,sc2code/igfxres.h,GFXRES,base/lander/bio/lifen.ani
LIFE14_MASK_PMAP_ANIM,60,47,sc2code/igfxres.h,GFXRES,base/lander/bio/lifeo.ani
LIFE15_MASK_PMAP_ANIM,61,48,sc2code/igfxres.h,GFXRES,base/lander/bio/lifep.ani
LIFE16_MASK_PMAP_ANIM,62,49,sc2code/igfxres.h,GFXRES,base/lander/bio/lifeq.ani
LIFE17_MASK_PMAP_ANIM,63,50,sc2code/igfxres.h,GFXRES,base/lander/bio/lifer.ani
LIFE18_MASK_PMAP_ANIM,64,51,sc2code/igfxres.h,GFXRES,base/lander/bio/lifes.ani
LIFE19_MASK_PMAP_ANIM,65,52,sc2code/igfxres.h,GFXRES,base/lander/bio/lifet.ani
LIFE20_MASK_PMAP_ANIM,66,53,sc2code/igfxres.h,GFXRES,base/lander/bio/lifew.ani
LIFE21_MASK_PMAP_ANIM,67,54,sc2code/igfxres.h,GFXRES,base/lander/bio/lifex.ani
LIFE22_MASK_PMAP_ANIM,68,55,sc2code/igfxres.h,GFXRES,base/lander/bio/lifey.ani
LIFE23_MASK_PMAP_ANIM,69,56,sc2code/igfxres.h,GFXRES,base/lander/bio/lifeu.ani
LIFE24_MASK_PMAP_ANIM,70,57,sc2code/igfxres.h,GFXRES,base/lander/bio/lifev.ani
LIFE25_MASK_PMAP_ANIM,71,58,sc2code/igfxres.h,GFXRES,base/lander/bio/lifez.ani
MOONBASE_MASK_PMAP_ANIM,139,59,sc2code/igfxres.h,GFXRES,base/lander/energy/moonbase.ani
MAIDENS_MASK_PMAP_ANIM,140,60,sc2code/igfxres.h,GFXRES,base/lander/energy/maidens.ani
AQUA_MASK_PMAP_ANIM,142,61,sc2code/igfxres.h,GFXRES,base/lander/energy/aquahelix.ani
BURV_BCS_MASK_PMAP_ANIM,143,62,sc2code/igfxres.h,GFXRES,base/lander/energy/burvixcaster.ani
TAALO_DEVICE_MASK_PMAP_ANIM,144,63,sc2code/igfxres.h,GFXRES,base/lander/energy/taalodevice.ani
SUN_DEVICE_MASK_PMAP_ANIM,145,64,sc2code/igfxres.h,GFXRES,base/lander/energy/sundevice.ani
VAULT_MASK_PMAP_ANIM,146,65,sc2code/igfxres.h,GFXRES,base/lander/energy/syreenvault.ani
WRECK_MASK_PMAP_ANIM,147,66,sc2code/igfxres.h,GFXRES,base/lander/energy/urquanwreck.ani
BOMB_MASK_PMAP_ANIM,148,67,sc2code/igfxres.h,GFXRES,base/lander/energy/utwigbomb.ani
EGG_CASE_MASK_PMAP_ANIM,150,68,sc2code/igfxres.h,GFXRES,base/lander/energy/eggcase.ani
SPAPLUTO_MASK_PMAP_ANIM,151,69,sc2code/igfxres.h,GFXRES,base/lander/energy/fwiffo.ani
RUINS_MASK_PMAP_ANIM,156,70,sc2code/igfxres.h,GFXRES,base/lander/energy/ruins.ani
UMGAH_BCS_MASK_PMAP_ANIM,158,71,sc2code/igfxres.h,GFXRES,base/lander/energy/umgahcaster.ani
MELEE_SCREEN_PMAP_ANIM,161,72,sc2code/igfxres.h,GFXRES,base/ui/meleebackground.ani
MELEE_PICK_MASK_PMAP_ANIM,162,73,sc2code/igfxres.h,GFXRES,base/ui/melee.ani
SEGUE_PMAP_ANIM,163,74,sc2code/igfxres.h,GFXRES,base/ui/segue.ani
SC2_PICK_PMAP_ANIM,164,75,sc2code/igfxres.h,GFXRES,base/ui/pickship.ani
RESTART_PMAP_ANIM,193,76,sc2code/igfxres.h,GFXRES,base/ui/newgame.ani
MODULES_PMAP_ANIM,194,77,sc2code/igfxres.h,GFXRES,base/ui/modules.ani
SISMODS_MASK_PMAP_ANIM,195,78,sc2code/igfxres.h,GFXRES,base/ui/sismodules.ani
OUTFIT_PMAP_ANIM,195,79,sc2code/igfxres.h,GFXRES,base/ui/outfit.ani
SISBLU_MASK_ANIM,197,80,sc2code/igfxres.h,GFXRES,base/ui/sisblueprint.ani
SHIPYARD_PMAP_ANIM,197,81,sc2code/igfxres.h,GFXRES,base/ui/shipyard.ani
STARBASE_ANIM,199,82,sc2code/igfxres.h,GFXRES,base/ui/starbase.ani
SAMATRA_BIG_MASK_PMAP_ANIM,200,83,sc2code/igfxres.h,GFXRES,base/planets/sam__big.ani
SHIELDED_BIG_MASK_PMAP_ANIM,201,84,sc2code/igfxres.h,GFXRES,base/planets/shie_big.ani
SHIELDED_MED_MASK_PMAP_ANIM,201,85,sc2code/igfxres.h,GFXRES,base/planets/shie_med.ani
SHIELDED_SML_MASK_PMAP_ANIM,201,86,sc2code/igfxres.h,GFXRES,base/planets/shie_sml.ani
PLANET00_BIG_MASK_PMAP_ANIM,202,87,sc2code/igfxres.h,GFXRES,base/planets/ool__big.ani
PLANET00_MED_MASK_PMAP_ANIM,202,88,sc2code/igfxres.h,GFXRES,base/planets/ool__med.ani
PLANET00_SML_MASK_PMAP_ANIM,202,89,sc2code/igfxres.h,GFXRES,base/planets/ool__sml.ani
PLANET01_BIG_MASK_PMAP_ANIM,203,90,sc2code/igfxres.h,GFXRES,base/planets/ytt__big.ani
PLANET01_MED_MASK_PMAP_ANIM,203,91,sc2code/igfxres.h,GFXRES,base/planets/ytt__med.ani
PLANET01_SML_MASK_PMAP_ANIM,203,92,sc2code/igfxres.h,GFXRES,base/planets/ytt__sml.ani
PLANET02_BIG_MASK_PMAP_ANIM,204,93,sc2code/igfxres.h,GFXRES,base/planets/deg__big.ani
PLANET02_MED_MASK_PMAP_ANIM,204,94,sc2code/igfxres.h,GFXRES,base/planets/deg__med.ani
PLANET02_SML_MASK_PMAP_ANIM,204,95,sc2code/igfxres.h,GFXRES,base/planets/deg__sml.ani
PLANET03_BIG_MASK_PMAP_ANIM,205,96,sc2code/igfxres.h,GFXRES,base/planets/lan__big.ani
PLANET03_MED_MASK_PMAP_ANIM,205,97,sc2code/igfxres.h,GFXRES,base/planets/lan__med.ani
PLANET03_SML_MASK_PMAP_ANIM,205,98,sc2code/igfxres.h,GFXRES,base/planets/lan__sml.ani
PLANET04_BIG_MASK_PMAP_ANIM,206,99,sc2code/igfxres.h,GFXRES,base/planets/tre__big.ani
PLANET04_MED_MASK_PMAP_ANIM,206,100,sc2code/igfxres.h,GFXRES,base/planets/tre__med.ani
PLANET04_SML_MASK_PMAP_ANIM,206,101,sc2code/igfxres.h,GFXRES,base/planets/tre__sml.ani
PLANET05_BIG_MASK_PMAP_ANIM,207,102,sc2code/igfxres.h,GFXRES,base/planets/ure__big.ani
PLANET05_MED_MASK_PMAP_ANIM,207,103,sc2code/igfxres.h,GFXRES,base/planets/ure__med.ani
PLANET05_SML_MASK_PMAP_ANIM,207,104,sc2code/igfxres.h,GFXRES,base/planets/ure__sml.ani
PLANET06_BIG_MASK_PMAP_ANIM,208,105,sc2code/igfxres.h,GFXRES,base/planets/mtl__big.ani
PLANET06_MED_MASK_PMAP_ANIM,208,106,sc2code/igfxres.h,GFXRES,base/planets/mtl__med.ani
PLANET06_SML_MASK_PMAP_ANIM,208,107,sc2code/igfxres.h,GFXRES,base/planets/mtl__sml.ani
PLANET07_BIG_MASK_PMAP_ANIM,209,108,sc2code/igfxres.h,GFXRES,base/planets/rad__big.ani
PLANET07_MED_MASK_PMAP_ANIM,209,109,sc2code/igfxres.h,GFXRES,base/planets/rad__med.ani
PLANET07_SML_MASK_PMAP_ANIM,209,110,sc2code/igfxres.h,GFXRES,base/planets/rad__sml.ani
PLANET08_BIG_MASK_PMAP_ANIM,210,111,sc2code/igfxres.h,GFXRES,base/planets/opa__big.ani
PLANET08_MED_MASK_PMAP_ANIM,210,112,sc2code/igfxres.h,GFXRES,base/planets/opa__med.ani
PLANET08_SML_MASK_PMAP_ANIM,210,113,sc2code/igfxres.h,GFXRES,base/planets/opa__sml.ani
PLANET09_BIG_MASK_PMAP_ANIM,211,114,sc2code/igfxres.h,GFXRES,base/planets/cya__big.ani
PLANET09_MED_MASK_PMAP_ANIM,211,115,sc2code/igfxres.h,GFXRES,base/planets/cya__med.ani
PLANET09_SML_MASK_PMAP_ANIM,211,116,sc2code/igfxres.h,GFXRES,base/planets/cya__sml.ani
PLANET10_BIG_MASK_PMAP_ANIM,212,117,sc2code/igfxres.h,GFXRES,base/planets/aci__big.ani
PLANET10_MED_MASK_PMAP_ANIM,212,118,sc2code/igfxres.h,GFXRES,base/planets/aci__med.ani
PLANET10_SML_MASK_PMAP_ANIM,212,119,sc2code/igfxres.h,GFXRES,base/planets/aci__sml.ani
PLANET11_BIG_MASK_PMAP_ANIM,213,120,sc2code/igfxres.h,GFXRES,base/planets/alk__big.ani
PLANET11_MED_MASK_PMAP_ANIM,213,121,sc2code/igfxres.h,GFXRES,base/planets/alk__med.ani
PLANET11_SML_MASK_PMAP_ANIM,213,122,sc2code/igfxres.h,GFXRES,base/planets/alk__sml.ani
PLANET12_BIG_MASK_PMAP_ANIM,214,123,sc2code/igfxres.h,GFXRES,base/planets/hal__big.ani
PLANET12_MED_MASK_PMAP_ANIM,214,124,sc2code/igfxres.h,GFXRES,base/planets/hal__med.ani
PLANET12_SML_MASK_PMAP_ANIM,214,125,sc2code/igfxres.h,GFXRES,base/planets/hal__sml.ani
PLANET13_BIG_MASK_PMAP_ANIM,215,126,sc2code/igfxres.h,GFXRES,base/planets/gre__big.ani
PLANET13_MED_MASK_PMAP_ANIM,215,127,sc2code/igfxres.h,GFXRES,base/planets/gre__med.ani
PLANET13_SML_MASK_PMAP_ANIM,215,128,sc2code/igfxres.h,GFXRES,base/planets/gre__sml.ani
PLANET14_BIG_MASK_PMAP_ANIM,216,129,sc2code/igfxres.h,GFXRES,base/planets/cop__big.ani
PLANET14_MED_MASK_PMAP_ANIM,216,130,sc2code/igfxres.h,GFXRES,base/planets/cop__med.ani
PLANET14_SML_MASK_PMAP_ANIM,216,131,sc2code/igfxres.h,GFXRES,base/planets/cop__sml.ani
PLANET15_BIG_MASK_PMAP_ANIM,217,132,sc2code/igfxres.h,GFXRES,base/planets/car__big.ani
PLANET15_MED_MASK_PMAP_ANIM,217,133,sc2code/igfxres.h,GFXRES,base/planets/car__med.ani
PLANET15_SML_MASK_PMAP_ANIM,217,134,sc2code/igfxres.h,GFXRES,base/planets/car__sml.ani
PLANET16_BIG_MASK_PMAP_ANIM,218,135,sc2code/igfxres.h,GFXRES,base/planets/ult__big.ani
PLANET16_MED_MASK_PMAP_ANIM,218,136,sc2code/igfxres.h,GFXRES,base/planets/ult__med.ani
PLANET16_SML_MASK_PMAP_ANIM,218,137,sc2code/igfxres.h,GFXRES,base/planets/ult__sml.ani
PLANET17_BIG_MASK_PMAP_ANIM,219,138,sc2code/igfxres.h,GFXRES,base/planets/nob__big.ani
PLANET17_MED_MASK_PMAP_ANIM,219,139,sc2code/igfxres.h,GFXRES,base/planets/nob__med.ani
PLANET17_SML_MASK_PMAP_ANIM,219,140,sc2code/igfxres.h,GFXRES,base/planets/nob__sml.ani
PLANET18_BIG_MASK_PMAP_ANIM,220,141,sc2code/igfxres.h,GFXRES,base/planets/azu__big.ani
PLANET18_MED_MASK_PMAP_ANIM,220,142,sc2code/igfxres.h,GFXRES,base/planets/azu__med.ani
PLANET18_SML_MASK_PMAP_ANIM,220,143,sc2code/igfxres.h,GFXRES,base/planets/azu__sml.ani
PLANET19_BIG_MASK_PMAP_ANIM,221,144,sc2code/igfxres.h,GFXRES,base/planets/cho__big.ani
PLANET19_MED_MASK_PMAP_ANIM,221,145,sc2code/igfxres.h,GFXRES,base/planets/cho__med.ani
PLANET19_SML_MASK_PMAP_ANIM,221,146,sc2code/igfxres.h,GFXRES,base/planets/cho__sml.ani
PLANET20_BIG_MASK_PMAP_ANIM,222,147,sc2code/igfxres.h,GFXRES,base/planets/pur__big.ani
PLANET20_MED_MASK_PMAP_ANIM,222,148,sc2code/igfxres.h,GFXRES,base/planets/pur__med.ani
PLANET20_SML_MASK_PMAP_ANIM,222,149,sc2code/igfxres.h,GFXRES,base/planets/pur__sml.ani
PLANET21_BIG_MASK_PMAP_ANIM,223,150,sc2code/igfxres.h,GFXRES,base/planets/sup__big.ani
PLANET21_MED_MASK_PMAP_ANIM,223,151,sc2code/igfxres.h,GFXRES,base/planets/sup__med.ani
PLANET21_SML_MASK_PMAP_ANIM,223,152,sc2code/igfxres.h,GFXRES,base/planets/sup__sml.ani
PLANET22_BIG_MASK_PMAP_ANIM,224,153,sc2code/igfxres.h,GFXRES,base/planets/pel__big.ani
PLANET22_MED_MASK_PMAP_ANIM,224,154,sc2code/igfxres.h,GFXRES,base/planets/pel__med.ani
PLANET22_SML_MASK_PMAP_ANIM,224,155,sc2code/igfxres.h,GFXRES,base/planets/pel__sml.ani
PLANET23_BIG_MASK_PMAP_ANIM,225,156,sc2code/igfxres.h,GFXRES,base/planets/dus__big.ani
PLANET23_MED_MASK_PMAP_ANIM,225,157,sc2code/igfxres.h,GFXRES,base/planets/dus__med.ani
PLANET23_SML_MASK_PMAP_ANIM,225,158,sc2code/igfxres.h,GFXRES,base/planets/dus__sml.ani
PLANET24_BIG_MASK_PMAP_ANIM,226,159,sc2code/igfxres.h,GFXRES,base/planets/mar__big.ani
PLANET24_MED_MASK_PMAP_ANIM,226,160,sc2code/igfxres.h,GFXRES,base/planets/mar__med.ani
PLANET24_SML_MASK_PMAP_ANIM,226,161,sc2code/igfxres.h,GFXRES,base/planets/mar__sml.ani
PLANET25_BIG_MASK_PMAP_ANIM,227,162,sc2code/igfxres.h,GFXRES,base/planets/cim__big.ani
PLANET25_MED_MASK_PMAP_ANIM,227,163,sc2code/igfxres.h,GFXRES,base/planets/cim__med.ani
PLANET25_SML_MASK_PMAP_ANIM,227,164,sc2code/igfxres.h,GFXRES,base/planets/cim__sml.ani
PLANET26_BIG_MASK_PMAP_ANIM,228,165,sc2code/igfxres.h,GFXRES,base/planets/inf__big.ani
PLANET26_MED_MASK_PMAP_ANIM,228,166,sc2code/igfxres.h,GFXRES,base/planets/inf__med.ani
PLANET26_SML_MASK_PMAP_ANIM,228,167,sc2code/igfxres.h,GFXRES,base/planets/inf__sml.ani
PLANET27_BIG_MASK_PMAP_ANIM,229,168,sc2code/igfxres.h,GFXRES,base/planets/sel__big.ani
PLANET27_MED_MASK_PMAP_ANIM,229,169,sc2code/igfxres.h,GFXRES,base/planets/sel__med.ani
PLANET27_SML_MASK_PMAP_ANIM,229,170,sc2code/igfxres.h,GFXRES,base/planets/sel__sml.ani
PLANET28_BIG_MASK_PMAP_ANIM,230,171,sc2code/igfxres.h,GFXRES,base/planets/aur__big.ani
PLANET28_MED_MASK_PMAP_ANIM,230,172,sc2code/igfxres.h,GFXRES,base/planets/aur__med.ani
PLANET28_SML_MASK_PMAP_ANIM,230,173,sc2code/igfxres.h,GFXRES,base/planets/aur__sml.ani
PLANET29_BIG_MASK_PMAP_ANIM,231,174,sc2code/igfxres.h,GFXRES,base/planets/flu__big.ani
PLANET29_MED_MASK_PMAP_ANIM,231,175,sc2code/igfxres.h,GFXRES,base/planets/flu__med.ani
PLANET29_SML_MASK_PMAP_ANIM,231,176,sc2code/igfxres.h,GFXRES,base/planets/flu__sml.ani
PLANET30_BIG_MASK_PMAP_ANIM,232,177,sc2code/igfxres.h,GFXRES,base/planets/ult__big.ani
PLANET30_MED_MASK_PMAP_ANIM,232,178,sc2code/igfxres.h,GFXRES,base/planets/ult__med.ani
PLANET30_SML_MASK_PMAP_ANIM,232,179,sc2code/igfxres.h,GFXRES,base/planets/ult__sml.ani
PLANET31_BIG_MASK_PMAP_ANIM,233,180,sc2code/igfxres.h,GFXRES,base/planets/plu__big.ani
PLANET31_MED_MASK_PMAP_ANIM,233,181,sc2code/igfxres.h,GFXRES,base/planets/plu__med.ani
PLANET31_SML_MASK_PMAP_ANIM,233,182,sc2code/igfxres.h,GFXRES,base/planets/plu__sml.ani
PLANET32_BIG_MASK_PMAP_ANIM,234,183,sc2code/igfxres.h,GFXRES,base/planets/rai__big.ani
PLANET32_MED_MASK_PMAP_ANIM,234,184,sc2code/igfxres.h,GFXRES,base/planets/rai__med.ani
PLANET32_SML_MASK_PMAP_ANIM,234,185,sc2code/igfxres.h,GFXRES,base/planets/rai__sml.ani
PLANET33_BIG_MASK_PMAP_ANIM,235,186,sc2code/igfxres.h,GFXRES,base/planets/cra__big.ani
PLANET33_MED_MASK_PMAP_ANIM,235,187,sc2code/igfxres.h,GFXRES,base/planets/cra__med.ani
PLANET33_SML_MASK_PMAP_ANIM,235,188,sc2code/igfxres.h,GFXRES,base/planets/cra__sml.ani
PLANET34_BIG_MASK_PMAP_ANIM,236,189,sc2code/igfxres.h,GFXRES,base/planets/sap__big.ani
PLANET34_MED_MASK_PMAP_ANIM,236,190,sc2code/igfxres.h,GFXRES,base/planets/sap__med.ani
PLANET34_SML_MASK_PMAP_ANIM,236,191,sc2code/igfxres.h,GFXRES,base/planets/sap__sml.ani
PLANET35_BIG_MASK_PMAP_ANIM,237,192,sc2code/igfxres.h,GFXRES,base/planets/org__big.ani
PLANET35_MED_MASK_PMAP_ANIM,237,193,sc2code/igfxres.h,GFXRES,base/planets/org__med.ani
PLANET35_SML_MASK_PMAP_ANIM,237,194,sc2code/igfxres.h,GFXRES,base/planets/org__sml.ani
PLANET36_BIG_MASK_PMAP_ANIM,238,195,sc2code/igfxres.h,GFXRES,base/planets/xen__big.ani
PLANET36_MED_MASK_PMAP_ANIM,238,196,sc2code/igfxres.h,GFXRES,base/planets/xen__med.ani
PLANET36_SML_MASK_PMAP_ANIM,238,197,sc2code/igfxres.h,GFXRES,base/planets/xen__sml.ani
PLANET37_BIG_MASK_PMAP_ANIM,239,198,sc2code/igfxres.h,GFXRES,base/planets/red__big.ani
PLANET37_MED_MASK_PMAP_ANIM,239,199,sc2code/igfxres.h,GFXRES,base/planets/red__med.ani
PLANET37_SML_MASK_PMAP_ANIM,239,200,sc2code/igfxres.h,GFXRES,base/planets/red__sml.ani
PLANET38_BIG_MASK_PMAP_ANIM,240,201,sc2code/igfxres.h,GFXRES,base/planets/pri__big.ani
PLANET38_MED_MASK_PMAP_ANIM,240,202,sc2code/igfxres.h,GFXRES,base/planets/pri__med.ani
PLANET38_SML_MASK_PMAP_ANIM,240,203,sc2code/igfxres.h,GFXRES,base/planets/pri__sml.ani
PLANET39_BIG_MASK_PMAP_ANIM,241,204,sc2code/igfxres.h,GFXRES,base/planets/eme__big.ani
PLANET39_MED_MASK_PMAP_ANIM,241,205,sc2code/igfxres.h,GFXRES,base/planets/eme__med.ani
PLANET39_SML_MASK_PMAP_ANIM,241,206,sc2code/igfxres.h,GFXRES,base/planets/eme__sml.ani
PLANET40_BIG_MASK_PMAP_ANIM,242,207,sc2code/igfxres.h,GFXRES,base/planets/chl__big.ani
PLANET40_MED_MASK_PMAP_ANIM,242,208,sc2code/igfxres.h,GFXRES,base/planets/chl__med.ani
PLANET40_SML_MASK_PMAP_ANIM,242,209,sc2code/igfxres.h,GFXRES,base/planets/chl__sml.ani
PLANET41_BIG_MASK_PMAP_ANIM,243,210,sc2code/igfxres.h,GFXRES,base/planets/mgn__big.ani
PLANET41_MED_MASK_PMAP_ANIM,243,211,sc2code/igfxres.h,GFXRES,base/planets/mgn__med.ani
PLANET41_SML_MASK_PMAP_ANIM,243,212,sc2code/igfxres.h,GFXRES,base/planets/mgn__sml.ani
PLANET42_BIG_MASK_PMAP_ANIM,244,213,sc2code/igfxres.h,GFXRES,base/planets/wat__big.ani
PLANET42_MED_MASK_PMAP_ANIM,244,214,sc2code/igfxres.h,GFXRES,base/planets/wat__med.ani
PLANET42_SML_MASK_PMAP_ANIM,244,215,sc2code/igfxres.h,GFXRES,base/planets/wat__sml.ani
PLANET43_BIG_MASK_PMAP_ANIM,245,216,sc2code/igfxres.h,GFXRES,base/planets/tel__big.ani
PLANET43_MED_MASK_PMAP_ANIM,245,217,sc2code/igfxres.h,GFXRES,base/planets/tel__med.ani
PLANET43_SML_MASK_PMAP_ANIM,245,218,sc2code/igfxres.h,GFXRES,base/planets/tel__sml.ani
PLANET44_BIG_MASK_PMAP_ANIM,246,219,sc2code/igfxres.h,GFXRES,base/planets/hyd__big.ani
PLANET44_MED_MASK_PMAP_ANIM,246,220,sc2code/igfxres.h,GFXRES,base/planets/hyd__med.ani
PLANET44_SML_MASK_PMAP_ANIM,246,221,sc2code/igfxres.h,GFXRES,base/planets/hyd__sml.ani
PLANET45_BIG_MASK_PMAP_ANIM,247,222,sc2code/igfxres.h,GFXRES,base/planets/iod__big.ani
PLANET45_MED_MASK_PMAP_ANIM,247,223,sc2code/igfxres.h,GFXRES,base/planets/iod__med.ani
PLANET45_SML_MASK_PMAP_ANIM,247,224,sc2code/igfxres.h,GFXRES,base/planets/iod__sml.ani
PLANET46_BIG_MASK_PMAP_ANIM,248,225,sc2code/igfxres.h,GFXRES,base/planets/vin__big.ani
PLANET46_MED_MASK_PMAP_ANIM,248,226,sc2code/igfxres.h,GFXRES,base/planets/vin__med.ani
PLANET46_SML_MASK_PMAP_ANIM,248,227,sc2code/igfxres.h,GFXRES,base/planets/vin__sml.ani
PLANET47_BIG_MASK_PMAP_ANIM,249,228,sc2code/igfxres.h,GFXRES,base/planets/rub__big.ani
PLANET47_MED_MASK_PMAP_ANIM,249,229,sc2code/igfxres.h,GFXRES,base/planets/rub__med.ani
PLANET47_SML_MASK_PMAP_ANIM,249,230,sc2code/igfxres.h,GFXRES,base/planets/rub__sml.ani
PLANET48_BIG_MASK_PMAP_ANIM,250,231,sc2code/igfxres.h,GFXRES,base/planets/mgm__big.ani
PLANET48_MED_MASK_PMAP_ANIM,250,232,sc2code/igfxres.h,GFXRES,base/planets/mgm__med.ani
PLANET48_SML_MASK_PMAP_ANIM,250,233,sc2code/igfxres.h,GFXRES,base/planets/mgm__sml.ani
PLANET49_BIG_MASK_PMAP_ANIM,251,234,sc2code/igfxres.h,GFXRES,base/planets/cri__big.ani
PLANET49_MED_MASK_PMAP_ANIM,251,235,sc2code/igfxres.h,GFXRES,base/planets/cri__med.ani
PLANET49_SML_MASK_PMAP_ANIM,251,236,sc2code/igfxres.h,GFXRES,base/planets/cri__sml.ani
PLANET50_BIG_MASK_PMAP_ANIM,252,237,sc2code/igfxres.h,GFXRES,base/planets/blg__big.ani
PLANET50_MED_MASK_PMAP_ANIM,252,238,sc2code/igfxres.h,GFXRES,base/planets/blg__med.ani
PLANET50_SML_MASK_PMAP_ANIM,252,239,sc2code/igfxres.h,GFXRES,base/planets/blg__sml.ani
PLANET51_BIG_MASK_PMAP_ANIM,253,240,sc2code/igfxres.h,GFXRES,base/planets/cyg__big.ani
PLANET51_MED_MASK_PMAP_ANIM,253,241,sc2code/igfxres.h,GFXRES,base/planets/cyg__med.ani
PLANET51_SML_MASK_PMAP_ANIM,253,242,sc2code/igfxres.h,GFXRES,base/planets/cyg__sml.ani
PLANET52_BIG_MASK_PMAP_ANIM,254,243,sc2code/igfxres.h,GFXRES,base/planets/gng__big.ani
PLANET52_MED_MASK_PMAP_ANIM,254,244,sc2code/igfxres.h,GFXRES,base/planets/gng__med.ani
PLANET52_SML_MASK_PMAP_ANIM,254,245,sc2code/igfxres.h,GFXRES,base/planets/gng__sml.ani
PLANET53_BIG_MASK_PMAP_ANIM,255,246,sc2code/igfxres.h,GFXRES,base/planets/gyg__big.ani
PLANET53_MED_MASK_PMAP_ANIM,255,247,sc2code/igfxres.h,GFXRES,base/planets/gyg__med.ani
PLANET53_SML_MASK_PMAP_ANIM,255,248,sc2code/igfxres.h,GFXRES,base/planets/gyg__sml.ani
PLANET54_BIG_MASK_PMAP_ANIM,256,249,sc2code/igfxres.h,GFXRES,base/planets/org__big.ani
PLANET54_MED_MASK_PMAP_ANIM,256,250,sc2code/igfxres.h,GFXRES,base/planets/org__med.ani
PLANET54_SML_MASK_PMAP_ANIM,256,251,sc2code/igfxres.h,GFXRES,base/planets/org__sml.ani
PLANET55_BIG_MASK_PMAP_ANIM,257,252,sc2code/igfxres.h,GFXRES,base/planets/pug__big.ani
PLANET55_MED_MASK_PMAP_ANIM,257,253,sc2code/igfxres.h,GFXRES,base/planets/pug__med.ani
PLANET55_SML_MASK_PMAP_ANIM,257,254,sc2code/igfxres.h,GFXRES,base/planets/pug__sml.ani
PLANET56_BIG_MASK_PMAP_ANIM,258,255,sc2code/igfxres.h,GFXRES,base/planets/reg__big.ani
PLANET56_MED_MASK_PMAP_ANIM,258,256,sc2code/igfxres.h,GFXRES,base/planets/reg__med.ani
PLANET56_SML_MASK_PMAP_ANIM,258,257,sc2code/igfxres.h,GFXRES,base/planets/reg__sml.ani
PLANET57_BIG_MASK_PMAP_ANIM,259,258,sc2code/igfxres.h,GFXRES,base/planets/vig__big.ani
PLANET57_MED_MASK_PMAP_ANIM,259,259,sc2code/igfxres.h,GFXRES,base/planets/vig__med.ani
PLANET57_SML_MASK_PMAP_ANIM,259,260,sc2code/igfxres.h,GFXRES,base/planets/vig__sml.ani
PLANET58_BIG_MASK_PMAP_ANIM,260,261,sc2code/igfxres.h,GFXRES,base/planets/yeg__big.ani
PLANET58_MED_MASK_PMAP_ANIM,260,262,sc2code/igfxres.h,GFXRES,base/planets/yeg__med.ani
PLANET58_SML_MASK_PMAP_ANIM,260,263,sc2code/igfxres.h,GFXRES,base/planets/yeg__sml.ani
CREDITS_BACK_ANIM,262,264,sc2code/igfxres.h,GFXRES,base/cutscene/credits/credback.ani
SISSKEL_MASK_PMAP_ANIM,283,284,sc2code/igfxres.h,GFXRES,base/cutscene/ending/sis_skel.ani
ORBENTER_PMAP_ANIM,284,285,sc2code/igfxres.h,GFXRES,base/nav/orbitenter.ani
MENUBKG_PMAP_ANIM,285,286,sc2code/igfxres.h,GFXRES,base/ui/setupmenu.ani
FONTGRAD_PMAP_ANIM,31,287,sc2code/igfxres.h,GFXRES,base/fonts/fontgrad.ani
LANDER_FONTEFF_PMAP_ANIM,138,288,sc2code/igfxres.h,GFXRES,base/lander/fonteffect.ani
DRUUGE_MUSIC,504,0,sc2code/comm/druuge/imusicre.h,MUSICRES,base/comm/druuge/druuge.mod
DRUUGE_FONT,504,1,sc2code/comm/druuge/ifontres.h,FONTRES,base/fonts/druuge.fon
DRUUGE_CONVERSATION_PHRASES,504,2,sc2code/comm/druuge/istrtab.h,CONVERSATION,base/comm/druuge/druuge.txt
DRUUGE_COLOR_MAP,504,3,sc2code/comm/druuge/istrtab.h,BINTAB,base/comm/druuge/druuge.ct
DRUUGE_PMAP_ANIM,504,4,sc2code/comm/druuge/igfxres.h,GFXRES,base/comm/druuge/druuge.ani
SLYLAND_MUSIC,512,0,sc2code/comm/slyland/imusicre.h,MUSICRES,base/comm/slylandro/slylandro.mod
SLYLAND_FONT,512,1,sc2code/comm/slyland/ifontres.h,FONTRES,base/fonts/slylandro.fon
SLYLAND_CONVERSATION_PHRASES,512,2,sc2code/comm/slyland/istrtab.h,CONVERSATION,base/comm/slylandro/slylandro.txt
SLYLAND_COLOR_MAP,512,3,sc2code/comm/slyland/istrtab.h,BINTAB,base/comm/slylandro/slylandro.ct
SLYLAND_PMAP_ANIM,512,4,sc2code/comm/slyland/igfxres.h,GFXRES,base/comm/slylandro/slylandro.ani
UTWIG_MUSIC,520,0,sc2code/comm/utwig/imusicre.h,MUSICRES,base/comm/utwig/utwig.mod
UTWIG_ULTRON_MUSIC,520,1,sc2code/comm/utwig/imusicre.h,--,--
UTWIG_FONT,520,2,sc2code/comm/utwig/ifontres.h,FONTRES,base/fonts/utwig.fon
UTWIG_CONVERSATION_PHRASES,520,3,sc2code/comm/utwig/istrtab.h,CONVERSATION,base/comm/utwig/utwig.txt
UTWIG_COLOR_MAP,520,4,sc2code/comm/utwig/istrtab.h,BINTAB,base/comm/utwig/utwig.ct
UTWIG_PMAP_ANIM,520,5,sc2code/comm/utwig/igfxres.h,GFXRES,base/comm/utwig/utwig.ani
URQUAN_MUSIC,519,0,sc2code/comm/urquan/imusicre.h,MUSICRES,base/comm/urquan/urquan.mod
URQUAN_FONT,519,1,sc2code/comm/urquan/ifontres.h,FONTRES,base/fonts/urquan.fon
URQUAN_CONVERSATION_PHRASES,519,2,sc2code/comm/urquan/istrtab.h,CONVERSATION,base/comm/urquan/urquan.txt
URQUAN_COLOR_MAP,519,3,sc2code/comm/urquan/istrtab.h,BINTAB,base/comm/urquan/urquan.ct
URQUAN_PMAP_ANIM,519,4,sc2code/comm/urquan/igfxres.h,GFXRES,base/comm/urquan/urquan.ani
CHMMR_MUSIC,502,0,sc2code/comm/chmmr/imusicre.h,MUSICRES,base/comm/chmmr/chmmr.mod
CHMMR_FONT,502,1,sc2code/comm/chmmr/ifontres.h,FONTRES,base/fonts/chmmr.fon
CHMMR_CONVERSATION_PHRASES,502,2,sc2code/comm/chmmr/istrtab.h,CONVERSATION,base/comm/chmmr/chmmr.txt
CHMMR_COLOR_MAP,502,3,sc2code/comm/chmmr/istrtab.h,BINTAB,base/comm/chmmr/chmmr.ct
CHMMR_PMAP_ANIM,502,4,sc2code/comm/chmmr/igfxres.h,GFXRES,base/comm/chmmr/chmmr.ani
MYCON_MUSIC,507,0,sc2code/comm/mycon/imusicre.h,MUSICRES,base/comm/mycon/mycon.mod
MYCON_FONT,507,1,sc2code/comm/mycon/ifontres.h,FONTRES,base/fonts/mycon.fon
MYCON_CONVERSATION_PHRASES,507,2,sc2code/comm/mycon/istrtab.h,CONVERSATION,base/comm/mycon/mycon.txt
MYCON_COLOR_MAP,507,3,sc2code/comm/mycon/istrtab.h,BINTAB,base/comm/mycon/mycon.ct
MYCON_PMAP_ANIM,507,4,sc2code/comm/mycon/igfxres.h,GFXRES,base/comm/mycon/mycon.ani
SLYLANDRO_MUSIC,511,0,sc2code/comm/slyhome/imusicre.h,MUSICRES,base/comm/slyhome/slyhome.mod
SLYLANDRO_FONT,511,1,sc2code/comm/slyhome/ifontres.h,FONTRES,base/fonts/slyhome.fon
SLYLANDRO_CONVERSATION_PHRASES,511,2,sc2code/comm/slyhome/istrtab.h,CONVERSATION,base/comm/slyhome/slyhome.txt
SLYLANDRO_COLOR_MAP,511,3,sc2code/comm/slyhome/istrtab.h,BINTAB,base/comm/slyhome/slyhome.ct
SLYLANDRO_PMAP_ANIM,511,4,sc2code/comm/slyhome/igfxres.h,GFXRES,base/comm/slyhome/slyhome.ani
ZOQFOTPIK_MUSIC,523,0,sc2code/comm/zoqfot/imusicre.h,MUSICRES,base/comm/zoqfotpik/zoqfotpik.mod
ZOQFOTPIK_FONT,523,1,sc2code/comm/zoqfot/ifontres.h,FONTRES,base/fonts/zoqfotpik.fon
ZOQFOTPIK_CONVERSATION_PHRASES,523,2,sc2code/comm/zoqfot/istrtab.h,CONVERSATION,base/comm/zoqfotpik/zoqfotpik.txt
ZOQFOTPIK_COLOR_MAP,523,3,sc2code/comm/zoqfot/istrtab.h,BINTAB,base/comm/zoqfotpik/zoqfotpik.ct
ZOQFOTPIK_PMAP_ANIM,523,4,sc2code/comm/zoqfot/igfxres.h,GFXRES,base/comm/zoqfotpik/zoqfotpik.ani
VUX_MUSIC,521,0,sc2code/comm/vux/imusicre.h,MUSICRES,base/comm/vux/vux.mod
VUX_FONT,521,1,sc2code/comm/vux/ifontres.h,FONTRES,base/fonts/vux.fon
VUX_CONVERSATION_PHRASES,521,2,sc2code/comm/vux/istrtab.h,CONVERSATION,base/comm/vux/vux.txt
VUX_COLOR_MAP,521,3,sc2code/comm/vux/istrtab.h,BINTAB,base/comm/vux/vux.ct
VUX_PMAP_ANIM,521,4,sc2code/comm/vux/igfxres.h,GFXRES,base/comm/vux/vux.ani
ARILOU_MUSIC,500,0,sc2code/comm/arilou/imusicre.h,MUSICRES,base/comm/arilou/arilou.mod
ARILOU_FONT,500,1,sc2code/comm/arilou/ifontres.h,FONTRES,base/fonts/arilou.fon
ARILOU_CONVERSATION_PHRASES,500,2,sc2code/comm/arilou/istrtab.h,CONVERSATION,base/comm/arilou/arilou.txt
ARILOU_PMAP_ANIM,500,3,sc2code/comm/arilou/igfxres.h,GFXRES,base/comm/arilou/arilou.ani
ARILOU_COLOR_MAP,500,4,sc2code/comm/arilou/igfxres.h,BINTAB,base/comm/arilou/arilou.ct
COMMANDER_MUSIC,503,0,sc2code/comm/comandr/imusicre.h,MUSICRES,base/comm/commander/commander.mod
STARBASE_ALT_MUSIC,503,1,sc2code/comm/comandr/imusicre.h,--,--
COMMANDER_LOWPOW_MUSIC,503,2,sc2code/comm/comandr/imusicre.h,--,--
COMMANDER_FONT,503,3,sc2code/comm/comandr/ifontres.h,FONTRES,base/fonts/commander.fon
COMMANDER_COLOR_MAP,503,4,sc2code/comm/comandr/istrtab.h,BINTAB,base/comm/commander/commander.ct
COMMANDER_CONVERSATION_PHRASES,503,5,sc2code/comm/comandr/istrtab.h,CONVERSATION,base/comm/commander/commander.txt
STARBASE_CONVERSATION_PHRASES,503,6,sc2code/comm/comandr/istrtab.h,CONVERSATION,base/comm/starbase/starbase.txt
COMMANDER_PMAP_ANIM,503,7,sc2code/comm/comandr/igfxres.h,GFXRES,base/comm/commander/commander.ani
SPATHI_MUSIC,513,0,sc2code/comm/spathi/imusicre.h,MUSICRES,base/comm/spathi/spathi.mod
SPAHOME_MUSIC,513,1,sc2code/comm/spathi/imusicre.h,MUSICRES,base/comm/spathi/spathi.mod
FWIFFO_MUSIC,513,2,sc2code/comm/spathi/imusicre.h,--,--
SPATHI_FONT,513,3,sc2code/comm/spathi/ifontres.h,FONTRES,base/fonts/spathi.fon
SPATHI_CONVERSATION_PHRASES,513,4,sc2code/comm/spathi/istrtab.h,CONVERSATION,base/comm/spathi/spathi.txt
SPATHI_HOME_COLOR_MAP,513,5,sc2code/comm/spathi/istrtab.h,BINTAB,base/comm/spahome/spahome.ct
SPATHI_HOME_CONVERSATION_PHRASES,513,6,sc2code/comm/spathi/istrtab.h,CONVERSATION,base/comm/spahome/spahome.txt
SPATHI_COLOR_MAP,513,7,sc2code/comm/spathi/istrtab.h,BINTAB,base/comm/spathi/spathi.ct
SPATHI_PMAP_ANIM,513,8,sc2code/comm/spathi/igfxres.h,GFXRES,base/comm/spathi/spathi.ani
SPATHI_HOME_PMAP_ANIM,513,9,sc2code/comm/spathi/igfxres.h,GFXRES,base/comm/spahome/spahome.ani
PKUNK_MUSIC,509,0,sc2code/comm/pkunk/imusicre.h,MUSICRES,base/comm/pkunk/pkunk.mod
PKUNK_FONT,509,1,sc2code/comm/pkunk/ifontres.h,FONTRES,base/fonts/pkunk.fon
PKUNK_CONVERSATION_PHRASES,509,2,sc2code/comm/pkunk/istrtab.h,CONVERSATION,base/comm/pkunk/pkunk.txt
PKUNK_COLOR_MAP,509,3,sc2code/comm/pkunk/istrtab.h,BINTAB,base/comm/pkunk/pkunk.ct
PKUNK_PMAP_ANIM,509,4,sc2code/comm/pkunk/igfxres.h,GFXRES,base/comm/pkunk/pkunk.ani
SHOFIXTI_MUSIC,510,0,sc2code/comm/shofixt/imusicre.h,MUSICRES,base/comm/shofixti/shofixti.mod
SHOFIXTI_FONT,510,1,sc2code/comm/shofixt/ifontres.h,FONTRES,base/fonts/shofixti.fon
SHOFIXTI_CONVERSATION_PHRASES,510,2,sc2code/comm/shofixt/istrtab.h,CONVERSATION,base/comm/shofixti/shofixti.txt
SHOFIXTI_COLOR_MAP,510,3,sc2code/comm/shofixt/istrtab.h,BINTAB,base/comm/shofixti/shofixti.ct
SHOFIXTI_PMAP_ANIM,510,4,sc2code/comm/shofixt/igfxres.h,GFXRES,base/comm/shofixti/shofixti.ani
UMGAH_MUSIC,518,0,sc2code/comm/umgah/imusicre.h,MUSICRES,base/comm/umgah/umgah.mod
UMGAH_FONT,518,1,sc2code/comm/umgah/ifontres.h,FONTRES,base/fonts/umgah.fon
UMGAH_CONVERSATION_PHRASES,518,2,sc2code/comm/umgah/istrtab.h,CONVERSATION,base/comm/umgah/umgah.txt
UMGAH_COLOR_MAP,518,3,sc2code/comm/umgah/istrtab.h,BINTAB,base/comm/umgah/umgah.ct
UMGAH_PMAP_ANIM,518,4,sc2code/comm/umgah/igfxres.h,GFXRES,base/comm/umgah/umgah.ani
ILWRATH_MUSIC,505,0,sc2code/comm/ilwrath/imusicre.h,MUSICRES,base/comm/ilwrath/ilwrath.mod
ILWRATH_FONT,505,1,sc2code/comm/ilwrath/ifontres.h,FONTRES,base/fonts/ilwrath.fon
ILWRATH_CONVERSATION_PHRASES,505,2,sc2code/comm/ilwrath/istrtab.h,CONVERSATION,base/comm/ilwrath/ilwrath.txt
ILWRATH_COLOR_MAP,505,3,sc2code/comm/ilwrath/istrtab.h,BINTAB,base/comm/ilwrath/ilwrath.ct
ILWRATH_PMAP_ANIM,505,4,sc2code/comm/ilwrath/igfxres.h,GFXRES,base/comm/ilwrath/ilwrath.ani
SYREEN_MUSIC,515,0,sc2code/comm/syreen/imusicre.h,MUSICRES,base/comm/syreen/syreen.mod
SYREEN_FONT,515,1,sc2code/comm/syreen/ifontres.h,FONTRES,base/fonts/syreen.fon
SYREEN_CONVERSATION_PHRASES,515,2,sc2code/comm/syreen/istrtab.h,CONVERSATION,base/comm/syreen/syreen.txt
SYREEN_COLOR_MAP,515,3,sc2code/comm/syreen/istrtab.h,BINTAB,base/comm/syreen/syreen.ct
SYREEN_PMAP_ANIM,515,4,sc2code/comm/syreen/igfxres.h,GFXRES,base/comm/syreen/syreen.ani
MELNORME_MUSIC,506,0,sc2code/comm/melnorm/imusicre.h,MUSICRES,base/comm/melnorme/melnorme.mod
MELNORME_FONT,506,1,sc2code/comm/melnorm/ifontres.h,FONTRES,base/fonts/melnorme.fon
MELNORME_CONVERSATION_PHRASES,506,2,sc2code/comm/melnorm/istrtab.h,CONVERSATION,base/comm/melnorme/melnorme.txt
MELNORME_COLOR_MAP,506,3,sc2code/comm/melnorm/istrtab.h,BINTAB,base/comm/melnorme/melnorme.ct
MELNORME_PMAP_ANIM,506,4,sc2code/comm/melnorm/igfxres.h,GFXRES,base/comm/melnorme/melnorme.ani
BLACKURQ_MUSIC,501,0,sc2code/comm/blackur/imusicre.h,MUSICRES,base/comm/kohrah/kohrah.mod
BLACKURQ_FONT,501,1,sc2code/comm/blackur/ifontres.h,FONTRES,base/fonts/kohrah.fon
BLACKURQ_CONVERSATION_PHRASES,501,2,sc2code/comm/blackur/istrtab.h,CONVERSATION,base/comm/kohrah/kohrah.txt
BLACKURQ_COLOR_MAP,501,3,sc2code/comm/blackur/istrtab.h,BINTAB,base/comm/kohrah/kohrah.ct
BLACKURQ_PMAP_ANIM,501,4,sc2code/comm/blackur/igfxres.h,GFXRES,base/comm/kohrah/kohrah.ani
TALKING_PET_MUSIC,516,0,sc2code/comm/talkpet/imusicre.h,MUSICRES,base/comm/talkingpet/talkingpet.mod
TALKING_PET_FONT,516,1,sc2code/comm/talkpet/ifontres.h,FONTRES,base/fonts/talkingpet.fon
TALKING_PET_CONVERSATION_PHRASES,516,2,sc2code/comm/talkpet/istrtab.h,CONVERSATION,base/comm/talkingpet/talkingpet.txt
TALKING_PET_COLOR_MAP,516,3,sc2code/comm/talkpet/istrtab.h,BINTAB,base/comm/talkingpet/talkingpet.ct
TALKING_PET_PMAP_ANIM,516,4,sc2code/comm/talkpet/igfxres.h,GFXRES,base/comm/talkingpet/talkingpet.ani
YEHAT_MUSIC,522,0,sc2code/comm/yehat/imusicre.h,MUSICRES,base/comm/yehat/yehat.mod
REBEL_MUSIC,522,1,sc2code/comm/yehat/imusicre.h,--,--
YEHAT_FONT,522,2,sc2code/comm/yehat/ifontres.h,FONTRES,base/fonts/yehat.fon
YEHAT_CONVERSATION_PHRASES,522,3,sc2code/comm/yehat/istrtab.h,CONVERSATION,base/comm/yehat/yehat.txt
REBEL_CONVERSATION_PHRASES,522,4,sc2code/comm/yehat/istrtab.h,CONVERSATION,base/comm/yehatrebels/yehatrebels.txt
YEHAT_COLOR_MAP,522,5,sc2code/comm/yehat/istrtab.h,BINTAB,base/comm/yehat/yehat.ct
YEHAT_PMAP_ANIM,522,6,sc2code/comm/yehat/igfxres.h,GFXRES,base/comm/yehat/yehat.ani
SUPOX_MUSIC,514,0,sc2code/comm/supox/imusicre.h,MUSICRES,base/comm/supox/supox.mod
SUPOX_FONT,514,1,sc2code/comm/supox/ifontres.h,FONTRES,base/fonts/supox.fon
SUPOX_CONVERSATION_PHRASES,514,2,sc2code/comm/supox/istrtab.h,CONVERSATION,base/comm/supox/supox.txt
SUPOX_COLOR_MAP,514,3,sc2code/comm/supox/istrtab.h,BINTAB,base/comm/supox/supox.ct
SUPOX_PMAP_ANIM,514,4,sc2code/comm/supox/igfxres.h,GFXRES,base/comm/supox/supox.ani
THRADD_MUSIC,517,0,sc2code/comm/thradd/imusicre.h,MUSICRES,base/comm/thraddash/thraddash.mod
THRADD_FONT,517,1,sc2code/comm/thradd/ifontres.h,FONTRES,base/fonts/thraddash.fon
THRADD_CONVERSATION_PHRASES,517,2,sc2code/comm/thradd/istrtab.h,CONVERSATION,base/comm/thraddash/thraddash.txt
THRADD_COLOR_MAP,517,3,sc2code/comm/thradd/istrtab.h,BINTAB,base/comm/thraddash/thraddash.ct
THRADD_PMAP_ANIM,517,4,sc2code/comm/thradd/igfxres.h,GFXRES,base/comm/thraddash/thraddash.ani
ORZ_MUSIC,508,0,sc2code/comm/orz/imusicre.h,MUSICRES,base/comm/orz/orz.mod
ORZ_FONT,508,1,sc2code/comm/orz/ifontres.h,FONTRES,base/fonts/orz.fon
ORZ_CONVERSATION_PHRASES,508,2,sc2code/comm/orz/istrtab.h,CONVERSATION,base/comm/orz/orz.txt
ORZ_COLOR_MAP,508,3,sc2code/comm/orz/istrtab.h,BINTAB,base/comm/orz/orz.ct
ORZ_PMAP_ANIM,508,4,sc2code/comm/orz/igfxres.h,GFXRES,base/comm/orz/orz.ani
DRUUGE_CODE,705,0,sc2code/ships/druuge/icode.h,SHIP,5
DRUUGE_VICTORY_SONG,705,0,sc2code/ships/druuge/imusicre.h,MUSICRES,base/ships/druuge/druditty.mod
DRUUGE_RACE_STRINGS,705,1,sc2code/ships/druuge/istrtab.h,STRTAB,base/ships/druuge/drutext.txt
DRUUGE_SHIP_SOUNDS,705,2,sc2code/ships/druuge/isndres.h,SNDRES,base/ships/druuge/drusound.snd
DRUUGE_ICON_MASK_PMAP_ANIM,705,3,sc2code/ships/druuge/igfxres.h,GFXRES,base/ships/druuge/druicons.ani
DRUUGE_MICON_MASK_PMAP_ANIM,705,4,sc2code/ships/druuge/igfxres.h,GFXRES,base/ships/druuge/drumicon.ani
DRUUGE_BIG_MASK_PMAP_ANIM,705,5,sc2code/ships/druuge/igfxres.h,GFXRES,base/ships/druuge/druuge.big
DRUUGE_MED_MASK_PMAP_ANIM,705,6,sc2code/ships/druuge/igfxres.h,GFXRES,base/ships/druuge/druuge.med
DRUUGE_SML_MASK_PMAP_ANIM,705,7,sc2code/ships/druuge/igfxres.h,GFXRES,base/ships/druuge/druuge.sml
DRUUGE_CANNON_BIG_MASK_PMAP_ANIM,705,8,sc2code/ships/druuge/igfxres.h,GFXRES,base/ships/druuge/canbig.ani
DRUUGE_CANNON_MED_MASK_PMAP_ANIM,705,9,sc2code/ships/druuge/igfxres.h,GFXRES,base/ships/druuge/canmed.ani
DRUUGE_CANNON_SML_MASK_PMAP_ANIM,705,10,sc2code/ships/druuge/igfxres.h,GFXRES,base/ships/druuge/cansml.ani
DRUUGE_CAPT_MASK_PMAP_ANIM,705,11,sc2code/ships/druuge/igfxres.h,GFXRES,base/ships/druuge/drucap.ani
SLYLANDRO_CODE,717,0,sc2code/ships/slylandr/icode.h,SHIP,14
SLYLANDRO_VICTORY_SONG,717,0,sc2code/ships/slylandr/imusicre.h,MUSICRES,base/ships/slylandr/slyditty.mod
SLYLANDRO_RACE_STRINGS,717,1,sc2code/ships/slylandr/istrtab.h,STRTAB,base/ships/slylandr/slytext.txt
SLYLANDRO_SHIP_SOUNDS,717,2,sc2code/ships/slylandr/isndres.h,SNDRES,base/ships/slylandr/slysound.snd
SLYLANDRO_ICON_MASK_PMAP_ANIM,717,3,sc2code/ships/slylandr/igfxres.h,GFXRES,base/ships/slylandr/slyicons.ani
SLYLANDRO_MICON_MASK_PMAP_ANIM,717,4,sc2code/ships/slylandr/igfxres.h,GFXRES,base/ships/slylandr/slymicon.ani
SLYLANDRO_BIG_MASK_PMAP_ANIM,717,5,sc2code/ships/slylandr/igfxres.h,GFXRES,base/ships/slylandr/slylandr.big
SLYLANDRO_MED_MASK_PMAP_ANIM,717,6,sc2code/ships/slylandr/igfxres.h,GFXRES,base/ships/slylandr/slylandr.med
SLYLANDRO_SML_MASK_PMAP_ANIM,717,7,sc2code/ships/slylandr/igfxres.h,GFXRES,base/ships/slylandr/slylandr.sml
SLYLANDRO_CAPTAIN_MASK_PMAP_ANIM,717,8,sc2code/ships/slylandr/igfxres.h,GFXRES,base/ships/slylandr/slycap.ani
UTWIG_CODE,724,0,sc2code/ships/utwig/icode.h,SHIP,21
UTWIG_VICTORY_SONG,724,0,sc2code/ships/utwig/imusicre.h,MUSICRES,base/ships/utwig/utwditty.mod
UTWIG_RACE_STRINGS,724,1,sc2code/ships/utwig/istrtab.h,STRTAB,base/ships/utwig/utwtext.txt
UTWIG_SHIP_SOUNDS,724,2,sc2code/ships/utwig/isndres.h,SNDRES,base/ships/utwig/utwsound.snd
UTWIG_ICON_MASK_PMAP_ANIM,724,3,sc2code/ships/utwig/igfxres.h,GFXRES,base/ships/utwig/utwicons.ani
UTWIG_MICON_MASK_PMAP_ANIM,724,4,sc2code/ships/utwig/igfxres.h,GFXRES,base/ships/utwig/utwmicon.ani
UTWIG_BIG_MASK_PMAP_ANIM,724,5,sc2code/ships/utwig/igfxres.h,GFXRES,base/ships/utwig/utwig.big
UTWIG_MED_MASK_PMAP_ANIM,724,6,sc2code/ships/utwig/igfxres.h,GFXRES,base/ships/utwig/utwig.med
UTWIG_SML_MASK_PMAP_ANIM,724,7,sc2code/ships/utwig/igfxres.h,GFXRES,base/ships/utwig/utwig.sml
LANCE_BIG_MASK_PMAP_ANIM,724,8,sc2code/ships/utwig/igfxres.h,GFXRES,base/ships/utwig/lanbig.ani
LANCE_MED_MASK_PMAP_ANIM,724,9,sc2code/ships/utwig/igfxres.h,GFXRES,base/ships/utwig/lanmed.ani
LANCE_SML_MASK_PMAP_ANIM,724,10,sc2code/ships/utwig/igfxres.h,GFXRES,base/ships/utwig/lansml.ani
UTWIG_CAPTAIN_MASK_PMAP_ANIM,724,11,sc2code/ships/utwig/igfxres.h,GFXRES,base/ships/utwig/utwcap.ani
URQUAN_CODE,723,0,sc2code/ships/urquan/icode.h,SHIP,20
URQUAN_VICTORY_SONG,723,0,sc2code/ships/urquan/imusicre.h,MUSICRES,base/ships/urquan/urqditty.mod
URQUAN_RACE_STRINGS,723,1,sc2code/ships/urquan/istrtab.h,STRTAB,base/ships/urquan/urqtext.txt
URQUAN_SHIP_SOUNDS,723,2,sc2code/ships/urquan/isndres.h,SNDRES,base/ships/urquan/urqsound.snd
URQUAN_ICON_MASK_PMAP_ANIM,723,3,sc2code/ships/urquan/igfxres.h,GFXRES,base/ships/urquan/urqicons.ani
URQUAN_MICON_MASK_PMAP_ANIM,723,4,sc2code/ships/urquan/igfxres.h,GFXRES,base/ships/urquan/urqmicon.ani
URQUAN_BIG_MASK_PMAP_ANIM,723,5,sc2code/ships/urquan/igfxres.h,GFXRES,base/ships/urquan/urquan.big
URQUAN_MED_MASK_PMAP_ANIM,723,6,sc2code/ships/urquan/igfxres.h,GFXRES,base/ships/urquan/urquan.med
URQUAN_SML_MASK_PMAP_ANIM,723,7,sc2code/ships/urquan/igfxres.h,GFXRES,base/ships/urquan/urquan.sml
FUSION_BIG_MASK_PMAP_ANIM,723,8,sc2code/ships/urquan/igfxres.h,GFXRES,base/ships/urquan/fusion.big
FUSION_MED_MASK_PMAP_ANIM,723,9,sc2code/ships/urquan/igfxres.h,GFXRES,base/ships/urquan/fusion.med
FUSION_SML_MASK_PMAP_ANIM,723,10,sc2code/ships/urquan/igfxres.h,GFXRES,base/ships/urquan/fusion.sml
FIGHTER_BIG_MASK_PMAP_ANIM,723,11,sc2code/ships/urquan/igfxres.h,GFXRES,base/ships/urquan/fight.big
FIGHTER_MED_MASK_PMAP_ANIM,723,12,sc2code/ships/urquan/igfxres.h,GFXRES,base/ships/urquan/fight.med
FIGHTER_SML_MASK_PMAP_ANIM,723,13,sc2code/ships/urquan/igfxres.h,GFXRES,base/ships/urquan/fight.sml
URQUAN_CAPTAIN_MASK_PMAP_ANIM,723,14,sc2code/ships/urquan/igfxres.h,GFXRES,base/ships/urquan/urqcap.ani
CHMMR_CODE,704,0,sc2code/ships/chmmr/icode.h,SHIP,4
CHMMR_VICTORY_SONG,704,0,sc2code/ships/chmmr/imusicre.h,MUSICRES,base/ships/chmmr/chmditty.mod
CHMMR_RACE_STRINGS,704,1,sc2code/ships/chmmr/istrtab.h,STRTAB,base/ships/chmmr/chmtext.txt
CHMMR_SHIP_SOUNDS,704,2,sc2code/ships/chmmr/isndres.h,SNDRES,base/ships/chmmr/chmsound.snd
CHMMR_ICON_MASK_PMAP_ANIM,704,3,sc2code/ships/chmmr/igfxres.h,GFXRES,base/ships/chmmr/chmicons.ani
CHMMR_MICON_MASK_PMAP_ANIM,704,4,sc2code/ships/chmmr/igfxres.h,GFXRES,base/ships/chmmr/chmmicon.ani
CHMMR_BIG_MASK_PMAP_ANIM,704,5,sc2code/ships/chmmr/igfxres.h,GFXRES,base/ships/chmmr/chmmr.big
CHMMR_MED_MASK_PMAP_ANIM,704,6,sc2code/ships/chmmr/igfxres.h,GFXRES,base/ships/chmmr/chmmr.med
CHMMR_SML_MASK_PMAP_ANIM,704,7,sc2code/ships/chmmr/igfxres.h,GFXRES,base/ships/chmmr/chmmr.sml
MUZZLE_BIG_MASK_PMAP_ANIM,704,8,sc2code/ships/chmmr/igfxres.h,GFXRES,base/ships/chmmr/muzbig.ani
MUZZLE_MED_MASK_PMAP_ANIM,704,9,sc2code/ships/chmmr/igfxres.h,GFXRES,base/ships/chmmr/muzmed.ani
MUZZLE_SML_MASK_PMAP_ANIM,704,10,sc2code/ships/chmmr/igfxres.h,GFXRES,base/ships/chmmr/muzsml.ani
SATELLITE_BIG_MASK_PMAP_ANIM,704,11,sc2code/ships/chmmr/igfxres.h,GFXRES,base/ships/chmmr/satbig.ani
SATELLITE_MED_MASK_PMAP_ANIM,704,12,sc2code/ships/chmmr/igfxres.h,GFXRES,base/ships/chmmr/satmed.ani
SATELLITE_SML_MASK_PMAP_ANIM,704,13,sc2code/ships/chmmr/igfxres.h,GFXRES,base/ships/chmmr/satsml.ani
CHMMR_CAPTAIN_MASK_PMAP_ANIM,704,14,sc2code/ships/chmmr/igfxres.h,GFXRES,base/ships/chmmr/chmcap.ani
MYCON_CODE,711,0,sc2code/ships/mycon/icode.h,SHIP,10
MYCON_VICTORY_SONG,711,0,sc2code/ships/mycon/imusicre.h,MUSICRES,base/ships/mycon/mycditty.mod
MYCON_RACE_STRINGS,711,1,sc2code/ships/mycon/istrtab.h,STRTAB,base/ships/mycon/myctext.txt
MYCON_SHIP_SOUNDS,711,2,sc2code/ships/mycon/isndres.h,SNDRES,base/ships/mycon/mycsound.snd
MYCON_ICON_MASK_PMAP_ANIM,711,3,sc2code/ships/mycon/igfxres.h,GFXRES,base/ships/mycon/mycicons.ani
MYCON_MICON_MASK_PMAP_ANIM,711,4,sc2code/ships/mycon/igfxres.h,GFXRES,base/ships/mycon/mycmicon.ani
MYCON_BIG_MASK_PMAP_ANIM,711,5,sc2code/ships/mycon/igfxres.h,GFXRES,base/ships/mycon/mycon.big
MYCON_MED_MASK_PMAP_ANIM,711,6,sc2code/ships/mycon/igfxres.h,GFXRES,base/ships/mycon/mycon.med
MYCON_SML_MASK_PMAP_ANIM,711,7,sc2code/ships/mycon/igfxres.h,GFXRES,base/ships/mycon/mycon.sml
PLASMA_BIG_MASK_PMAP_ANIM,711,8,sc2code/ships/mycon/igfxres.h,GFXRES,base/ships/mycon/plasma.big
PLASMA_MED_MASK_PMAP_ANIM,711,9,sc2code/ships/mycon/igfxres.h,GFXRES,base/ships/mycon/plasma.med
PLASMA_SML_MASK_PMAP_ANIM,711,10,sc2code/ships/mycon/igfxres.h,GFXRES,base/ships/mycon/plasma.sml
MYCON_CAPTAIN_MASK_PMAP_ANIM,711,11,sc2code/ships/mycon/igfxres.h,GFXRES,base/ships/mycon/myccap.ani
SHOFIXTI_CODE,715,0,sc2code/ships/shofixti/icode.h,SHIP,13
SHOFIXTI_VICTORY_SONG,715,0,sc2code/ships/shofixti/imusicre.h,MUSICRES,base/ships/shofixti/shoditty.mod
SHOFIXTI_RACE_STRINGS,715,1,sc2code/ships/shofixti/istrtab.h,STRTAB,base/ships/shofixti/shotext.txt
SHOFIXTI_SHIP_SOUNDS,715,2,sc2code/ships/shofixti/isndres.h,SNDRES,base/ships/shofixti/shosound.snd
SHOFIXTI_ICON_MASK_PMAP_ANIM,715,3,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/shoicons.ani
SHOFIXTI_MICON_MASK_PMAP_ANIM,715,4,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/shomicon.ani
SHOFIXTI_BIG_MASK_PMAP_ANIM,715,5,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/shofixti.big
SHOFIXTI_MED_MASK_PMAP_ANIM,715,6,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/shofixti.med
SHOFIXTI_SML_MASK_PMAP_ANIM,715,7,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/shofixti.sml
DESTRUCT_BIG_MASK_ANIM,715,8,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/destruct.big
DESTRUCT_MED_MASK_ANIM,715,9,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/destruct.med
DESTRUCT_SML_MASK_ANIM,715,10,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/destruct.sml
SHOFIXTI_CAPTAIN_MASK_PMAP_ANIM,715,11,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/shocap.ani
OLDSHOF_BIG_MASK_PMAP_ANIM,715,12,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/oldshof.big
OLDSHOF_MED_MASK_PMAP_ANIM,715,13,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/oldshof.med
OLDSHOF_SML_MASK_PMAP_ANIM,715,14,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/oldshof.sml
OLDSHOF_CAPTAIN_MASK_PMAP_ANIM,715,15,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/oldcap.ani
DART_BIG_MASK_PMAP_ANIM,715,16,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/missile.big
DART_MED_MASK_PMAP_ANIM,715,17,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/missile.med
DART_SML_MASK_PMAP_ANIM,715,18,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/missile.sml
KOHR_AH_CODE,702,0,sc2code/ships/blackurq/icode.h,SHIP,2
KOHR_AH_VICTORY_SONG,702,0,sc2code/ships/blackurq/imusicre.h,MUSICRES,base/ships/kohrah/bladitty.mod
KOHR_AH_RACE_STRINGS,702,1,sc2code/ships/blackurq/istrtab.h,STRTAB,base/ships/kohrah/blatext.txt
KOHR_AH_SHIP_SOUNDS,702,2,sc2code/ships/blackurq/isndres.h,SNDRES,base/ships/kohrah/blasound.snd
KOHR_AH_ICON_MASK_PMAP_ANIM,702,3,sc2code/ships/blackurq/igfxres.h,GFXRES,base/ships/kohrah/blaicons.ani
KOHR_AH_MICON_MASK_PMAP_ANIM,702,4,sc2code/ships/blackurq/igfxres.h,GFXRES,base/ships/kohrah/blamicon.ani
KOHR_AH_BIG_MASK_PMAP_ANIM,702,5,sc2code/ships/blackurq/igfxres.h,GFXRES,base/ships/kohrah/blackurq.big
KOHR_AH_MED_MASK_PMAP_ANIM,702,6,sc2code/ships/blackurq/igfxres.h,GFXRES,base/ships/kohrah/blackurq.med
KOHR_AH_SML_MASK_PMAP_ANIM,702,7,sc2code/ships/blackurq/igfxres.h,GFXRES,base/ships/kohrah/blackurq.sml
BUZZSAW_BIG_MASK_PMAP_ANIM,702,8,sc2code/ships/blackurq/igfxres.h,GFXRES,base/ships/kohrah/buzbig.ani
BUZZSAW_MED_MASK_PMAP_ANIM,702,9,sc2code/ships/blackurq/igfxres.h,GFXRES,base/ships/kohrah/buzmed.ani
BUZZSAW_SML_MASK_PMAP_ANIM,702,10,sc2code/ships/blackurq/igfxres.h,GFXRES,base/ships/kohrah/buzsml.ani
GAS_BIG_MASK_PMAP_ANIM,702,11,sc2code/ships/blackurq/igfxres.h,GFXRES,base/ships/kohrah/gasbig.ani
GAS_MED_MASK_PMAP_ANIM,702,12,sc2code/ships/blackurq/igfxres.h,GFXRES,base/ships/kohrah/gasmed.ani
GAS_SML_MASK_PMAP_ANIM,702,13,sc2code/ships/blackurq/igfxres.h,GFXRES,base/ships/kohrah/gassml.ani
KOHR_AH_CAPTAIN_MASK_PMAP_ANIM,702,14,sc2code/ships/blackurq/igfxres.h,GFXRES,base/ships/kohrah/blacap.ani
MELNORME_CODE,709,0,sc2code/ships/melnorme/icode.h,SHIP,8
MELNORME_VICTORY_SONG,709,0,sc2code/ships/melnorme/imusicre.h,MUSICRES,base/ships/melnorme/melditty.mod
MELNORME_RACE_STRINGS,709,1,sc2code/ships/melnorme/istrtab.h,STRTAB,base/ships/melnorme/meltext.txt
MELNORME_SHIP_SOUNDS,709,2,sc2code/ships/melnorme/isndres.h,SNDRES,base/ships/melnorme/melsound.snd
MELNORME_ICON_MASK_PMAP_ANIM,709,3,sc2code/ships/melnorme/igfxres.h,GFXRES,base/ships/melnorme/melicons.ani
MELNORME_MICON_MASK_PMAP_ANIM,709,4,sc2code/ships/melnorme/igfxres.h,GFXRES,base/ships/melnorme/melmicon.ani
MELNORME_BIG_MASK_PMAP_ANIM,709,5,sc2code/ships/melnorme/igfxres.h,GFXRES,base/ships/melnorme/melnorme.big
MELNORME_MED_MASK_PMAP_ANIM,709,6,sc2code/ships/melnorme/igfxres.h,GFXRES,base/ships/melnorme/melnorme.med
MELNORME_SML_MASK_PMAP_ANIM,709,7,sc2code/ships/melnorme/igfxres.h,GFXRES,base/ships/melnorme/melnorme.sml
PUMPUP_BIG_MASK_PMAP_ANIM,709,8,sc2code/ships/melnorme/igfxres.h,GFXRES,base/ships/melnorme/pumpbig.ani
PUMPUP_MED_MASK_PMAP_ANIM,709,9,sc2code/ships/melnorme/igfxres.h,GFXRES,base/ships/melnorme/pumpmed.ani
PUMPUP_SML_MASK_PMAP_ANIM,709,10,sc2code/ships/melnorme/igfxres.h,GFXRES,base/ships/melnorme/pumpsml.ani
CONFUSE_BIG_MASK_PMAP_ANIM,709,11,sc2code/ships/melnorme/igfxres.h,GFXRES,base/ships/melnorme/confubig.ani
CONFUSE_MED_MASK_PMAP_ANIM,709,12,sc2code/ships/melnorme/igfxres.h,GFXRES,base/ships/melnorme/confumed.ani
CONFUSE_SML_MASK_PMAP_ANIM,709,13,sc2code/ships/melnorme/igfxres.h,GFXRES,base/ships/melnorme/confusml.ani
MELNORME_CAPTAIN_MASK_PMAP_ANIM,709,14,sc2code/ships/melnorme/igfxres.h,GFXRES,base/ships/melnorme/melcap.ani
ZOQFOTPIK_CODE,727,0,sc2code/ships/zoqfot/icode.h,SHIP,24
ZOQFOTPIK_VICTORY_SONG,727,0,sc2code/ships/zoqfot/imusicre.h,MUSICRES,base/ships/zoqfot/zoqditty.mod
ZOQFOTPIK_RACE_STRINGS,727,1,sc2code/ships/zoqfot/istrtab.h,STRTAB,base/ships/zoqfot/zoqtext.txt
ZOQFOTPIK_SHIP_SOUNDS,727,2,sc2code/ships/zoqfot/isndres.h,SNDRES,base/ships/zoqfot/zoqsound.snd
ZOQFOTPIK_ICON_MASK_PMAP_ANIM,727,3,sc2code/ships/zoqfot/igfxres.h,GFXRES,base/ships/zoqfot/zoqicons.ani
ZOQFOTPIK_MICON_MASK_PMAP_ANIM,727,4,sc2code/ships/zoqfot/igfxres.h,GFXRES,base/ships/zoqfot/zoqmicon.ani
ZOQFOTPIK_BIG_MASK_PMAP_ANIM,727,5,sc2code/ships/zoqfot/igfxres.h,GFXRES,base/ships/zoqfot/zoqfot.big
ZOQFOTPIK_MED_MASK_PMAP_ANIM,727,6,sc2code/ships/zoqfot/igfxres.h,GFXRES,base/ships/zoqfot/zoqfot.med
ZOQFOTPIK_SML_MASK_PMAP_ANIM,727,7,sc2code/ships/zoqfot/igfxres.h,GFXRES,base/ships/zoqfot/zoqfot.sml
SPIT_BIG_MASK_PMAP_ANIM,727,8,sc2code/ships/zoqfot/igfxres.h,GFXRES,base/ships/zoqfot/spitbig.ani
SPIT_MED_MASK_PMAP_ANIM,727,9,sc2code/ships/zoqfot/igfxres.h,GFXRES,base/ships/zoqfot/spitmed.ani
SPIT_SML_MASK_PMAP_ANIM,727,10,sc2code/ships/zoqfot/igfxres.h,GFXRES,base/ships/zoqfot/spitsml.ani
STINGER_BIG_MASK_PMAP_ANIM,727,11,sc2code/ships/zoqfot/igfxres.h,GFXRES,base/ships/zoqfot/stibig.ani
STINGER_MED_MASK_PMAP_ANIM,727,12,sc2code/ships/zoqfot/igfxres.h,GFXRES,base/ships/zoqfot/stimed.ani
STINGER_SML_MASK_PMAP_ANIM,727,13,sc2code/ships/zoqfot/igfxres.h,GFXRES,base/ships/zoqfot/stisml.ani
ZOQFOTPIK_CAPTAIN_MASK_PMAP_ANIM,727,14,sc2code/ships/zoqfot/igfxres.h,GFXRES,base/ships/zoqfot/zoqcap.ani
VUX_CODE,725,0,sc2code/ships/vux/icode.h,SHIP,22
VUX_VICTORY_SONG,725,0,sc2code/ships/vux/imusicre.h,MUSICRES,base/ships/vux/vuxditty.mod
VUX_RACE_STRINGS,725,1,sc2code/ships/vux/istrtab.h,STRTAB,base/ships/vux/vuxtext.txt
VUX_SHIP_SOUNDS,725,2,sc2code/ships/vux/isndres.h,SNDRES,base/ships/vux/vuxsound.snd
VUX_ICON_MASK_PMAP_ANIM,725,3,sc2code/ships/vux/igfxres.h,GFXRES,base/ships/vux/vuxicons.ani
VUX_MICON_MASK_PMAP_ANIM,725,4,sc2code/ships/vux/igfxres.h,GFXRES,base/ships/vux/vuxmicon.ani
VUX_BIG_MASK_PMAP_ANIM,725,5,sc2code/ships/vux/igfxres.h,GFXRES,base/ships/vux/vux.big
VUX_MED_MASK_PMAP_ANIM,725,6,sc2code/ships/vux/igfxres.h,GFXRES,base/ships/vux/vux.med
VUX_SML_MASK_PMAP_ANIM,725,7,sc2code/ships/vux/igfxres.h,GFXRES,base/ships/vux/vux.sml
LIMPETS_BIG_MASK_PMAP_ANIM,725,8,sc2code/ships/vux/igfxres.h,GFXRES,base/ships/vux/limpets.big
LIMPETS_MED_MASK_PMAP_ANIM,725,9,sc2code/ships/vux/igfxres.h,GFXRES,base/ships/vux/limpets.med
LIMPETS_SML_MASK_PMAP_ANIM,725,10,sc2code/ships/vux/igfxres.h,GFXRES,base/ships/vux/limpets.sml
SLIME_MASK_PMAP_ANIM,725,11,sc2code/ships/vux/igfxres.h,GFXRES,base/ships/vux/slime.ani
VUX_CAPTAIN_MASK_PMAP_ANIM,725,12,sc2code/ships/vux/igfxres.h,GFXRES,base/ships/vux/vuxcap.ani
ARILOU_CODE,701,0,sc2code/ships/arilou/icode.h,SHIP,1
ARILOU_VICTORY_SONG,701,0,sc2code/ships/arilou/imusicre.h,MUSICRES,base/ships/arilou/ariditty.mod
ARILOU_RACE_STRINGS,701,1,sc2code/ships/arilou/istrtab.h,STRTAB,base/ships/arilou/aritext.txt
ARILOU_SHIP_SOUNDS,701,2,sc2code/ships/arilou/isndres.h,SNDRES,base/ships/arilou/arisound.snd
ARILOU_ICON_MASK_PMAP_ANIM,701,3,sc2code/ships/arilou/igfxres.h,GFXRES,base/ships/arilou/ariicons.ani
ARILOU_MICON_MASK_PMAP_ANIM,701,4,sc2code/ships/arilou/igfxres.h,GFXRES,base/ships/arilou/arimicon.ani
ARILOU_BIG_MASK_PMAP_ANIM,701,5,sc2code/ships/arilou/igfxres.h,GFXRES,base/ships/arilou/arilou.big
ARILOU_MED_MASK_PMAP_ANIM,701,6,sc2code/ships/arilou/igfxres.h,GFXRES,base/ships/arilou/arilou.med
ARILOU_SML_MASK_PMAP_ANIM,701,7,sc2code/ships/arilou/igfxres.h,GFXRES,base/ships/arilou/arilou.sml
WARP_BIG_MASK_PMAP_ANIM,701,8,sc2code/ships/arilou/igfxres.h,GFXRES,base/ships/arilou/warp.big
WARP_MED_MASK_PMAP_ANIM,701,9,sc2code/ships/arilou/igfxres.h,GFXRES,base/ships/arilou/warp.med
WARP_SML_MASK_PMAP_ANIM,701,10,sc2code/ships/arilou/igfxres.h,GFXRES,base/ships/arilou/warp.sml
ARILOU_CAPTAIN_MASK_PMAP_ANIM,701,11,sc2code/ships/arilou/igfxres.h,GFXRES,base/ships/arilou/aricap.ani
SPATHI_CODE,718,0,sc2code/ships/spathi/icode.h,SHIP,15
SPATHI_VICTORY_SONG,718,0,sc2code/ships/spathi/imusicre.h,MUSICRES,base/ships/spathi/spaditty.mod
SPATHI_RACE_STRINGS,718,1,sc2code/ships/spathi/istrtab.h,STRTAB,base/ships/spathi/spatext.txt
SPATHI_SHIP_SOUNDS,718,2,sc2code/ships/spathi/isndres.h,SNDRES,base/ships/spathi/spasound.snd
SPATHI_ICON_MASK_PMAP_ANIM,718,3,sc2code/ships/spathi/igfxres.h,GFXRES,base/ships/spathi/spaicons.ani
SPATHI_MICON_MASK_PMAP_ANIM,718,4,sc2code/ships/spathi/igfxres.h,GFXRES,base/ships/spathi/spamicon.ani
SPATHI_BIG_MASK_PMAP_ANIM,718,5,sc2code/ships/spathi/igfxres.h,GFXRES,base/ships/spathi/spathi.big
SPATHI_MED_MASK_PMAP_ANIM,718,6,sc2code/ships/spathi/igfxres.h,GFXRES,base/ships/spathi/spathi.med
SPATHI_SML_MASK_PMAP_ANIM,718,7,sc2code/ships/spathi/igfxres.h,GFXRES,base/ships/spathi/spathi.sml
MISSILE_BIG_MASK_PMAP_ANIM,718,8,sc2code/ships/spathi/igfxres.h,GFXRES,base/ships/spathi/missile.big
MISSILE_MED_MASK_PMAP_ANIM,718,9,sc2code/ships/spathi/igfxres.h,GFXRES,base/ships/spathi/missile.med
MISSILE_SML_MASK_PMAP_ANIM,718,10,sc2code/ships/spathi/igfxres.h,GFXRES,base/ships/spathi/missile.sml
DISCRIM_BIG_MASK_PMAP_ANIM,718,11,sc2code/ships/spathi/igfxres.h,GFXRES,base/ships/spathi/discrim.big
DISCRIM_MED_MASK_PMAP_ANIM,718,12,sc2code/ships/spathi/igfxres.h,GFXRES,base/ships/spathi/discrim.med
DISCRIM_SML_MASK_PMAP_ANIM,718,13,sc2code/ships/spathi/igfxres.h,GFXRES,base/ships/spathi/discrim.sml
SPATHI_CAPTAIN_MASK_PMAP_ANIM,718,14,sc2code/ships/spathi/igfxres.h,GFXRES,base/ships/spathi/spacap.ani
PKUNK_CODE,713,0,sc2code/ships/pkunk/icode.h,SHIP,12
PKUNK_VICTORY_SONG,713,0,sc2code/ships/pkunk/imusicre.h,MUSICRES,base/ships/pkunk/pkuditty.mod
PKUNK_RACE_STRINGS,713,1,sc2code/ships/pkunk/istrtab.h,STRTAB,base/ships/pkunk/pkutext.txt
PKUNK_SHIP_SOUNDS,713,2,sc2code/ships/pkunk/isndres.h,SNDRES,base/ships/pkunk/pkusound.snd
PKUNK_ICON_MASK_PMAP_ANIM,713,3,sc2code/ships/pkunk/igfxres.h,GFXRES,base/ships/pkunk/pkuicons.ani
PKUNK_MICON_MASK_PMAP_ANIM,713,4,sc2code/ships/pkunk/igfxres.h,GFXRES,base/ships/pkunk/pkumicon.ani
PKUNK_BIG_MASK_PMAP_ANIM,713,5,sc2code/ships/pkunk/igfxres.h,GFXRES,base/ships/pkunk/pkunk.big
PKUNK_MED_MASK_PMAP_ANIM,713,6,sc2code/ships/pkunk/igfxres.h,GFXRES,base/ships/pkunk/pkunk.med
PKUNK_SML_MASK_PMAP_ANIM,713,7,sc2code/ships/pkunk/igfxres.h,GFXRES,base/ships/pkunk/pkunk.sml
BUG_BIG_MASK_PMAP_ANIM,713,8,sc2code/ships/pkunk/igfxres.h,GFXRES,base/ships/pkunk/bugbig.ani
BUG_MED_MASK_PMAP_ANIM,713,9,sc2code/ships/pkunk/igfxres.h,GFXRES,base/ships/pkunk/bugmed.ani
BUG_SML_MASK_PMAP_ANIM,713,10,sc2code/ships/pkunk/igfxres.h,GFXRES,base/ships/pkunk/bugsml.ani
PKUNK_CAPTAIN_MASK_PMAP_ANIM,713,11,sc2code/ships/pkunk/igfxres.h,GFXRES,base/ships/pkunk/pkucap.ani
HUMAN_CODE,706,0,sc2code/ships/human/icode.h,SHIP,6
HUMAN_VICTORY_SONG,706,0,sc2code/ships/human/imusicre.h,MUSICRES,base/ships/human/humditty.mod
HUMAN_RACE_STRINGS,706,1,sc2code/ships/human/istrtab.h,STRTAB,base/ships/human/humtext.txt
HUMAN_SHIP_SOUNDS,706,2,sc2code/ships/human/isndres.h,SNDRES,base/ships/human/humsound.snd
HUMAN_ICON_MASK_PMAP_ANIM,706,3,sc2code/ships/human/igfxres.h,GFXRES,base/ships/human/humicons.ani
HUMAN_MICON_MASK_PMAP_ANIM,706,4,sc2code/ships/human/igfxres.h,GFXRES,base/ships/human/hummicon.ani
HUMAN_BIG_MASK_PMAP_ANIM,706,5,sc2code/ships/human/igfxres.h,GFXRES,base/ships/human/human.big
HUMAN_MED_MASK_PMAP_ANIM,706,6,sc2code/ships/human/igfxres.h,GFXRES,base/ships/human/human.med
HUMAN_SML_MASK_PMAP_ANIM,706,7,sc2code/ships/human/igfxres.h,GFXRES,base/ships/human/human.sml
SATURN_BIG_MASK_PMAP_ANIM,706,8,sc2code/ships/human/igfxres.h,GFXRES,base/ships/human/saturn.big
SATURN_MED_MASK_PMAP_ANIM,706,9,sc2code/ships/human/igfxres.h,GFXRES,base/ships/human/saturn.med
SATURN_SML_MASK_PMAP_ANIM,706,10,sc2code/ships/human/igfxres.h,GFXRES,base/ships/human/saturn.sml
HUMAN_CAPTAIN_MASK_PMAP_ANIM,706,11,sc2code/ships/human/igfxres.h,GFXRES,base/ships/human/humcap.ani
UMGAH_CODE,722,0,sc2code/ships/umgah/icode.h,SHIP,19
UMGAH_VICTORY_SONG,722,0,sc2code/ships/umgah/imusicre.h,MUSICRES,base/ships/umgah/umgditty.mod
UMGAH_RACE_STRINGS,722,1,sc2code/ships/umgah/istrtab.h,STRTAB,base/ships/umgah/umgtext.txt
UMGAH_SHIP_SOUNDS,722,2,sc2code/ships/umgah/isndres.h,SNDRES,base/ships/umgah/umgsound.snd
UMGAH_ICON_MASK_PMAP_ANIM,722,3,sc2code/ships/umgah/igfxres.h,GFXRES,base/ships/umgah/umgicons.ani
UMGAH_MICON_MASK_PMAP_ANIM,722,4,sc2code/ships/umgah/igfxres.h,GFXRES,base/ships/umgah/umgmicon.ani
UMGAH_BIG_MASK_PMAP_ANIM,722,5,sc2code/ships/umgah/igfxres.h,GFXRES,base/ships/umgah/umgah.big
UMGAH_MED_MASK_PMAP_ANIM,722,6,sc2code/ships/umgah/igfxres.h,GFXRES,base/ships/umgah/umgah.med
UMGAH_SML_MASK_PMAP_ANIM,722,7,sc2code/ships/umgah/igfxres.h,GFXRES,base/ships/umgah/umgah.sml
SPRITZ_MASK_PMAP_ANIM,722,8,sc2code/ships/umgah/igfxres.h,GFXRES,base/ships/umgah/spritz.ani
CONE_BIG_MASK_ANIM,722,9,sc2code/ships/umgah/igfxres.h,GFXRES,base/ships/umgah/cone.big
CONE_MED_MASK_ANIM,722,10,sc2code/ships/umgah/igfxres.h,GFXRES,base/ships/umgah/cone.med
CONE_SML_MASK_ANIM,722,11,sc2code/ships/umgah/igfxres.h,GFXRES,base/ships/umgah/cone.sml
UMGAH_CAPTAIN_MASK_PMAP_ANIM,722,12,sc2code/ships/umgah/igfxres.h,GFXRES,base/ships/umgah/umgcap.ani
CHENJESU_CODE,703,0,sc2code/ships/chenjesu/icode.h,SHIP,3
CHENJESU_VICTORY_SONG,703,0,sc2code/ships/chenjesu/imusicre.h,MUSICRES,base/ships/chenjesu/cheditty.mod
CHENJESU_RACE_STRINGS,703,1,sc2code/ships/chenjesu/istrtab.h,STRTAB,base/ships/chenjesu/chetext.txt
CHENJESU_SHIP_SOUNDS,703,2,sc2code/ships/chenjesu/isndres.h,SNDRES,base/ships/chenjesu/chesound.snd
CHENJESU_ICON_MASK_PMAP_ANIM,703,3,sc2code/ships/chenjesu/igfxres.h,GFXRES,base/ships/chenjesu/cheicons.ani
CHENJESU_MICON_MASK_PMAP_ANIM,703,4,sc2code/ships/chenjesu/igfxres.h,GFXRES,base/ships/chenjesu/chemicon.ani
CHENJESU_BIG_MASK_PMAP_ANIM,703,5,sc2code/ships/chenjesu/igfxres.h,GFXRES,base/ships/chenjesu/chenjesu.big
CHENJESU_MED_MASK_PMAP_ANIM,703,6,sc2code/ships/chenjesu/igfxres.h,GFXRES,base/ships/chenjesu/chenjesu.med
CHENJESU_SML_MASK_PMAP_ANIM,703,7,sc2code/ships/chenjesu/igfxres.h,GFXRES,base/ships/chenjesu/chenjesu.sml
SPARK_BIG_MASK_PMAP_ANIM,703,8,sc2code/ships/chenjesu/igfxres.h,GFXRES,base/ships/chenjesu/spark.big
SPARK_MED_MASK_PMAP_ANIM,703,9,sc2code/ships/chenjesu/igfxres.h,GFXRES,base/ships/chenjesu/spark.med
SPARK_SML_MASK_PMAP_ANIM,703,10,sc2code/ships/chenjesu/igfxres.h,GFXRES,base/ships/chenjesu/spark.sml
DOGGY_BIG_MASK_PMAP_ANIM,703,11,sc2code/ships/chenjesu/igfxres.h,GFXRES,base/ships/chenjesu/doggy.big
DOGGY_MED_MASK_PMAP_ANIM,703,12,sc2code/ships/chenjesu/igfxres.h,GFXRES,base/ships/chenjesu/doggy.med
DOGGY_SML_MASK_PMAP_ANIM,703,13,sc2code/ships/chenjesu/igfxres.h,GFXRES,base/ships/chenjesu/doggy.sml
CHENJESU_CAPTAIN_MASK_PMAP_ANIM,703,14,sc2code/ships/chenjesu/igfxres.h,GFXRES,base/ships/chenjesu/checap.ani
SIS_CODE,716,0,sc2code/ships/sis_ship/icode.h,SHIP,26
SIS_VICTORY_SONG,716,0,sc2code/ships/sis_ship/imusicre.h,MUSICRES,base/ships/sis_ship/sisditty.mod
SIS_SHIP_SOUNDS,716,1,sc2code/ships/sis_ship/isndres.h,SNDRES,base/ships/sis_ship/sissound.snd
SIS_ICON_MASK_PMAP_ANIM,716,2,sc2code/ships/sis_ship/igfxres.h,GFXRES,base/ships/sis_ship/sisicons.ani
SIS_BIG_MASK_PMAP_ANIM,716,3,sc2code/ships/sis_ship/igfxres.h,GFXRES,base/ships/sis_ship/sis.big
SIS_MED_MASK_PMAP_ANIM,716,4,sc2code/ships/sis_ship/igfxres.h,GFXRES,base/ships/sis_ship/sis.med
SIS_SML_MASK_PMAP_ANIM,716,5,sc2code/ships/sis_ship/igfxres.h,GFXRES,base/ships/sis_ship/sis.sml
BLASTER_BIG_MASK_PMAP_ANIM,716,6,sc2code/ships/sis_ship/igfxres.h,GFXRES,base/ships/sis_ship/blasbig.ani
BLASTER_MED_MASK_PMAP_ANIM,716,7,sc2code/ships/sis_ship/igfxres.h,GFXRES,base/ships/sis_ship/blasmed.ani
BLASTER_SML_MASK_PMAP_ANIM,716,8,sc2code/ships/sis_ship/igfxres.h,GFXRES,base/ships/sis_ship/blassml.ani
SIS_CAPTAIN_MASK_PMAP_ANIM,716,9,sc2code/ships/sis_ship/igfxres.h,GFXRES,base/ships/sis_ship/siscap.ani
SIS_HYPER_MASK_PMAP_ANIM,716,10,sc2code/ships/sis_ship/igfxres.h,GFXRES,base/ships/sis_ship/sishyper.ani
ILWRATH_CODE,707,0,sc2code/ships/ilwrath/icode.h,SHIP,7
ILWRATH_VICTORY_SONG,707,0,sc2code/ships/ilwrath/imusicre.h,MUSICRES,base/ships/ilwrath/ilwditty.mod
ILWRATH_RACE_STRINGS,707,1,sc2code/ships/ilwrath/istrtab.h,STRTAB,base/ships/ilwrath/ilwtext.txt
ILWRATH_SHIP_SOUNDS,707,2,sc2code/ships/ilwrath/isndres.h,SNDRES,base/ships/ilwrath/ilwsound.snd
ILWRATH_ICON_MASK_PMAP_ANIM,707,3,sc2code/ships/ilwrath/igfxres.h,GFXRES,base/ships/ilwrath/ilwicons.ani
ILWRATH_MICON_MASK_PMAP_ANIM,707,4,sc2code/ships/ilwrath/igfxres.h,GFXRES,base/ships/ilwrath/ilwmicon.ani
ILWRATH_BIG_MASK_PMAP_ANIM,707,5,sc2code/ships/ilwrath/igfxres.h,GFXRES,base/ships/ilwrath/ilwrath.big
ILWRATH_MED_MASK_PMAP_ANIM,707,6,sc2code/ships/ilwrath/igfxres.h,GFXRES,base/ships/ilwrath/ilwrath.med
ILWRATH_SML_MASK_PMAP_ANIM,707,7,sc2code/ships/ilwrath/igfxres.h,GFXRES,base/ships/ilwrath/ilwrath.sml
FIRE_BIG_MASK_PMAP_ANIM,707,8,sc2code/ships/ilwrath/igfxres.h,GFXRES,base/ships/ilwrath/fire.big
FIRE_MED_MASK_PMAP_ANIM,707,9,sc2code/ships/ilwrath/igfxres.h,GFXRES,base/ships/ilwrath/fire.med
FIRE_SML_MASK_PMAP_ANIM,707,10,sc2code/ships/ilwrath/igfxres.h,GFXRES,base/ships/ilwrath/fire.sml
ILWRATH_CAPTAIN_MASK_PMAP_ANIM,707,11,sc2code/ships/ilwrath/igfxres.h,GFXRES,base/ships/ilwrath/ilwcap.ani
SYREEN_CODE,720,0,sc2code/ships/syreen/icode.h,SHIP,17
SYREEN_VICTORY_SONG,720,0,sc2code/ships/syreen/imusicre.h,MUSICRES,base/ships/syreen/syrditty.mod
SYREEN_RACE_STRINGS,720,1,sc2code/ships/syreen/istrtab.h,STRTAB,base/ships/syreen/syrtext.txt
SYREEN_SHIP_SOUNDS,720,2,sc2code/ships/syreen/isndres.h,SNDRES,base/ships/syreen/syrsound.snd
SYREEN_ICON_MASK_PMAP_ANIM,720,3,sc2code/ships/syreen/igfxres.h,GFXRES,base/ships/syreen/syricons.ani
SYREEN_MICON_MASK_PMAP_ANIM,720,4,sc2code/ships/syreen/igfxres.h,GFXRES,base/ships/syreen/syrmicon.ani
SYREEN_BIG_MASK_PMAP_ANIM,720,5,sc2code/ships/syreen/igfxres.h,GFXRES,base/ships/syreen/syreen.big
SYREEN_MED_MASK_PMAP_ANIM,720,6,sc2code/ships/syreen/igfxres.h,GFXRES,base/ships/syreen/syreen.med
SYREEN_SML_MASK_PMAP_ANIM,720,7,sc2code/ships/syreen/igfxres.h,GFXRES,base/ships/syreen/syreen.sml
DAGGER_BIG_MASK_PMAP_ANIM,720,8,sc2code/ships/syreen/igfxres.h,GFXRES,base/ships/syreen/dagger.big
DAGGER_MED_MASK_PMAP_ANIM,720,9,sc2code/ships/syreen/igfxres.h,GFXRES,base/ships/syreen/dagger.med
DAGGER_SML_MASK_PMAP_ANIM,720,10,sc2code/ships/syreen/igfxres.h,GFXRES,base/ships/syreen/dagger.sml
SYREEN_CAPTAIN_MASK_PMAP_ANIM,720,11,sc2code/ships/syreen/igfxres.h,GFXRES,base/ships/syreen/syrcap.ani
PROBE_CODE,714,0,sc2code/ships/probe/icode.h,SHIP,27
PROBE_MICON_MASK_PMAP_ANIM,714,0,sc2code/ships/probe/igfxres.h,GFXRES,base/ships/probe/promicon.ani
MMRNMHRM_CODE,710,0,sc2code/ships/mmrnmhrm/icode.h,SHIP,9
MMRNMHRM_VICTORY_SONG,710,0,sc2code/ships/mmrnmhrm/imusicre.h,MUSICRES,base/ships/mmrnmhrm/mmrditty.mod
MMRNMHRM_RACE_STRINGS,710,1,sc2code/ships/mmrnmhrm/istrtab.h,STRTAB,base/ships/mmrnmhrm/mmrtext.txt
MMRNMHRM_SHIP_SOUNDS,710,2,sc2code/ships/mmrnmhrm/isndres.h,SNDRES,base/ships/mmrnmhrm/mmrsound.snd
MMRNMHRM_ICON_MASK_PMAP_ANIM,710,3,sc2code/ships/mmrnmhrm/igfxres.h,GFXRES,base/ships/mmrnmhrm/mmricons.ani
MMRNMHRM_MICON_MASK_PMAP_ANIM,710,4,sc2code/ships/mmrnmhrm/igfxres.h,GFXRES,base/ships/mmrnmhrm/mmrmicon.ani
MMRNMHRM_BIG_MASK_PMAP_ANIM,710,5,sc2code/ships/mmrnmhrm/igfxres.h,GFXRES,base/ships/mmrnmhrm/mmrnmhrm.big
MMRNMHRM_MED_MASK_PMAP_ANIM,710,6,sc2code/ships/mmrnmhrm/igfxres.h,GFXRES,base/ships/mmrnmhrm/mmrnmhrm.med
MMRNMHRM_SML_MASK_PMAP_ANIM,710,7,sc2code/ships/mmrnmhrm/igfxres.h,GFXRES,base/ships/mmrnmhrm/mmrnmhrm.sml
TORP_BIG_MASK_PMAP_ANIM,710,8,sc2code/ships/mmrnmhrm/igfxres.h,GFXRES,base/ships/mmrnmhrm/torp.big
TORP_MED_MASK_PMAP_ANIM,710,9,sc2code/ships/mmrnmhrm/igfxres.h,GFXRES,base/ships/mmrnmhrm/torp.med
TORP_SML_MASK_PMAP_ANIM,710,10,sc2code/ships/mmrnmhrm/igfxres.h,GFXRES,base/ships/mmrnmhrm/torp.sml
YWING_BIG_MASK_PMAP_ANIM,710,11,sc2code/ships/mmrnmhrm/igfxres.h,GFXRES,base/ships/mmrnmhrm/ywing.big
YWING_MED_MASK_PMAP_ANIM,710,12,sc2code/ships/mmrnmhrm/igfxres.h,GFXRES,base/ships/mmrnmhrm/ywing.med
YWING_SML_MASK_PMAP_ANIM,710,13,sc2code/ships/mmrnmhrm/igfxres.h,GFXRES,base/ships/mmrnmhrm/ywing.sml
MMRNMHRM_CAPTAIN_MASK_PMAP_ANIM,710,14,sc2code/ships/mmrnmhrm/igfxres.h,GFXRES,base/ships/mmrnmhrm/mmrcap.ani
YEHAT_CODE,726,0,sc2code/ships/yehat/icode.h,SHIP,23
YEHAT_VICTORY_SONG,726,0,sc2code/ships/yehat/imusicre.h,MUSICRES,base/ships/yehat/yehditty.mod
YEHAT_RACE_STRINGS,726,1,sc2code/ships/yehat/istrtab.h,STRTAB,base/ships/yehat/yehtext.txt
YEHAT_SHIP_SOUNDS,726,2,sc2code/ships/yehat/isndres.h,SNDRES,base/ships/yehat/yehsound.snd
YEHAT_ICON_MASK_PMAP_ANIM,726,3,sc2code/ships/yehat/igfxres.h,GFXRES,base/ships/yehat/yehicons.ani
YEHAT_MICON_MASK_PMAP_ANIM,726,4,sc2code/ships/yehat/igfxres.h,GFXRES,base/ships/yehat/yehmicon.ani
YEHAT_BIG_MASK_PMAP_ANIM,726,5,sc2code/ships/yehat/igfxres.h,GFXRES,base/ships/yehat/yehat.big
YEHAT_MED_MASK_PMAP_ANIM,726,6,sc2code/ships/yehat/igfxres.h,GFXRES,base/ships/yehat/yehat.med
YEHAT_SML_MASK_PMAP_ANIM,726,7,sc2code/ships/yehat/igfxres.h,GFXRES,base/ships/yehat/yehat.sml
YEHAT_CANNON_BIG_MASK_PMAP_ANIM,726,8,sc2code/ships/yehat/igfxres.h,GFXRES,base/ships/yehat/missile.big
YEHAT_CANNON_MED_MASK_PMAP_ANIM,726,9,sc2code/ships/yehat/igfxres.h,GFXRES,base/ships/yehat/missile.med
YEHAT_CANNON_SML_MASK_PMAP_ANIM,726,10,sc2code/ships/yehat/igfxres.h,GFXRES,base/ships/yehat/missile.sml
SHIELD_BIG_MASK_ANIM,726,11,sc2code/ships/yehat/igfxres.h,GFXRES,base/ships/yehat/shield.big
SHIELD_MED_MASK_ANIM,726,12,sc2code/ships/yehat/igfxres.h,GFXRES,base/ships/yehat/shield.med
SHIELD_SML_MASK_ANIM,726,13,sc2code/ships/yehat/igfxres.h,GFXRES,base/ships/yehat/shield.sml
YEHAT_CAPTAIN_MASK_PMAP_ANIM,726,14,sc2code/ships/yehat/igfxres.h,GFXRES,base/ships/yehat/yehcap.ani
SAMATRA_CODE,708,0,sc2code/ships/lastbat/icode.h,SHIP,25
SAMATRA_VICTORY_SONG,708,0,sc2code/ships/lastbat/imusicre.h,--,--
SAMATRA_SHIP_SOUNDS,708,1,sc2code/ships/lastbat/isndres.h,SNDRES,base/ships/lastbat/lassound.snd
SAMATRA_BIG_MASK_ANIM,708,2,sc2code/ships/lastbat/igfxres.h,GFXRES,base/ships/lastbat/lastbat.big
SAMATRA_MED_MASK_PMAP_ANIM,708,3,sc2code/ships/lastbat/igfxres.h,GFXRES,base/ships/lastbat/lastbat.med
SAMATRA_SML_MASK_PMAP_ANIM,708,4,sc2code/ships/lastbat/igfxres.h,GFXRES,base/ships/lastbat/lastbat.sml
SENTINEL_BIG_MASK_ANIM,708,5,sc2code/ships/lastbat/igfxres.h,GFXRES,base/ships/lastbat/senbig.ani
SENTINEL_MED_MASK_PMAP_ANIM,708,6,sc2code/ships/lastbat/igfxres.h,GFXRES,base/ships/lastbat/senmed.ani
SENTINEL_SML_MASK_PMAP_ANIM,708,7,sc2code/ships/lastbat/igfxres.h,GFXRES,base/ships/lastbat/sensml.ani
GENERATOR_BIG_MASK_ANIM,708,8,sc2code/ships/lastbat/igfxres.h,GFXRES,base/ships/lastbat/genbig.ani
GENERATOR_MED_MASK_PMAP_ANIM,708,9,sc2code/ships/lastbat/igfxres.h,GFXRES,base/ships/lastbat/genmed.ani
GENERATOR_SML_MASK_PMAP_ANIM,708,10,sc2code/ships/lastbat/igfxres.h,GFXRES,base/ships/lastbat/gensml.ani
SAMATRA_CAPTAIN_MASK_PMAP_ANIM,708,11,sc2code/ships/lastbat/igfxres.h,GFXRES,base/ships/lastbat/lascap.ani
SUPOX_CODE,719,0,sc2code/ships/supox/icode.h,SHIP,16
SUPOX_VICTORY_SONG,719,0,sc2code/ships/supox/imusicre.h,MUSICRES,base/ships/supox/supditty.mod
SUPOX_RACE_STRINGS,719,1,sc2code/ships/supox/istrtab.h,STRTAB,base/ships/supox/suptext.txt
SUPOX_SHIP_SOUNDS,719,2,sc2code/ships/supox/isndres.h,SNDRES,base/ships/supox/supsound.snd
SUPOX_ICON_MASK_PMAP_ANIM,719,3,sc2code/ships/supox/igfxres.h,GFXRES,base/ships/supox/supicons.ani
SUPOX_MICON_MASK_PMAP_ANIM,719,4,sc2code/ships/supox/igfxres.h,GFXRES,base/ships/supox/supmicon.ani
SUPOX_BIG_MASK_PMAP_ANIM,719,5,sc2code/ships/supox/igfxres.h,GFXRES,base/ships/supox/supox.big
SUPOX_MED_MASK_PMAP_ANIM,719,6,sc2code/ships/supox/igfxres.h,GFXRES,base/ships/supox/supox.med
SUPOX_SML_MASK_PMAP_ANIM,719,7,sc2code/ships/supox/igfxres.h,GFXRES,base/ships/supox/supox.sml
GOB_BIG_MASK_PMAP_ANIM,719,8,sc2code/ships/supox/igfxres.h,GFXRES,base/ships/supox/gobbig.ani
GOB_MED_MASK_PMAP_ANIM,719,9,sc2code/ships/supox/igfxres.h,GFXRES,base/ships/supox/gobmed.ani
GOB_SML_MASK_PMAP_ANIM,719,10,sc2code/ships/supox/igfxres.h,GFXRES,base/ships/supox/gobsml.ani
SUPOX_CAPTAIN_MASK_PMAP_ANIM,719,11,sc2code/ships/supox/igfxres.h,GFXRES,base/ships/supox/supcap.ani
THRADDASH_CODE,721,0,sc2code/ships/thradd/icode.h,SHIP,18
THRADDASH_VICTORY_SONG,721,0,sc2code/ships/thradd/imusicre.h,MUSICRES,base/ships/thradd/thrditty.mod
THRADDASH_RACE_STRINGS,721,1,sc2code/ships/thradd/istrtab.h,STRTAB,base/ships/thradd/thrtext.txt
THRADDASH_SHIP_SOUNDS,721,2,sc2code/ships/thradd/isndres.h,SNDRES,base/ships/thradd/thrsound.snd
THRADDASH_ICON_MASK_PMAP_ANIM,721,3,sc2code/ships/thradd/igfxres.h,GFXRES,base/ships/thradd/thricons.ani
THRADDASH_MICON_MASK_PMAP_ANIM,721,4,sc2code/ships/thradd/igfxres.h,GFXRES,base/ships/thradd/thrmicon.ani
THRADDASH_BIG_MASK_PMAP_ANIM,721,5,sc2code/ships/thradd/igfxres.h,GFXRES,base/ships/thradd/thradd.big
THRADDASH_MED_MASK_PMAP_ANIM,721,6,sc2code/ships/thradd/igfxres.h,GFXRES,base/ships/thradd/thradd.med
THRADDASH_SML_MASK_PMAP_ANIM,721,7,sc2code/ships/thradd/igfxres.h,GFXRES,base/ships/thradd/thradd.sml
HORN_BIG_MASK_PMAP_ANIM,721,8,sc2code/ships/thradd/igfxres.h,GFXRES,base/ships/thradd/horbig.ani
HORN_MED_MASK_PMAP_ANIM,721,9,sc2code/ships/thradd/igfxres.h,GFXRES,base/ships/thradd/hormed.ani
HORN_SML_MASK_PMAP_ANIM,721,10,sc2code/ships/thradd/igfxres.h,GFXRES,base/ships/thradd/horsml.ani
NAPALM_BIG_MASK_PMAP_ANIM,721,11,sc2code/ships/thradd/igfxres.h,GFXRES,base/ships/thradd/napbig.ani
NAPALM_MED_MASK_PMAP_ANIM,721,12,sc2code/ships/thradd/igfxres.h,GFXRES,base/ships/thradd/napmed.ani
NAPALM_SML_MASK_PMAP_ANIM,721,13,sc2code/ships/thradd/igfxres.h,GFXRES,base/ships/thradd/napsml.ani
THRADDASH_CAPTAIN_MASK_PMAP_ANIM,721,14,sc2code/ships/thradd/igfxres.h,GFXRES,base/ships/thradd/thrcap.ani
ANDROSYNTH_CODE,700,0,sc2code/ships/androsyn/icode.h,SHIP,0
ANDROSYNTH_VICTORY_SONG,700,0,sc2code/ships/androsyn/imusicre.h,MUSICRES,base/ships/androsyn/andditty.mod
ANDROSYNTH_RACE_STRINGS,700,1,sc2code/ships/androsyn/istrtab.h,STRTAB,base/ships/androsyn/andtext.txt
ANDROSYNTH_SHIP_SOUNDS,700,2,sc2code/ships/androsyn/isndres.h,SNDRES,base/ships/androsyn/andsound.snd
ANDROSYNTH_ICON_MASK_PMAP_ANIM,700,3,sc2code/ships/androsyn/igfxres.h,GFXRES,base/ships/androsyn/andicons.ani
ANDROSYNTH_MICON_MASK_PMAP_ANIM,700,4,sc2code/ships/androsyn/igfxres.h,GFXRES,base/ships/androsyn/andmicon.ani
ANDROSYNTH_BIG_MASK_PMAP_ANIM,700,5,sc2code/ships/androsyn/igfxres.h,GFXRES,base/ships/androsyn/androsyn.big
ANDROSYNTH_MED_MASK_PMAP_ANIM,700,6,sc2code/ships/androsyn/igfxres.h,GFXRES,base/ships/androsyn/androsyn.med
ANDROSYNTH_SML_MASK_PMAP_ANIM,700,7,sc2code/ships/androsyn/igfxres.h,GFXRES,base/ships/androsyn/androsyn.sml
BUBBLE_BIG_MASK_PMAP_ANIM,700,8,sc2code/ships/androsyn/igfxres.h,GFXRES,base/ships/androsyn/bubble.big
BUBBLE_MED_MASK_PMAP_ANIM,700,9,sc2code/ships/androsyn/igfxres.h,GFXRES,base/ships/androsyn/bubble.med
BUBBLE_SML_MASK_PMAP_ANIM,700,10,sc2code/ships/androsyn/igfxres.h,GFXRES,base/ships/androsyn/bubble.sml
BLAZER_BIG_MASK_PMAP_ANIM,700,11,sc2code/ships/androsyn/igfxres.h,GFXRES,base/ships/androsyn/blazer.big
BLAZER_MED_MASK_PMAP_ANIM,700,12,sc2code/ships/androsyn/igfxres.h,GFXRES,base/ships/androsyn/blazer.med
BLAZER_SML_MASK_PMAP_ANIM,700,13,sc2code/ships/androsyn/igfxres.h,GFXRES,base/ships/androsyn/blazer.sml
ANDROSYNTH_CAPT_MASK_PMAP_ANIM,700,14,sc2code/ships/androsyn/igfxres.h,GFXRES,base/ships/androsyn/andcap.ani
ORZ_CODE,712,0,sc2code/ships/orz/icode.h,SHIP,11
ORZ_VICTORY_SONG,712,0,sc2code/ships/orz/imusicre.h,MUSICRES,base/ships/orz/orzditty.mod
ORZ_RACE_STRINGS,712,1,sc2code/ships/orz/istrtab.h,STRTAB,base/ships/orz/orztext.txt
ORZ_SHIP_SOUNDS,712,2,sc2code/ships/orz/isndres.h,SNDRES,base/ships/orz/orzsound.snd
ORZ_ICON_MASK_PMAP_ANIM,712,3,sc2code/ships/orz/igfxres.h,GFXRES,base/ships/orz/orzicons.ani
ORZ_MICON_MASK_PMAP_ANIM,712,4,sc2code/ships/orz/igfxres.h,GFXRES,base/ships/orz/orzmicon.ani
ORZ_BIG_MASK_PMAP_ANIM,712,5,sc2code/ships/orz/igfxres.h,GFXRES,base/ships/orz/orz.big
ORZ_MED_MASK_PMAP_ANIM,712,6,sc2code/ships/orz/igfxres.h,GFXRES,base/ships/orz/orz.med
ORZ_SML_MASK_PMAP_ANIM,712,7,sc2code/ships/orz/igfxres.h,GFXRES,base/ships/orz/orz.sml
HOWITZER_BIG_MASK_PMAP_ANIM,712,8,sc2code/ships/orz/igfxres.h,GFXRES,base/ships/orz/howbig.ani
HOWITZER_MED_MASK_PMAP_ANIM,712,9,sc2code/ships/orz/igfxres.h,GFXRES,base/ships/orz/howmed.ani
HOWITZER_SML_MASK_PMAP_ANIM,712,10,sc2code/ships/orz/igfxres.h,GFXRES,base/ships/orz/howsml.ani
TURRET_BIG_MASK_PMAP_ANIM,712,11,sc2code/ships/orz/igfxres.h,GFXRES,base/ships/orz/turbig.ani
TURRET_MED_MASK_PMAP_ANIM,712,12,sc2code/ships/orz/igfxres.h,GFXRES,base/ships/orz/turmed.ani
TURRET_SML_MASK_PMAP_ANIM,712,13,sc2code/ships/orz/igfxres.h,GFXRES,base/ships/orz/tursml.ani
ORZ_CAPTAIN_MASK_PMAP_ANIM,712,14,sc2code/ships/orz/igfxres.h,GFXRES,base/ships/orz/orzcap.ani
1 # This index is really only here for historical reasons, now.
2 # As the resources we use evolve, these values will diverge ever further.
3 HYPERSPACE_MUSIC,38,0,sc2code/imusicre.h,MUSICRES,base/nav/hyper.mod
4 QUASISPACE_MUSIC,39,1,sc2code/imusicre.h,MUSICRES,base/nav/quasispace.mod
5 IP_MUSIC,159,2,sc2code/imusicre.h,MUSICRES,base/nav/space.mod
6 ORBIT1_MUSIC,160,3,sc2code/imusicre.h,MUSICRES,base/nav/orbit.mod
7 ORBIT2_MUSIC,160,4,sc2code/imusicre.h,MUSICRES,base/nav/orbit.mod
8 ORBIT3_MUSIC,160,5,sc2code/imusicre.h,MUSICRES,base/nav/orbit.mod
9 ORBIT4_MUSIC,160,6,sc2code/imusicre.h,MUSICRES,base/nav/orbit.mod
10 ORBIT5_MUSIC,160,7,sc2code/imusicre.h,MUSICRES,base/nav/orbit.mod
11 REDALERT_MUSIC,163,8,sc2code/imusicre.h,MUSICRES,base/ui/redalert.mod
12 OUTFIT_MUSIC,196,9,sc2code/imusicre.h,MUSICRES,base/ui/outfit.mod
13 SHIPYARD_MUSIC,198,10,sc2code/imusicre.h,MUSICRES,base/ui/shipyard.mod
14 STARBASE_MUSIC,199,11,sc2code/imusicre.h,MUSICRES,base/ui/starbase.mod
15 BATTLE_MUSIC,261,12,sc2code/imusicre.h,MUSICRES,base/battle/battle.mod
16 CREDITS_MUSIC,282,13,sc2code/imusicre.h,--,--
17 MELEE_MUSIC,161,14,sc2code/imusicre.h,--,--
18 MAINMENU_MUSIC,193,15,sc2code/imusicre.h,--,--
19 STARCON_FONT,28,0,sc2code/ifontres.h,FONTRES,base/fonts/starcon.fon
20 TINY_FONT,28,1,sc2code/ifontres.h,FONTRES,base/fonts/tiny.fon
21 MICRO_FONT,30,2,sc2code/ifontres.h,FONTRES,base/fonts/micro.fon
22 LANDER_FONT,138,3,sc2code/ifontres.h,FONTRES,base/fonts/lander.fon
23 PLAYER_FONT,189,4,sc2code/ifontres.h,FONTRES,base/fonts/player.fon
24 PT13AA_FONT,288,5,sc2code/ifontres.h,FONTRES,base/fonts/pt13.fon
25 PT17AA_FONT,288,6,sc2code/ifontres.h,FONTRES,base/fonts/pt17.fon
26 PT45AA_FONT,288,7,sc2code/ifontres.h,FONTRES,base/fonts/pt45.fon
27 STARCON_COLOR_MAP,1,0,sc2code/istrtab.h,BINTAB,base/scclrtab.ct
28 STARCON_GAME_STRINGS,28,1,sc2code/istrtab.h,STRTAB,base/gamestrings.txt
29 HYPER_COLOR_TAB,36,2,sc2code/istrtab.h,BINTAB,base/nav/hyperpal.ct
30 ARISPACE_COLOR_TAB,37,3,sc2code/istrtab.h,BINTAB,base/nav/quasispace.ct
31 ORBPLAN_COLOR_MAP,41,4,sc2code/istrtab.h,BINTAB,base/nav/orbplan.ct
32 OOLITE_COLOR_TAB,72,5,sc2code/istrtab.h,BINTAB,base/planets/str_cts_.ct
33 OOLITE_XLAT_TAB,72,6,sc2code/istrtab.h,BINTAB,base/planets/mtl2xlts.xlt
34 YTTRIC_COLOR_TAB,73,5,sc2code/istrtab.h,BINTAB,base/planets/wr1_cts_.ct
35 YTTRIC_XLAT_TAB,73,6,sc2code/istrtab.h,BINTAB,base/planets/rst_xlts.xlt
36 QUASI_DEGENERATE_COLOR_TAB,74,5,sc2code/istrtab.h,BINTAB,base/planets/co2_cts_.ct
37 QUASI_DEGENERATE_XLAT_TAB,74,6,sc2code/istrtab.h,BINTAB,base/planets/bnd_xlts.xlt
38 LANTHANIDE_COLOR_TAB,75,5,sc2code/istrtab.h,BINTAB,base/planets/ylgscts_.ct
39 LANTHANIDE_XLAT_TAB,75,6,sc2code/istrtab.h,BINTAB,base/planets/rst_xlts.xlt
40 TREASURE_COLOR_TAB,76,5,sc2code/istrtab.h,BINTAB,base/planets/lll_cts_.ct
41 TREASURE_XLAT_TAB,76,6,sc2code/istrtab.h,BINTAB,base/planets/bnd_xlts.xlt
42 UREA_COLOR_TAB,77,5,sc2code/istrtab.h,BINTAB,base/planets/ylgscts_.ct
43 UREA_XLAT_TAB,77,6,sc2code/istrtab.h,BINTAB,base/planets/den_xlts.xlt
44 METAL_COLOR_TAB,78,5,sc2code/istrtab.h,BINTAB,base/planets/mtl_cts_.ct
45 METAL_XLAT_TAB,78,6,sc2code/istrtab.h,BINTAB,base/planets/mtl1xlts.xlt
46 RADIOACTIVE_COLOR_TAB,79,5,sc2code/istrtab.h,BINTAB,base/planets/rrr_cts_.ct
47 RADIOACTIVE_XLAT_TAB,79,6,sc2code/istrtab.h,BINTAB,base/planets/rst_xlts.xlt
48 OPALESCENT_COLOR_TAB,80,5,sc2code/istrtab.h,BINTAB,base/planets/ice_cts_.ct
49 OPALESCENT_XLAT_TAB,80,6,sc2code/istrtab.h,BINTAB,base/planets/ice_xlts.xlt
50 CYANIC_COLOR_TAB,81,5,sc2code/istrtab.h,BINTAB,base/planets/qqq_cts_.ct
51 CYANIC_XLAT_TAB,81,6,sc2code/istrtab.h,BINTAB,base/planets/bnd_xlts.xlt
52 ACID_COLOR_TAB,82,5,sc2code/istrtab.h,BINTAB,base/planets/rst_cts_.ct
53 ACID_XLAT_TAB,82,6,sc2code/istrtab.h,BINTAB,base/planets/rst_xlts.xlt
54 ALKALI_COLOR_TAB,83,5,sc2code/istrtab.h,BINTAB,base/planets/bnd_cts_.ct
55 ALKALI_XLAT_TAB,83,6,sc2code/istrtab.h,BINTAB,base/planets/rst_xlts.xlt
56 HALIDE_COLOR_TAB,84,5,sc2code/istrtab.h,BINTAB,base/planets/rdx_cts_.ct
57 HALIDE_XLAT_TAB,84,6,sc2code/istrtab.h,BINTAB,base/planets/rst_xlts.xlt
58 GREEN_COLOR_TAB,85,5,sc2code/istrtab.h,BINTAB,base/planets/nnn_cts_.ct
59 GREEN_XLAT_TAB,85,6,sc2code/istrtab.h,BINTAB,base/planets/den_xlts.xlt
60 COPPER_COLOR_TAB,86,5,sc2code/istrtab.h,BINTAB,base/planets/qqq_cts_.ct
61 COPPER_XLAT_TAB,86,6,sc2code/istrtab.h,BINTAB,base/planets/bnd_xlts.xlt
62 CARBIDE_COLOR_TAB,87,5,sc2code/istrtab.h,BINTAB,base/planets/rrr_cts_.ct
63 CARBIDE_XLAT_TAB,87,6,sc2code/istrtab.h,BINTAB,base/planets/ice_xlts.xlt
64 ULTRAMARINE_COLOR_TAB,88,5,sc2code/istrtab.h,BINTAB,base/planets/den_cts_.ct
65 ULTRAMARINE_XLAT_TAB,88,6,sc2code/istrtab.h,BINTAB,base/planets/den_xlts.xlt
66 NOBLE_COLOR_TAB,89,5,sc2code/istrtab.h,BINTAB,base/planets/blgscts_.ct
67 NOBLE_XLAT_TAB,89,6,sc2code/istrtab.h,BINTAB,base/planets/rst_xlts.xlt
68 AZURE_COLOR_TAB,90,5,sc2code/istrtab.h,BINTAB,base/planets/www_cts_.ct
69 AZURE_XLAT_TAB,90,6,sc2code/istrtab.h,BINTAB,base/planets/den_xlts.xlt
70 CHONDRITE_COLOR_TAB,91,5,sc2code/istrtab.h,BINTAB,base/planets/grv_cts_.ct
71 CHONDRITE_XLAT_TAB,91,6,sc2code/istrtab.h,BINTAB,base/planets/grv_xlts.xlt
72 PURPLE_COLOR_TAB,92,5,sc2code/istrtab.h,BINTAB,base/planets/vigscts_.ct
73 PURPLE_XLAT_TAB,92,6,sc2code/istrtab.h,BINTAB,base/planets/den_xlts.xlt
74 SUPER_DENSE_COLOR_TAB,93,5,sc2code/istrtab.h,BINTAB,base/planets/kkk_cts_.ct
75 SUPER_DENSE_XLAT_TAB,93,6,sc2code/istrtab.h,BINTAB,base/planets/bnd_xlts.xlt
76 PELLUCID_COLOR_TAB,94,5,sc2code/istrtab.h,BINTAB,base/planets/prgscts_.ct
77 PELLUCID_XLAT_TAB,94,6,sc2code/istrtab.h,BINTAB,base/planets/ice_xlts.xlt
78 DUST_COLOR_TAB,95,5,sc2code/istrtab.h,BINTAB,base/planets/dst_cts_.ct
79 DUST_XLAT_TAB,95,6,sc2code/istrtab.h,BINTAB,base/planets/rst_xlts.xlt
80 CRIMSON_COLOR_TAB,96,5,sc2code/istrtab.h,BINTAB,base/planets/dst_cts_.ct
81 CRIMSON_XLAT_TAB,96,6,sc2code/istrtab.h,BINTAB,base/planets/den_xlts.xlt
82 CIMMERIAN_COLOR_TAB,97,5,sc2code/istrtab.h,BINTAB,base/planets/jjj_cts_.ct
83 CIMMERIAN_XLAT_TAB,97,6,sc2code/istrtab.h,BINTAB,base/planets/bnd_xlts.xlt
84 INFRARED_COLOR_TAB,98,5,sc2code/istrtab.h,BINTAB,base/planets/dst_cts_.ct
85 INFRARED_XLAT_TAB,98,6,sc2code/istrtab.h,BINTAB,base/planets/ice_xlts.xlt
86 SELENIC_COLOR_TAB,99,5,sc2code/istrtab.h,BINTAB,base/planets/lit_cts_.ct
87 SELENIC_XLAT_TAB,99,6,sc2code/istrtab.h,BINTAB,base/planets/den_xlts.xlt
88 AURIC_COLOR_TAB,100,5,sc2code/istrtab.h,BINTAB,base/planets/ylgscts_.ct
89 AURIC_XLAT_TAB,100,6,sc2code/istrtab.h,BINTAB,base/planets/bnd_xlts.xlt
90 FLUORESCENT_COLOR_TAB,101,5,sc2code/istrtab.h,BINTAB,base/planets/vigscts_.ct
91 FLUORESCENT_XLAT_TAB,101,6,sc2code/istrtab.h,BINTAB,base/planets/ice_xlts.xlt
92 ULTRAVIOLET_COLOR_TAB,102,5,sc2code/istrtab.h,BINTAB,base/planets/vigscts_.ct
93 ULTRAVIOLET_XLAT_TAB,102,6,sc2code/istrtab.h,BINTAB,base/planets/rst_xlts.xlt
94 PLUTONIC_COLOR_TAB,103,5,sc2code/istrtab.h,BINTAB,base/planets/orgscts_.ct
95 PLUTONIC_XLAT_TAB,103,6,sc2code/istrtab.h,BINTAB,base/planets/rst_xlts.xlt
96 RAINBOW_COLOR_TAB,104,5,sc2code/istrtab.h,BINTAB,base/planets/rai_cts_.ct
97 RAINBOW_XLAT_TAB,104,6,sc2code/istrtab.h,BINTAB,base/planets/rai_xlts.xlt
98 SHATTERED_COLOR_TAB,105,5,sc2code/istrtab.h,BINTAB,base/planets/hel_cts_.ct
99 SHATTERED_XLAT_TAB,105,6,sc2code/istrtab.h,BINTAB,base/planets/hel_xlts.xlt
100 SAPPHIRE_COLOR_TAB,106,5,sc2code/istrtab.h,BINTAB,base/planets/cry_cts_.ct
101 SAPPHIRE_XLAT_TAB,106,6,sc2code/istrtab.h,BINTAB,base/planets/cry_xlts.xlt
102 ORGANIC_COLOR_TAB,107,5,sc2code/istrtab.h,BINTAB,base/planets/bnd_cts_.ct
103 ORGANIC_XLAT_TAB,107,6,sc2code/istrtab.h,BINTAB,base/planets/bnd_xlts.xlt
104 XENOLITHIC_COLOR_TAB,108,5,sc2code/istrtab.h,BINTAB,base/planets/cygscts_.ct
105 XENOLITHIC_XLAT_TAB,108,6,sc2code/istrtab.h,BINTAB,base/planets/ice_xlts.xlt
106 REDUX_COLOR_TAB,109,5,sc2code/istrtab.h,BINTAB,base/planets/rdx_cts_.ct
107 REDUX_XLAT_TAB,109,6,sc2code/istrtab.h,BINTAB,base/planets/rdx1xlts.xlt
108 PRIMORDIAL_COLOR_TAB,110,5,sc2code/istrtab.h,BINTAB,base/planets/co2_cts_.ct
109 PRIMORDIAL_XLAT_TAB,110,6,sc2code/istrtab.h,BINTAB,base/planets/rst_xlts.xlt
110 EMERALD_COLOR_TAB,111,5,sc2code/istrtab.h,BINTAB,base/planets/eme_cts_.ct
111 EMERALD_XLAT_TAB,111,6,sc2code/istrtab.h,BINTAB,base/planets/cry_xlts.xlt
112 CHLORINE_COLOR_TAB,112,5,sc2code/istrtab.h,BINTAB,base/planets/rst_cts_.ct
113 CHLORINE_XLAT_TAB,112,6,sc2code/istrtab.h,BINTAB,base/planets/h2o_xlts.xlt
114 MAGNETIC_COLOR_TAB,113,5,sc2code/istrtab.h,BINTAB,base/planets/rdx_cts_.ct
115 MAGNETIC_XLAT_TAB,113,6,sc2code/istrtab.h,BINTAB,base/planets/ice_xlts.xlt
116 WATER_COLOR_TAB,114,5,sc2code/istrtab.h,BINTAB,base/planets/h2o_cts_.ct
117 WATER_XLAT_TAB,114,6,sc2code/istrtab.h,BINTAB,base/planets/h2o_xlts.xlt
118 TELLURIC_COLOR_TAB,115,5,sc2code/istrtab.h,BINTAB,base/planets/h2o_cts_.ct
119 TELLURIC_XLAT_TAB,115,6,sc2code/istrtab.h,BINTAB,base/planets/rst_xlts.xlt
120 HYDROCARBON_COLOR_TAB,116,5,sc2code/istrtab.h,BINTAB,base/planets/www_cts_.ct
121 HYDROCARBON_XLAT_TAB,116,6,sc2code/istrtab.h,BINTAB,base/planets/bnd_xlts.xlt
122 IODINE_COLOR_TAB,117,5,sc2code/istrtab.h,BINTAB,base/planets/co2_cts_.ct
123 IODINE_XLAT_TAB,117,6,sc2code/istrtab.h,BINTAB,base/planets/den_xlts.xlt
124 VINYLOGOUS_COLOR_TAB,118,5,sc2code/istrtab.h,BINTAB,base/planets/wr1_cts_.ct
125 VINYLOGOUS_XLAT_TAB,118,6,sc2code/istrtab.h,BINTAB,base/planets/ice_xlts.xlt
126 RUBY_COLOR_TAB,119,5,sc2code/istrtab.h,BINTAB,base/planets/rub_cts_.ct
127 RUBY_XLAT_TAB,119,6,sc2code/istrtab.h,BINTAB,base/planets/cry_xlts.xlt
128 MAGMA_COLOR_TAB,120,5,sc2code/istrtab.h,BINTAB,base/planets/rrr_cts_.ct
129 MAGMA_XLAT_TAB,120,6,sc2code/istrtab.h,BINTAB,base/planets/bnd_xlts.xlt
130 MAROON_COLOR_TAB,121,5,sc2code/istrtab.h,BINTAB,base/planets/bbb_cts_.ct
131 MAROON_XLAT_TAB,121,6,sc2code/istrtab.h,BINTAB,base/planets/den_xlts.xlt
132 BLU_GAS_COLOR_TAB,122,5,sc2code/istrtab.h,BINTAB,base/planets/bluegasgiant.ct
133 BLU_GAS_XLAT_TAB,122,6,sc2code/istrtab.h,BINTAB,base/planets/gasgiant.xlt
134 CYA_GAS_COLOR_TAB,123,5,sc2code/istrtab.h,BINTAB,base/planets/cyangasgiant.ct
135 CYA_GAS_XLAT_TAB,123,6,sc2code/istrtab.h,BINTAB,base/planets/gasgiant.xlt
136 GRN_GAS_COLOR_TAB,124,5,sc2code/istrtab.h,BINTAB,base/planets/greengasgiant.ct
137 GRN_GAS_XLAT_TAB,124,6,sc2code/istrtab.h,BINTAB,base/planets/gasgiant.xlt
138 GRY_GAS_COLOR_TAB,125,5,sc2code/istrtab.h,BINTAB,base/planets/greygasgiant.ct
139 GRY_GAS_XLAT_TAB,125,6,sc2code/istrtab.h,BINTAB,base/planets/gasgiant.xlt
140 ORA_GAS_COLOR_TAB,126,5,sc2code/istrtab.h,BINTAB,base/planets/orangegasgiant.ct
141 ORA_GAS_XLAT_TAB,126,6,sc2code/istrtab.h,BINTAB,base/planets/gasgiant.xlt
142 PUR_GAS_COLOR_TAB,127,5,sc2code/istrtab.h,BINTAB,base/planets/purplegasgiant.ct
143 PUR_GAS_XLAT_TAB,127,6,sc2code/istrtab.h,BINTAB,base/planets/gasgiant.xlt
144 RED_GAS_COLOR_TAB,128,5,sc2code/istrtab.h,BINTAB,base/planets/redgasgiant.ct
145 RED_GAS_XLAT_TAB,128,6,sc2code/istrtab.h,BINTAB,base/planets/gasgiant.xlt
146 VIO_GAS_COLOR_TAB,129,5,sc2code/istrtab.h,BINTAB,base/planets/violetgasgiant.ct
147 VIO_GAS_XLAT_TAB,129,6,sc2code/istrtab.h,BINTAB,base/planets/gasgiant.xlt
148 YEL_GAS_COLOR_TAB,130,5,sc2code/istrtab.h,BINTAB,base/planets/yellowgasgiant.ct
149 YEL_GAS_XLAT_TAB,130,6,sc2code/istrtab.h,BINTAB,base/planets/gasgiant.xlt
150 MOONBASE_STRTAB,139,77,sc2code/istrtab.h,STRTAB,base/lander/energy/moonbase.txt
151 MAIDENS_STRTAB,140,78,sc2code/istrtab.h,STRTAB,base/lander/energy/maidens.txt
152 CHMMR_BASE_STRTAB,141,79,sc2code/istrtab.h,STRTAB,base/lander/energy/chmmrbase.txt
153 AQUA_STRTAB,142,80,sc2code/istrtab.h,STRTAB,base/lander/energy/aquahelix.txt
154 BURV_BCS_STRTAB,143,81,sc2code/istrtab.h,STRTAB,base/lander/energy/burvixcaster.txt
155 TAALO_DEVICE_STRTAB,144,82,sc2code/istrtab.h,STRTAB,base/lander/energy/taalodevice.txt
156 SUN_DEVICE_STRTAB,145,83,sc2code/istrtab.h,STRTAB,base/lander/energy/sundevice.txt
157 VAULT_STRTAB,146,84,sc2code/istrtab.h,STRTAB,base/lander/energy/syreenvault.txt
158 WRECK_STRTAB,147,85,sc2code/istrtab.h,STRTAB,base/lander/energy/urquanwreck.txt
159 BOMB_STRTAB,148,86,sc2code/istrtab.h,STRTAB,base/lander/energy/utwigbomb.txt
160 BEAST_STRTAB,149,87,sc2code/istrtab.h,STRTAB,base/lander/bio/vuxbeast.txt
161 EGG_CASE_STRTAB,150,88,sc2code/istrtab.h,STRTAB,base/lander/energy/eggcase.txt
162 SPAPLUTO_STRTAB,151,89,sc2code/istrtab.h,STRTAB,base/lander/energy/fwiffo.txt
163 BURV_RUINS_STRTAB,152,90,sc2code/istrtab.h,STRTAB,base/lander/energy/burvixeseruins.txt
164 ANDROSYNTH_RUINS_STRTAB,153,91,sc2code/istrtab.h,STRTAB,base/lander/energy/androsynth_ruins.txt
165 DRUUGE_RUINS_STRTAB,154,92,sc2code/istrtab.h,STRTAB,base/lander/energy/sphere.txt
166 PKUNK_RUINS_STRTAB,155,93,sc2code/istrtab.h,STRTAB,base/lander/energy/spindle.txt
167 RUINS_STRTAB,157,94,sc2code/istrtab.h,STRTAB,base/lander/energy/ruins.txt
168 UMGAH_BCS_STRTAB,158,95,sc2code/istrtab.h,STRTAB,base/lander/energy/umgahcaster.txt
169 IPSUN_COLOR_MAP,41,96,sc2code/istrtab.h,BINTAB,base/lander/ip_sun.ct
170 HANGAR_COLOR_TAB,197,97,sc2code/istrtab.h,BINTAB,base/ui/dockpani.ct
171 INTROPRES_STRTAB,286,98,sc2code/istrtab.h,STRTAB,base/cutscene/intro/intro.txt
172 FINALPRES_STRTAB,287,99,sc2code/istrtab.h,STRTAB,base/cutscene/ending/ending.txt
173 CREDITS_STRTAB,289,100,sc2code/istrtab.h,STRTAB,base/cutscene/credits/credits.txt
174 JOYSTICK_ALPHA_STRTAB,290,101,sc2code/istrtab.h,STRTAB,base/ui/joyalpha.txt
175 SETUP_MENU_STRTAB,285,287,sc2code/istrtab.h,STRTAB,base/ui/setupmenu.txt
176 MENU_SOUNDS,32,0,sc2code/isndres.h,SNDRES,base/ui/menu.snd
177 GAME_SOUNDS,33,1,sc2code/isndres.h,SNDRES,base/battle/gamesnd.snd
178 LANDER_SOUNDS,42,2,sc2code/isndres.h,SNDRES,base/lander/lander.snd
179 TITLE_ANIM,2,0,sc2code/igfxres.h,GFXRES,base/ui/title.ani
180 STATUS_MASK_PMAP_ANIM,28,1,sc2code/igfxres.h,GFXRES,base/ui/status.ani
181 ACTIVITY_ANIM,28,2,sc2code/igfxres.h,GFXRES,base/ui/activity.ani
182 PLAYMENU_ANIM,29,3,sc2code/igfxres.h,GFXRES,base/ui/playmenu.ani
183 FLAGSTAT_MASK_PMAP_ANIM,31,4,sc2code/igfxres.h,GFXRES,base/ui/flagstat.ani
184 MISCDATA_MASK_PMAP_ANIM,31,5,sc2code/igfxres.h,GFXRES,base/ui/miscdata.ani
185 STAR_MASK_PMAP_ANIM,34,6,sc2code/igfxres.h,GFXRES,base/battle/stars.ani
186 ASTEROID_BIG_MASK_PMAP_ANIM,34,7,sc2code/igfxres.h,GFXRES,base/battle/asteroid.big
187 ASTEROID_MED_MASK_PMAP_ANIM,34,8,sc2code/igfxres.h,GFXRES,base/battle/asteroid.mid
188 ASTEROID_SML_MASK_PMAP_ANIM,34,9,sc2code/igfxres.h,GFXRES,base/battle/asteroid.sml
189 BLAST_BIG_MASK_PMAP_ANIM,34,10,sc2code/igfxres.h,GFXRES,base/battle/blabig.ani
190 BLAST_MED_MASK_PMAP_ANIM,34,11,sc2code/igfxres.h,GFXRES,base/battle/blamed.ani
191 BLAST_SML_MASK_PMAP_ANIM,34,12,sc2code/igfxres.h,GFXRES,base/battle/blasml.ani
192 BOOM_BIG_MASK_PMAP_ANIM,34,13,sc2code/igfxres.h,GFXRES,base/battle/boobig.ani
193 BOOM_MED_MASK_PMAP_ANIM,34,14,sc2code/igfxres.h,GFXRES,base/battle/boomed.ani
194 BOOM_SML_MASK_PMAP_ANIM,34,15,sc2code/igfxres.h,GFXRES,base/battle/boosml.ani
195 AMBIENT_MASK_PMAP_ANIM,35,16,sc2code/igfxres.h,GFXRES,base/nav/ambientanim.ani
196 HYPERSTARS_MASK_PMAP_ANIM,36,17,sc2code/igfxres.h,GFXRES,base/nav/hyperstr.ani
197 ARISPACE_MASK_PMAP_ANIM,37,18,sc2code/igfxres.h,GFXRES,base/nav/quasispace.ani
198 IPBKGND_MASK_PMAP_ANIM,40,19,sc2code/igfxres.h,GFXRES,base/nav/obbkgnd.ani
199 SISIP_MASK_PMAP_ANIM,41,20,sc2code/igfxres.h,GFXRES,base/nav/sis_ip.ani
200 ORBPLAN_MASK_PMAP_ANIM,41,21,sc2code/igfxres.h,GFXRES,base/nav/orbplan.ani
201 SUN_MASK_PMAP_ANIM,41,22,sc2code/igfxres.h,GFXRES,base/nav/ip_sun.ani
202 LANDER_MASK_PMAP_ANIM,42,23,sc2code/igfxres.h,GFXRES,base/lander/lander.ani
203 QUAKE_MASK_PMAP_ANIM,42,24,sc2code/igfxres.h,GFXRES,base/lander/hazard/quake.ani
204 LIGHTNING_MASK_ANIM,42,25,sc2code/igfxres.h,GFXRES,base/lander/lightning.ani
205 LAVA_MASK_PMAP_ANIM,42,26,sc2code/igfxres.h,GFXRES,base/lander/hazard/lavaspot.ani
206 LANDER_SHIELD_MASK_ANIM,42,27,sc2code/igfxres.h,GFXRES,base/lander/shield.ani
207 LANDER_LAUNCH_MASK_PMAP_ANIM,42,28,sc2code/igfxres.h,GFXRES,base/lander/launch.ani
208 LANDER_RETURN_MASK_PMAP_ANIM,42,29,sc2code/igfxres.h,GFXRES,base/lander/return.ani
209 ORBIT_VIEW_ANIM,43,30,sc2code/igfxres.h,GFXRES,base/nav/orbview.ani
210 EARTH_MASK_ANIM,44,31,sc2code/igfxres.h,GFXRES,base/planets/earthmask.ani
211 CANNISTER_MASK_PMAP_ANIM,45,32,sc2code/igfxres.h,GFXRES,base/lander/bio/lifecan.ani
212 LIFE00_MASK_PMAP_ANIM,46,33,sc2code/igfxres.h,GFXRES,base/lander/bio/lifea.ani
213 LIFE01_MASK_PMAP_ANIM,47,34,sc2code/igfxres.h,GFXRES,base/lander/bio/lifeb.ani
214 LIFE02_MASK_PMAP_ANIM,48,35,sc2code/igfxres.h,GFXRES,base/lander/bio/lifec.ani
215 LIFE03_MASK_PMAP_ANIM,49,36,sc2code/igfxres.h,GFXRES,base/lander/bio/lifed.ani
216 LIFE04_MASK_PMAP_ANIM,50,37,sc2code/igfxres.h,GFXRES,base/lander/bio/lifee.ani
217 LIFE05_MASK_PMAP_ANIM,51,38,sc2code/igfxres.h,GFXRES,base/lander/bio/lifef.ani
218 LIFE06_MASK_PMAP_ANIM,52,39,sc2code/igfxres.h,GFXRES,base/lander/bio/lifeg.ani
219 LIFE07_MASK_PMAP_ANIM,53,40,sc2code/igfxres.h,GFXRES,base/lander/bio/lifeh.ani
220 LIFE08_MASK_PMAP_ANIM,54,41,sc2code/igfxres.h,GFXRES,base/lander/bio/lifei.ani
221 LIFE09_MASK_PMAP_ANIM,55,42,sc2code/igfxres.h,GFXRES,base/lander/bio/lifej.ani
222 LIFE10_MASK_PMAP_ANIM,56,43,sc2code/igfxres.h,GFXRES,base/lander/bio/lifek.ani
223 LIFE11_MASK_PMAP_ANIM,57,44,sc2code/igfxres.h,GFXRES,base/lander/bio/lifel.ani
224 LIFE12_MASK_PMAP_ANIM,58,45,sc2code/igfxres.h,GFXRES,base/lander/bio/lifem.ani
225 LIFE13_MASK_PMAP_ANIM,59,46,sc2code/igfxres.h,GFXRES,base/lander/bio/lifen.ani
226 LIFE14_MASK_PMAP_ANIM,60,47,sc2code/igfxres.h,GFXRES,base/lander/bio/lifeo.ani
227 LIFE15_MASK_PMAP_ANIM,61,48,sc2code/igfxres.h,GFXRES,base/lander/bio/lifep.ani
228 LIFE16_MASK_PMAP_ANIM,62,49,sc2code/igfxres.h,GFXRES,base/lander/bio/lifeq.ani
229 LIFE17_MASK_PMAP_ANIM,63,50,sc2code/igfxres.h,GFXRES,base/lander/bio/lifer.ani
230 LIFE18_MASK_PMAP_ANIM,64,51,sc2code/igfxres.h,GFXRES,base/lander/bio/lifes.ani
231 LIFE19_MASK_PMAP_ANIM,65,52,sc2code/igfxres.h,GFXRES,base/lander/bio/lifet.ani
232 LIFE20_MASK_PMAP_ANIM,66,53,sc2code/igfxres.h,GFXRES,base/lander/bio/lifew.ani
233 LIFE21_MASK_PMAP_ANIM,67,54,sc2code/igfxres.h,GFXRES,base/lander/bio/lifex.ani
234 LIFE22_MASK_PMAP_ANIM,68,55,sc2code/igfxres.h,GFXRES,base/lander/bio/lifey.ani
235 LIFE23_MASK_PMAP_ANIM,69,56,sc2code/igfxres.h,GFXRES,base/lander/bio/lifeu.ani
236 LIFE24_MASK_PMAP_ANIM,70,57,sc2code/igfxres.h,GFXRES,base/lander/bio/lifev.ani
237 LIFE25_MASK_PMAP_ANIM,71,58,sc2code/igfxres.h,GFXRES,base/lander/bio/lifez.ani
238 MOONBASE_MASK_PMAP_ANIM,139,59,sc2code/igfxres.h,GFXRES,base/lander/energy/moonbase.ani
239 MAIDENS_MASK_PMAP_ANIM,140,60,sc2code/igfxres.h,GFXRES,base/lander/energy/maidens.ani
240 AQUA_MASK_PMAP_ANIM,142,61,sc2code/igfxres.h,GFXRES,base/lander/energy/aquahelix.ani
241 BURV_BCS_MASK_PMAP_ANIM,143,62,sc2code/igfxres.h,GFXRES,base/lander/energy/burvixcaster.ani
242 TAALO_DEVICE_MASK_PMAP_ANIM,144,63,sc2code/igfxres.h,GFXRES,base/lander/energy/taalodevice.ani
243 SUN_DEVICE_MASK_PMAP_ANIM,145,64,sc2code/igfxres.h,GFXRES,base/lander/energy/sundevice.ani
244 VAULT_MASK_PMAP_ANIM,146,65,sc2code/igfxres.h,GFXRES,base/lander/energy/syreenvault.ani
245 WRECK_MASK_PMAP_ANIM,147,66,sc2code/igfxres.h,GFXRES,base/lander/energy/urquanwreck.ani
246 BOMB_MASK_PMAP_ANIM,148,67,sc2code/igfxres.h,GFXRES,base/lander/energy/utwigbomb.ani
247 EGG_CASE_MASK_PMAP_ANIM,150,68,sc2code/igfxres.h,GFXRES,base/lander/energy/eggcase.ani
248 SPAPLUTO_MASK_PMAP_ANIM,151,69,sc2code/igfxres.h,GFXRES,base/lander/energy/fwiffo.ani
249 RUINS_MASK_PMAP_ANIM,156,70,sc2code/igfxres.h,GFXRES,base/lander/energy/ruins.ani
250 UMGAH_BCS_MASK_PMAP_ANIM,158,71,sc2code/igfxres.h,GFXRES,base/lander/energy/umgahcaster.ani
251 MELEE_SCREEN_PMAP_ANIM,161,72,sc2code/igfxres.h,GFXRES,base/ui/meleebackground.ani
252 MELEE_PICK_MASK_PMAP_ANIM,162,73,sc2code/igfxres.h,GFXRES,base/ui/melee.ani
253 SEGUE_PMAP_ANIM,163,74,sc2code/igfxres.h,GFXRES,base/ui/segue.ani
254 SC2_PICK_PMAP_ANIM,164,75,sc2code/igfxres.h,GFXRES,base/ui/pickship.ani
255 RESTART_PMAP_ANIM,193,76,sc2code/igfxres.h,GFXRES,base/ui/newgame.ani
256 MODULES_PMAP_ANIM,194,77,sc2code/igfxres.h,GFXRES,base/ui/modules.ani
257 SISMODS_MASK_PMAP_ANIM,195,78,sc2code/igfxres.h,GFXRES,base/ui/sismodules.ani
258 OUTFIT_PMAP_ANIM,195,79,sc2code/igfxres.h,GFXRES,base/ui/outfit.ani
259 SISBLU_MASK_ANIM,197,80,sc2code/igfxres.h,GFXRES,base/ui/sisblueprint.ani
260 SHIPYARD_PMAP_ANIM,197,81,sc2code/igfxres.h,GFXRES,base/ui/shipyard.ani
261 STARBASE_ANIM,199,82,sc2code/igfxres.h,GFXRES,base/ui/starbase.ani
262 SAMATRA_BIG_MASK_PMAP_ANIM,200,83,sc2code/igfxres.h,GFXRES,base/planets/sam__big.ani
263 SHIELDED_BIG_MASK_PMAP_ANIM,201,84,sc2code/igfxres.h,GFXRES,base/planets/shie_big.ani
264 SHIELDED_MED_MASK_PMAP_ANIM,201,85,sc2code/igfxres.h,GFXRES,base/planets/shie_med.ani
265 SHIELDED_SML_MASK_PMAP_ANIM,201,86,sc2code/igfxres.h,GFXRES,base/planets/shie_sml.ani
266 PLANET00_BIG_MASK_PMAP_ANIM,202,87,sc2code/igfxres.h,GFXRES,base/planets/ool__big.ani
267 PLANET00_MED_MASK_PMAP_ANIM,202,88,sc2code/igfxres.h,GFXRES,base/planets/ool__med.ani
268 PLANET00_SML_MASK_PMAP_ANIM,202,89,sc2code/igfxres.h,GFXRES,base/planets/ool__sml.ani
269 PLANET01_BIG_MASK_PMAP_ANIM,203,90,sc2code/igfxres.h,GFXRES,base/planets/ytt__big.ani
270 PLANET01_MED_MASK_PMAP_ANIM,203,91,sc2code/igfxres.h,GFXRES,base/planets/ytt__med.ani
271 PLANET01_SML_MASK_PMAP_ANIM,203,92,sc2code/igfxres.h,GFXRES,base/planets/ytt__sml.ani
272 PLANET02_BIG_MASK_PMAP_ANIM,204,93,sc2code/igfxres.h,GFXRES,base/planets/deg__big.ani
273 PLANET02_MED_MASK_PMAP_ANIM,204,94,sc2code/igfxres.h,GFXRES,base/planets/deg__med.ani
274 PLANET02_SML_MASK_PMAP_ANIM,204,95,sc2code/igfxres.h,GFXRES,base/planets/deg__sml.ani
275 PLANET03_BIG_MASK_PMAP_ANIM,205,96,sc2code/igfxres.h,GFXRES,base/planets/lan__big.ani
276 PLANET03_MED_MASK_PMAP_ANIM,205,97,sc2code/igfxres.h,GFXRES,base/planets/lan__med.ani
277 PLANET03_SML_MASK_PMAP_ANIM,205,98,sc2code/igfxres.h,GFXRES,base/planets/lan__sml.ani
278 PLANET04_BIG_MASK_PMAP_ANIM,206,99,sc2code/igfxres.h,GFXRES,base/planets/tre__big.ani
279 PLANET04_MED_MASK_PMAP_ANIM,206,100,sc2code/igfxres.h,GFXRES,base/planets/tre__med.ani
280 PLANET04_SML_MASK_PMAP_ANIM,206,101,sc2code/igfxres.h,GFXRES,base/planets/tre__sml.ani
281 PLANET05_BIG_MASK_PMAP_ANIM,207,102,sc2code/igfxres.h,GFXRES,base/planets/ure__big.ani
282 PLANET05_MED_MASK_PMAP_ANIM,207,103,sc2code/igfxres.h,GFXRES,base/planets/ure__med.ani
283 PLANET05_SML_MASK_PMAP_ANIM,207,104,sc2code/igfxres.h,GFXRES,base/planets/ure__sml.ani
284 PLANET06_BIG_MASK_PMAP_ANIM,208,105,sc2code/igfxres.h,GFXRES,base/planets/mtl__big.ani
285 PLANET06_MED_MASK_PMAP_ANIM,208,106,sc2code/igfxres.h,GFXRES,base/planets/mtl__med.ani
286 PLANET06_SML_MASK_PMAP_ANIM,208,107,sc2code/igfxres.h,GFXRES,base/planets/mtl__sml.ani
287 PLANET07_BIG_MASK_PMAP_ANIM,209,108,sc2code/igfxres.h,GFXRES,base/planets/rad__big.ani
288 PLANET07_MED_MASK_PMAP_ANIM,209,109,sc2code/igfxres.h,GFXRES,base/planets/rad__med.ani
289 PLANET07_SML_MASK_PMAP_ANIM,209,110,sc2code/igfxres.h,GFXRES,base/planets/rad__sml.ani
290 PLANET08_BIG_MASK_PMAP_ANIM,210,111,sc2code/igfxres.h,GFXRES,base/planets/opa__big.ani
291 PLANET08_MED_MASK_PMAP_ANIM,210,112,sc2code/igfxres.h,GFXRES,base/planets/opa__med.ani
292 PLANET08_SML_MASK_PMAP_ANIM,210,113,sc2code/igfxres.h,GFXRES,base/planets/opa__sml.ani
293 PLANET09_BIG_MASK_PMAP_ANIM,211,114,sc2code/igfxres.h,GFXRES,base/planets/cya__big.ani
294 PLANET09_MED_MASK_PMAP_ANIM,211,115,sc2code/igfxres.h,GFXRES,base/planets/cya__med.ani
295 PLANET09_SML_MASK_PMAP_ANIM,211,116,sc2code/igfxres.h,GFXRES,base/planets/cya__sml.ani
296 PLANET10_BIG_MASK_PMAP_ANIM,212,117,sc2code/igfxres.h,GFXRES,base/planets/aci__big.ani
297 PLANET10_MED_MASK_PMAP_ANIM,212,118,sc2code/igfxres.h,GFXRES,base/planets/aci__med.ani
298 PLANET10_SML_MASK_PMAP_ANIM,212,119,sc2code/igfxres.h,GFXRES,base/planets/aci__sml.ani
299 PLANET11_BIG_MASK_PMAP_ANIM,213,120,sc2code/igfxres.h,GFXRES,base/planets/alk__big.ani
300 PLANET11_MED_MASK_PMAP_ANIM,213,121,sc2code/igfxres.h,GFXRES,base/planets/alk__med.ani
301 PLANET11_SML_MASK_PMAP_ANIM,213,122,sc2code/igfxres.h,GFXRES,base/planets/alk__sml.ani
302 PLANET12_BIG_MASK_PMAP_ANIM,214,123,sc2code/igfxres.h,GFXRES,base/planets/hal__big.ani
303 PLANET12_MED_MASK_PMAP_ANIM,214,124,sc2code/igfxres.h,GFXRES,base/planets/hal__med.ani
304 PLANET12_SML_MASK_PMAP_ANIM,214,125,sc2code/igfxres.h,GFXRES,base/planets/hal__sml.ani
305 PLANET13_BIG_MASK_PMAP_ANIM,215,126,sc2code/igfxres.h,GFXRES,base/planets/gre__big.ani
306 PLANET13_MED_MASK_PMAP_ANIM,215,127,sc2code/igfxres.h,GFXRES,base/planets/gre__med.ani
307 PLANET13_SML_MASK_PMAP_ANIM,215,128,sc2code/igfxres.h,GFXRES,base/planets/gre__sml.ani
308 PLANET14_BIG_MASK_PMAP_ANIM,216,129,sc2code/igfxres.h,GFXRES,base/planets/cop__big.ani
309 PLANET14_MED_MASK_PMAP_ANIM,216,130,sc2code/igfxres.h,GFXRES,base/planets/cop__med.ani
310 PLANET14_SML_MASK_PMAP_ANIM,216,131,sc2code/igfxres.h,GFXRES,base/planets/cop__sml.ani
311 PLANET15_BIG_MASK_PMAP_ANIM,217,132,sc2code/igfxres.h,GFXRES,base/planets/car__big.ani
312 PLANET15_MED_MASK_PMAP_ANIM,217,133,sc2code/igfxres.h,GFXRES,base/planets/car__med.ani
313 PLANET15_SML_MASK_PMAP_ANIM,217,134,sc2code/igfxres.h,GFXRES,base/planets/car__sml.ani
314 PLANET16_BIG_MASK_PMAP_ANIM,218,135,sc2code/igfxres.h,GFXRES,base/planets/ult__big.ani
315 PLANET16_MED_MASK_PMAP_ANIM,218,136,sc2code/igfxres.h,GFXRES,base/planets/ult__med.ani
316 PLANET16_SML_MASK_PMAP_ANIM,218,137,sc2code/igfxres.h,GFXRES,base/planets/ult__sml.ani
317 PLANET17_BIG_MASK_PMAP_ANIM,219,138,sc2code/igfxres.h,GFXRES,base/planets/nob__big.ani
318 PLANET17_MED_MASK_PMAP_ANIM,219,139,sc2code/igfxres.h,GFXRES,base/planets/nob__med.ani
319 PLANET17_SML_MASK_PMAP_ANIM,219,140,sc2code/igfxres.h,GFXRES,base/planets/nob__sml.ani
320 PLANET18_BIG_MASK_PMAP_ANIM,220,141,sc2code/igfxres.h,GFXRES,base/planets/azu__big.ani
321 PLANET18_MED_MASK_PMAP_ANIM,220,142,sc2code/igfxres.h,GFXRES,base/planets/azu__med.ani
322 PLANET18_SML_MASK_PMAP_ANIM,220,143,sc2code/igfxres.h,GFXRES,base/planets/azu__sml.ani
323 PLANET19_BIG_MASK_PMAP_ANIM,221,144,sc2code/igfxres.h,GFXRES,base/planets/cho__big.ani
324 PLANET19_MED_MASK_PMAP_ANIM,221,145,sc2code/igfxres.h,GFXRES,base/planets/cho__med.ani
325 PLANET19_SML_MASK_PMAP_ANIM,221,146,sc2code/igfxres.h,GFXRES,base/planets/cho__sml.ani
326 PLANET20_BIG_MASK_PMAP_ANIM,222,147,sc2code/igfxres.h,GFXRES,base/planets/pur__big.ani
327 PLANET20_MED_MASK_PMAP_ANIM,222,148,sc2code/igfxres.h,GFXRES,base/planets/pur__med.ani
328 PLANET20_SML_MASK_PMAP_ANIM,222,149,sc2code/igfxres.h,GFXRES,base/planets/pur__sml.ani
329 PLANET21_BIG_MASK_PMAP_ANIM,223,150,sc2code/igfxres.h,GFXRES,base/planets/sup__big.ani
330 PLANET21_MED_MASK_PMAP_ANIM,223,151,sc2code/igfxres.h,GFXRES,base/planets/sup__med.ani
331 PLANET21_SML_MASK_PMAP_ANIM,223,152,sc2code/igfxres.h,GFXRES,base/planets/sup__sml.ani
332 PLANET22_BIG_MASK_PMAP_ANIM,224,153,sc2code/igfxres.h,GFXRES,base/planets/pel__big.ani
333 PLANET22_MED_MASK_PMAP_ANIM,224,154,sc2code/igfxres.h,GFXRES,base/planets/pel__med.ani
334 PLANET22_SML_MASK_PMAP_ANIM,224,155,sc2code/igfxres.h,GFXRES,base/planets/pel__sml.ani
335 PLANET23_BIG_MASK_PMAP_ANIM,225,156,sc2code/igfxres.h,GFXRES,base/planets/dus__big.ani
336 PLANET23_MED_MASK_PMAP_ANIM,225,157,sc2code/igfxres.h,GFXRES,base/planets/dus__med.ani
337 PLANET23_SML_MASK_PMAP_ANIM,225,158,sc2code/igfxres.h,GFXRES,base/planets/dus__sml.ani
338 PLANET24_BIG_MASK_PMAP_ANIM,226,159,sc2code/igfxres.h,GFXRES,base/planets/mar__big.ani
339 PLANET24_MED_MASK_PMAP_ANIM,226,160,sc2code/igfxres.h,GFXRES,base/planets/mar__med.ani
340 PLANET24_SML_MASK_PMAP_ANIM,226,161,sc2code/igfxres.h,GFXRES,base/planets/mar__sml.ani
341 PLANET25_BIG_MASK_PMAP_ANIM,227,162,sc2code/igfxres.h,GFXRES,base/planets/cim__big.ani
342 PLANET25_MED_MASK_PMAP_ANIM,227,163,sc2code/igfxres.h,GFXRES,base/planets/cim__med.ani
343 PLANET25_SML_MASK_PMAP_ANIM,227,164,sc2code/igfxres.h,GFXRES,base/planets/cim__sml.ani
344 PLANET26_BIG_MASK_PMAP_ANIM,228,165,sc2code/igfxres.h,GFXRES,base/planets/inf__big.ani
345 PLANET26_MED_MASK_PMAP_ANIM,228,166,sc2code/igfxres.h,GFXRES,base/planets/inf__med.ani
346 PLANET26_SML_MASK_PMAP_ANIM,228,167,sc2code/igfxres.h,GFXRES,base/planets/inf__sml.ani
347 PLANET27_BIG_MASK_PMAP_ANIM,229,168,sc2code/igfxres.h,GFXRES,base/planets/sel__big.ani
348 PLANET27_MED_MASK_PMAP_ANIM,229,169,sc2code/igfxres.h,GFXRES,base/planets/sel__med.ani
349 PLANET27_SML_MASK_PMAP_ANIM,229,170,sc2code/igfxres.h,GFXRES,base/planets/sel__sml.ani
350 PLANET28_BIG_MASK_PMAP_ANIM,230,171,sc2code/igfxres.h,GFXRES,base/planets/aur__big.ani
351 PLANET28_MED_MASK_PMAP_ANIM,230,172,sc2code/igfxres.h,GFXRES,base/planets/aur__med.ani
352 PLANET28_SML_MASK_PMAP_ANIM,230,173,sc2code/igfxres.h,GFXRES,base/planets/aur__sml.ani
353 PLANET29_BIG_MASK_PMAP_ANIM,231,174,sc2code/igfxres.h,GFXRES,base/planets/flu__big.ani
354 PLANET29_MED_MASK_PMAP_ANIM,231,175,sc2code/igfxres.h,GFXRES,base/planets/flu__med.ani
355 PLANET29_SML_MASK_PMAP_ANIM,231,176,sc2code/igfxres.h,GFXRES,base/planets/flu__sml.ani
356 PLANET30_BIG_MASK_PMAP_ANIM,232,177,sc2code/igfxres.h,GFXRES,base/planets/ult__big.ani
357 PLANET30_MED_MASK_PMAP_ANIM,232,178,sc2code/igfxres.h,GFXRES,base/planets/ult__med.ani
358 PLANET30_SML_MASK_PMAP_ANIM,232,179,sc2code/igfxres.h,GFXRES,base/planets/ult__sml.ani
359 PLANET31_BIG_MASK_PMAP_ANIM,233,180,sc2code/igfxres.h,GFXRES,base/planets/plu__big.ani
360 PLANET31_MED_MASK_PMAP_ANIM,233,181,sc2code/igfxres.h,GFXRES,base/planets/plu__med.ani
361 PLANET31_SML_MASK_PMAP_ANIM,233,182,sc2code/igfxres.h,GFXRES,base/planets/plu__sml.ani
362 PLANET32_BIG_MASK_PMAP_ANIM,234,183,sc2code/igfxres.h,GFXRES,base/planets/rai__big.ani
363 PLANET32_MED_MASK_PMAP_ANIM,234,184,sc2code/igfxres.h,GFXRES,base/planets/rai__med.ani
364 PLANET32_SML_MASK_PMAP_ANIM,234,185,sc2code/igfxres.h,GFXRES,base/planets/rai__sml.ani
365 PLANET33_BIG_MASK_PMAP_ANIM,235,186,sc2code/igfxres.h,GFXRES,base/planets/cra__big.ani
366 PLANET33_MED_MASK_PMAP_ANIM,235,187,sc2code/igfxres.h,GFXRES,base/planets/cra__med.ani
367 PLANET33_SML_MASK_PMAP_ANIM,235,188,sc2code/igfxres.h,GFXRES,base/planets/cra__sml.ani
368 PLANET34_BIG_MASK_PMAP_ANIM,236,189,sc2code/igfxres.h,GFXRES,base/planets/sap__big.ani
369 PLANET34_MED_MASK_PMAP_ANIM,236,190,sc2code/igfxres.h,GFXRES,base/planets/sap__med.ani
370 PLANET34_SML_MASK_PMAP_ANIM,236,191,sc2code/igfxres.h,GFXRES,base/planets/sap__sml.ani
371 PLANET35_BIG_MASK_PMAP_ANIM,237,192,sc2code/igfxres.h,GFXRES,base/planets/org__big.ani
372 PLANET35_MED_MASK_PMAP_ANIM,237,193,sc2code/igfxres.h,GFXRES,base/planets/org__med.ani
373 PLANET35_SML_MASK_PMAP_ANIM,237,194,sc2code/igfxres.h,GFXRES,base/planets/org__sml.ani
374 PLANET36_BIG_MASK_PMAP_ANIM,238,195,sc2code/igfxres.h,GFXRES,base/planets/xen__big.ani
375 PLANET36_MED_MASK_PMAP_ANIM,238,196,sc2code/igfxres.h,GFXRES,base/planets/xen__med.ani
376 PLANET36_SML_MASK_PMAP_ANIM,238,197,sc2code/igfxres.h,GFXRES,base/planets/xen__sml.ani
377 PLANET37_BIG_MASK_PMAP_ANIM,239,198,sc2code/igfxres.h,GFXRES,base/planets/red__big.ani
378 PLANET37_MED_MASK_PMAP_ANIM,239,199,sc2code/igfxres.h,GFXRES,base/planets/red__med.ani
379 PLANET37_SML_MASK_PMAP_ANIM,239,200,sc2code/igfxres.h,GFXRES,base/planets/red__sml.ani
380 PLANET38_BIG_MASK_PMAP_ANIM,240,201,sc2code/igfxres.h,GFXRES,base/planets/pri__big.ani
381 PLANET38_MED_MASK_PMAP_ANIM,240,202,sc2code/igfxres.h,GFXRES,base/planets/pri__med.ani
382 PLANET38_SML_MASK_PMAP_ANIM,240,203,sc2code/igfxres.h,GFXRES,base/planets/pri__sml.ani
383 PLANET39_BIG_MASK_PMAP_ANIM,241,204,sc2code/igfxres.h,GFXRES,base/planets/eme__big.ani
384 PLANET39_MED_MASK_PMAP_ANIM,241,205,sc2code/igfxres.h,GFXRES,base/planets/eme__med.ani
385 PLANET39_SML_MASK_PMAP_ANIM,241,206,sc2code/igfxres.h,GFXRES,base/planets/eme__sml.ani
386 PLANET40_BIG_MASK_PMAP_ANIM,242,207,sc2code/igfxres.h,GFXRES,base/planets/chl__big.ani
387 PLANET40_MED_MASK_PMAP_ANIM,242,208,sc2code/igfxres.h,GFXRES,base/planets/chl__med.ani
388 PLANET40_SML_MASK_PMAP_ANIM,242,209,sc2code/igfxres.h,GFXRES,base/planets/chl__sml.ani
389 PLANET41_BIG_MASK_PMAP_ANIM,243,210,sc2code/igfxres.h,GFXRES,base/planets/mgn__big.ani
390 PLANET41_MED_MASK_PMAP_ANIM,243,211,sc2code/igfxres.h,GFXRES,base/planets/mgn__med.ani
391 PLANET41_SML_MASK_PMAP_ANIM,243,212,sc2code/igfxres.h,GFXRES,base/planets/mgn__sml.ani
392 PLANET42_BIG_MASK_PMAP_ANIM,244,213,sc2code/igfxres.h,GFXRES,base/planets/wat__big.ani
393 PLANET42_MED_MASK_PMAP_ANIM,244,214,sc2code/igfxres.h,GFXRES,base/planets/wat__med.ani
394 PLANET42_SML_MASK_PMAP_ANIM,244,215,sc2code/igfxres.h,GFXRES,base/planets/wat__sml.ani
395 PLANET43_BIG_MASK_PMAP_ANIM,245,216,sc2code/igfxres.h,GFXRES,base/planets/tel__big.ani
396 PLANET43_MED_MASK_PMAP_ANIM,245,217,sc2code/igfxres.h,GFXRES,base/planets/tel__med.ani
397 PLANET43_SML_MASK_PMAP_ANIM,245,218,sc2code/igfxres.h,GFXRES,base/planets/tel__sml.ani
398 PLANET44_BIG_MASK_PMAP_ANIM,246,219,sc2code/igfxres.h,GFXRES,base/planets/hyd__big.ani
399 PLANET44_MED_MASK_PMAP_ANIM,246,220,sc2code/igfxres.h,GFXRES,base/planets/hyd__med.ani
400 PLANET44_SML_MASK_PMAP_ANIM,246,221,sc2code/igfxres.h,GFXRES,base/planets/hyd__sml.ani
401 PLANET45_BIG_MASK_PMAP_ANIM,247,222,sc2code/igfxres.h,GFXRES,base/planets/iod__big.ani
402 PLANET45_MED_MASK_PMAP_ANIM,247,223,sc2code/igfxres.h,GFXRES,base/planets/iod__med.ani
403 PLANET45_SML_MASK_PMAP_ANIM,247,224,sc2code/igfxres.h,GFXRES,base/planets/iod__sml.ani
404 PLANET46_BIG_MASK_PMAP_ANIM,248,225,sc2code/igfxres.h,GFXRES,base/planets/vin__big.ani
405 PLANET46_MED_MASK_PMAP_ANIM,248,226,sc2code/igfxres.h,GFXRES,base/planets/vin__med.ani
406 PLANET46_SML_MASK_PMAP_ANIM,248,227,sc2code/igfxres.h,GFXRES,base/planets/vin__sml.ani
407 PLANET47_BIG_MASK_PMAP_ANIM,249,228,sc2code/igfxres.h,GFXRES,base/planets/rub__big.ani
408 PLANET47_MED_MASK_PMAP_ANIM,249,229,sc2code/igfxres.h,GFXRES,base/planets/rub__med.ani
409 PLANET47_SML_MASK_PMAP_ANIM,249,230,sc2code/igfxres.h,GFXRES,base/planets/rub__sml.ani
410 PLANET48_BIG_MASK_PMAP_ANIM,250,231,sc2code/igfxres.h,GFXRES,base/planets/mgm__big.ani
411 PLANET48_MED_MASK_PMAP_ANIM,250,232,sc2code/igfxres.h,GFXRES,base/planets/mgm__med.ani
412 PLANET48_SML_MASK_PMAP_ANIM,250,233,sc2code/igfxres.h,GFXRES,base/planets/mgm__sml.ani
413 PLANET49_BIG_MASK_PMAP_ANIM,251,234,sc2code/igfxres.h,GFXRES,base/planets/cri__big.ani
414 PLANET49_MED_MASK_PMAP_ANIM,251,235,sc2code/igfxres.h,GFXRES,base/planets/cri__med.ani
415 PLANET49_SML_MASK_PMAP_ANIM,251,236,sc2code/igfxres.h,GFXRES,base/planets/cri__sml.ani
416 PLANET50_BIG_MASK_PMAP_ANIM,252,237,sc2code/igfxres.h,GFXRES,base/planets/blg__big.ani
417 PLANET50_MED_MASK_PMAP_ANIM,252,238,sc2code/igfxres.h,GFXRES,base/planets/blg__med.ani
418 PLANET50_SML_MASK_PMAP_ANIM,252,239,sc2code/igfxres.h,GFXRES,base/planets/blg__sml.ani
419 PLANET51_BIG_MASK_PMAP_ANIM,253,240,sc2code/igfxres.h,GFXRES,base/planets/cyg__big.ani
420 PLANET51_MED_MASK_PMAP_ANIM,253,241,sc2code/igfxres.h,GFXRES,base/planets/cyg__med.ani
421 PLANET51_SML_MASK_PMAP_ANIM,253,242,sc2code/igfxres.h,GFXRES,base/planets/cyg__sml.ani
422 PLANET52_BIG_MASK_PMAP_ANIM,254,243,sc2code/igfxres.h,GFXRES,base/planets/gng__big.ani
423 PLANET52_MED_MASK_PMAP_ANIM,254,244,sc2code/igfxres.h,GFXRES,base/planets/gng__med.ani
424 PLANET52_SML_MASK_PMAP_ANIM,254,245,sc2code/igfxres.h,GFXRES,base/planets/gng__sml.ani
425 PLANET53_BIG_MASK_PMAP_ANIM,255,246,sc2code/igfxres.h,GFXRES,base/planets/gyg__big.ani
426 PLANET53_MED_MASK_PMAP_ANIM,255,247,sc2code/igfxres.h,GFXRES,base/planets/gyg__med.ani
427 PLANET53_SML_MASK_PMAP_ANIM,255,248,sc2code/igfxres.h,GFXRES,base/planets/gyg__sml.ani
428 PLANET54_BIG_MASK_PMAP_ANIM,256,249,sc2code/igfxres.h,GFXRES,base/planets/org__big.ani
429 PLANET54_MED_MASK_PMAP_ANIM,256,250,sc2code/igfxres.h,GFXRES,base/planets/org__med.ani
430 PLANET54_SML_MASK_PMAP_ANIM,256,251,sc2code/igfxres.h,GFXRES,base/planets/org__sml.ani
431 PLANET55_BIG_MASK_PMAP_ANIM,257,252,sc2code/igfxres.h,GFXRES,base/planets/pug__big.ani
432 PLANET55_MED_MASK_PMAP_ANIM,257,253,sc2code/igfxres.h,GFXRES,base/planets/pug__med.ani
433 PLANET55_SML_MASK_PMAP_ANIM,257,254,sc2code/igfxres.h,GFXRES,base/planets/pug__sml.ani
434 PLANET56_BIG_MASK_PMAP_ANIM,258,255,sc2code/igfxres.h,GFXRES,base/planets/reg__big.ani
435 PLANET56_MED_MASK_PMAP_ANIM,258,256,sc2code/igfxres.h,GFXRES,base/planets/reg__med.ani
436 PLANET56_SML_MASK_PMAP_ANIM,258,257,sc2code/igfxres.h,GFXRES,base/planets/reg__sml.ani
437 PLANET57_BIG_MASK_PMAP_ANIM,259,258,sc2code/igfxres.h,GFXRES,base/planets/vig__big.ani
438 PLANET57_MED_MASK_PMAP_ANIM,259,259,sc2code/igfxres.h,GFXRES,base/planets/vig__med.ani
439 PLANET57_SML_MASK_PMAP_ANIM,259,260,sc2code/igfxres.h,GFXRES,base/planets/vig__sml.ani
440 PLANET58_BIG_MASK_PMAP_ANIM,260,261,sc2code/igfxres.h,GFXRES,base/planets/yeg__big.ani
441 PLANET58_MED_MASK_PMAP_ANIM,260,262,sc2code/igfxres.h,GFXRES,base/planets/yeg__med.ani
442 PLANET58_SML_MASK_PMAP_ANIM,260,263,sc2code/igfxres.h,GFXRES,base/planets/yeg__sml.ani
443 CREDITS_BACK_ANIM,262,264,sc2code/igfxres.h,GFXRES,base/cutscene/credits/credback.ani
444 SISSKEL_MASK_PMAP_ANIM,283,284,sc2code/igfxres.h,GFXRES,base/cutscene/ending/sis_skel.ani
445 ORBENTER_PMAP_ANIM,284,285,sc2code/igfxres.h,GFXRES,base/nav/orbitenter.ani
446 MENUBKG_PMAP_ANIM,285,286,sc2code/igfxres.h,GFXRES,base/ui/setupmenu.ani
447 FONTGRAD_PMAP_ANIM,31,287,sc2code/igfxres.h,GFXRES,base/fonts/fontgrad.ani
448 LANDER_FONTEFF_PMAP_ANIM,138,288,sc2code/igfxres.h,GFXRES,base/lander/fonteffect.ani
449 DRUUGE_MUSIC,504,0,sc2code/comm/druuge/imusicre.h,MUSICRES,base/comm/druuge/druuge.mod
450 DRUUGE_FONT,504,1,sc2code/comm/druuge/ifontres.h,FONTRES,base/fonts/druuge.fon
451 DRUUGE_CONVERSATION_PHRASES,504,2,sc2code/comm/druuge/istrtab.h,CONVERSATION,base/comm/druuge/druuge.txt
452 DRUUGE_COLOR_MAP,504,3,sc2code/comm/druuge/istrtab.h,BINTAB,base/comm/druuge/druuge.ct
453 DRUUGE_PMAP_ANIM,504,4,sc2code/comm/druuge/igfxres.h,GFXRES,base/comm/druuge/druuge.ani
454 SLYLAND_MUSIC,512,0,sc2code/comm/slyland/imusicre.h,MUSICRES,base/comm/slylandro/slylandro.mod
455 SLYLAND_FONT,512,1,sc2code/comm/slyland/ifontres.h,FONTRES,base/fonts/slylandro.fon
456 SLYLAND_CONVERSATION_PHRASES,512,2,sc2code/comm/slyland/istrtab.h,CONVERSATION,base/comm/slylandro/slylandro.txt
457 SLYLAND_COLOR_MAP,512,3,sc2code/comm/slyland/istrtab.h,BINTAB,base/comm/slylandro/slylandro.ct
458 SLYLAND_PMAP_ANIM,512,4,sc2code/comm/slyland/igfxres.h,GFXRES,base/comm/slylandro/slylandro.ani
459 UTWIG_MUSIC,520,0,sc2code/comm/utwig/imusicre.h,MUSICRES,base/comm/utwig/utwig.mod
460 UTWIG_ULTRON_MUSIC,520,1,sc2code/comm/utwig/imusicre.h,--,--
461 UTWIG_FONT,520,2,sc2code/comm/utwig/ifontres.h,FONTRES,base/fonts/utwig.fon
462 UTWIG_CONVERSATION_PHRASES,520,3,sc2code/comm/utwig/istrtab.h,CONVERSATION,base/comm/utwig/utwig.txt
463 UTWIG_COLOR_MAP,520,4,sc2code/comm/utwig/istrtab.h,BINTAB,base/comm/utwig/utwig.ct
464 UTWIG_PMAP_ANIM,520,5,sc2code/comm/utwig/igfxres.h,GFXRES,base/comm/utwig/utwig.ani
465 URQUAN_MUSIC,519,0,sc2code/comm/urquan/imusicre.h,MUSICRES,base/comm/urquan/urquan.mod
466 URQUAN_FONT,519,1,sc2code/comm/urquan/ifontres.h,FONTRES,base/fonts/urquan.fon
467 URQUAN_CONVERSATION_PHRASES,519,2,sc2code/comm/urquan/istrtab.h,CONVERSATION,base/comm/urquan/urquan.txt
468 URQUAN_COLOR_MAP,519,3,sc2code/comm/urquan/istrtab.h,BINTAB,base/comm/urquan/urquan.ct
469 URQUAN_PMAP_ANIM,519,4,sc2code/comm/urquan/igfxres.h,GFXRES,base/comm/urquan/urquan.ani
470 CHMMR_MUSIC,502,0,sc2code/comm/chmmr/imusicre.h,MUSICRES,base/comm/chmmr/chmmr.mod
471 CHMMR_FONT,502,1,sc2code/comm/chmmr/ifontres.h,FONTRES,base/fonts/chmmr.fon
472 CHMMR_CONVERSATION_PHRASES,502,2,sc2code/comm/chmmr/istrtab.h,CONVERSATION,base/comm/chmmr/chmmr.txt
473 CHMMR_COLOR_MAP,502,3,sc2code/comm/chmmr/istrtab.h,BINTAB,base/comm/chmmr/chmmr.ct
474 CHMMR_PMAP_ANIM,502,4,sc2code/comm/chmmr/igfxres.h,GFXRES,base/comm/chmmr/chmmr.ani
475 MYCON_MUSIC,507,0,sc2code/comm/mycon/imusicre.h,MUSICRES,base/comm/mycon/mycon.mod
476 MYCON_FONT,507,1,sc2code/comm/mycon/ifontres.h,FONTRES,base/fonts/mycon.fon
477 MYCON_CONVERSATION_PHRASES,507,2,sc2code/comm/mycon/istrtab.h,CONVERSATION,base/comm/mycon/mycon.txt
478 MYCON_COLOR_MAP,507,3,sc2code/comm/mycon/istrtab.h,BINTAB,base/comm/mycon/mycon.ct
479 MYCON_PMAP_ANIM,507,4,sc2code/comm/mycon/igfxres.h,GFXRES,base/comm/mycon/mycon.ani
480 SLYLANDRO_MUSIC,511,0,sc2code/comm/slyhome/imusicre.h,MUSICRES,base/comm/slyhome/slyhome.mod
481 SLYLANDRO_FONT,511,1,sc2code/comm/slyhome/ifontres.h,FONTRES,base/fonts/slyhome.fon
482 SLYLANDRO_CONVERSATION_PHRASES,511,2,sc2code/comm/slyhome/istrtab.h,CONVERSATION,base/comm/slyhome/slyhome.txt
483 SLYLANDRO_COLOR_MAP,511,3,sc2code/comm/slyhome/istrtab.h,BINTAB,base/comm/slyhome/slyhome.ct
484 SLYLANDRO_PMAP_ANIM,511,4,sc2code/comm/slyhome/igfxres.h,GFXRES,base/comm/slyhome/slyhome.ani
485 ZOQFOTPIK_MUSIC,523,0,sc2code/comm/zoqfot/imusicre.h,MUSICRES,base/comm/zoqfotpik/zoqfotpik.mod
486 ZOQFOTPIK_FONT,523,1,sc2code/comm/zoqfot/ifontres.h,FONTRES,base/fonts/zoqfotpik.fon
487 ZOQFOTPIK_CONVERSATION_PHRASES,523,2,sc2code/comm/zoqfot/istrtab.h,CONVERSATION,base/comm/zoqfotpik/zoqfotpik.txt
488 ZOQFOTPIK_COLOR_MAP,523,3,sc2code/comm/zoqfot/istrtab.h,BINTAB,base/comm/zoqfotpik/zoqfotpik.ct
489 ZOQFOTPIK_PMAP_ANIM,523,4,sc2code/comm/zoqfot/igfxres.h,GFXRES,base/comm/zoqfotpik/zoqfotpik.ani
490 VUX_MUSIC,521,0,sc2code/comm/vux/imusicre.h,MUSICRES,base/comm/vux/vux.mod
491 VUX_FONT,521,1,sc2code/comm/vux/ifontres.h,FONTRES,base/fonts/vux.fon
492 VUX_CONVERSATION_PHRASES,521,2,sc2code/comm/vux/istrtab.h,CONVERSATION,base/comm/vux/vux.txt
493 VUX_COLOR_MAP,521,3,sc2code/comm/vux/istrtab.h,BINTAB,base/comm/vux/vux.ct
494 VUX_PMAP_ANIM,521,4,sc2code/comm/vux/igfxres.h,GFXRES,base/comm/vux/vux.ani
495 ARILOU_MUSIC,500,0,sc2code/comm/arilou/imusicre.h,MUSICRES,base/comm/arilou/arilou.mod
496 ARILOU_FONT,500,1,sc2code/comm/arilou/ifontres.h,FONTRES,base/fonts/arilou.fon
497 ARILOU_CONVERSATION_PHRASES,500,2,sc2code/comm/arilou/istrtab.h,CONVERSATION,base/comm/arilou/arilou.txt
498 ARILOU_PMAP_ANIM,500,3,sc2code/comm/arilou/igfxres.h,GFXRES,base/comm/arilou/arilou.ani
499 ARILOU_COLOR_MAP,500,4,sc2code/comm/arilou/igfxres.h,BINTAB,base/comm/arilou/arilou.ct
500 COMMANDER_MUSIC,503,0,sc2code/comm/comandr/imusicre.h,MUSICRES,base/comm/commander/commander.mod
501 STARBASE_ALT_MUSIC,503,1,sc2code/comm/comandr/imusicre.h,--,--
502 COMMANDER_LOWPOW_MUSIC,503,2,sc2code/comm/comandr/imusicre.h,--,--
503 COMMANDER_FONT,503,3,sc2code/comm/comandr/ifontres.h,FONTRES,base/fonts/commander.fon
504 COMMANDER_COLOR_MAP,503,4,sc2code/comm/comandr/istrtab.h,BINTAB,base/comm/commander/commander.ct
505 COMMANDER_CONVERSATION_PHRASES,503,5,sc2code/comm/comandr/istrtab.h,CONVERSATION,base/comm/commander/commander.txt
506 STARBASE_CONVERSATION_PHRASES,503,6,sc2code/comm/comandr/istrtab.h,CONVERSATION,base/comm/starbase/starbase.txt
507 COMMANDER_PMAP_ANIM,503,7,sc2code/comm/comandr/igfxres.h,GFXRES,base/comm/commander/commander.ani
508 SPATHI_MUSIC,513,0,sc2code/comm/spathi/imusicre.h,MUSICRES,base/comm/spathi/spathi.mod
509 SPAHOME_MUSIC,513,1,sc2code/comm/spathi/imusicre.h,MUSICRES,base/comm/spathi/spathi.mod
510 FWIFFO_MUSIC,513,2,sc2code/comm/spathi/imusicre.h,--,--
511 SPATHI_FONT,513,3,sc2code/comm/spathi/ifontres.h,FONTRES,base/fonts/spathi.fon
512 SPATHI_CONVERSATION_PHRASES,513,4,sc2code/comm/spathi/istrtab.h,CONVERSATION,base/comm/spathi/spathi.txt
513 SPATHI_HOME_COLOR_MAP,513,5,sc2code/comm/spathi/istrtab.h,BINTAB,base/comm/spahome/spahome.ct
514 SPATHI_HOME_CONVERSATION_PHRASES,513,6,sc2code/comm/spathi/istrtab.h,CONVERSATION,base/comm/spahome/spahome.txt
515 SPATHI_COLOR_MAP,513,7,sc2code/comm/spathi/istrtab.h,BINTAB,base/comm/spathi/spathi.ct
516 SPATHI_PMAP_ANIM,513,8,sc2code/comm/spathi/igfxres.h,GFXRES,base/comm/spathi/spathi.ani
517 SPATHI_HOME_PMAP_ANIM,513,9,sc2code/comm/spathi/igfxres.h,GFXRES,base/comm/spahome/spahome.ani
518 PKUNK_MUSIC,509,0,sc2code/comm/pkunk/imusicre.h,MUSICRES,base/comm/pkunk/pkunk.mod
519 PKUNK_FONT,509,1,sc2code/comm/pkunk/ifontres.h,FONTRES,base/fonts/pkunk.fon
520 PKUNK_CONVERSATION_PHRASES,509,2,sc2code/comm/pkunk/istrtab.h,CONVERSATION,base/comm/pkunk/pkunk.txt
521 PKUNK_COLOR_MAP,509,3,sc2code/comm/pkunk/istrtab.h,BINTAB,base/comm/pkunk/pkunk.ct
522 PKUNK_PMAP_ANIM,509,4,sc2code/comm/pkunk/igfxres.h,GFXRES,base/comm/pkunk/pkunk.ani
523 SHOFIXTI_MUSIC,510,0,sc2code/comm/shofixt/imusicre.h,MUSICRES,base/comm/shofixti/shofixti.mod
524 SHOFIXTI_FONT,510,1,sc2code/comm/shofixt/ifontres.h,FONTRES,base/fonts/shofixti.fon
525 SHOFIXTI_CONVERSATION_PHRASES,510,2,sc2code/comm/shofixt/istrtab.h,CONVERSATION,base/comm/shofixti/shofixti.txt
526 SHOFIXTI_COLOR_MAP,510,3,sc2code/comm/shofixt/istrtab.h,BINTAB,base/comm/shofixti/shofixti.ct
527 SHOFIXTI_PMAP_ANIM,510,4,sc2code/comm/shofixt/igfxres.h,GFXRES,base/comm/shofixti/shofixti.ani
528 UMGAH_MUSIC,518,0,sc2code/comm/umgah/imusicre.h,MUSICRES,base/comm/umgah/umgah.mod
529 UMGAH_FONT,518,1,sc2code/comm/umgah/ifontres.h,FONTRES,base/fonts/umgah.fon
530 UMGAH_CONVERSATION_PHRASES,518,2,sc2code/comm/umgah/istrtab.h,CONVERSATION,base/comm/umgah/umgah.txt
531 UMGAH_COLOR_MAP,518,3,sc2code/comm/umgah/istrtab.h,BINTAB,base/comm/umgah/umgah.ct
532 UMGAH_PMAP_ANIM,518,4,sc2code/comm/umgah/igfxres.h,GFXRES,base/comm/umgah/umgah.ani
533 ILWRATH_MUSIC,505,0,sc2code/comm/ilwrath/imusicre.h,MUSICRES,base/comm/ilwrath/ilwrath.mod
534 ILWRATH_FONT,505,1,sc2code/comm/ilwrath/ifontres.h,FONTRES,base/fonts/ilwrath.fon
535 ILWRATH_CONVERSATION_PHRASES,505,2,sc2code/comm/ilwrath/istrtab.h,CONVERSATION,base/comm/ilwrath/ilwrath.txt
536 ILWRATH_COLOR_MAP,505,3,sc2code/comm/ilwrath/istrtab.h,BINTAB,base/comm/ilwrath/ilwrath.ct
537 ILWRATH_PMAP_ANIM,505,4,sc2code/comm/ilwrath/igfxres.h,GFXRES,base/comm/ilwrath/ilwrath.ani
538 SYREEN_MUSIC,515,0,sc2code/comm/syreen/imusicre.h,MUSICRES,base/comm/syreen/syreen.mod
539 SYREEN_FONT,515,1,sc2code/comm/syreen/ifontres.h,FONTRES,base/fonts/syreen.fon
540 SYREEN_CONVERSATION_PHRASES,515,2,sc2code/comm/syreen/istrtab.h,CONVERSATION,base/comm/syreen/syreen.txt
541 SYREEN_COLOR_MAP,515,3,sc2code/comm/syreen/istrtab.h,BINTAB,base/comm/syreen/syreen.ct
542 SYREEN_PMAP_ANIM,515,4,sc2code/comm/syreen/igfxres.h,GFXRES,base/comm/syreen/syreen.ani
543 MELNORME_MUSIC,506,0,sc2code/comm/melnorm/imusicre.h,MUSICRES,base/comm/melnorme/melnorme.mod
544 MELNORME_FONT,506,1,sc2code/comm/melnorm/ifontres.h,FONTRES,base/fonts/melnorme.fon
545 MELNORME_CONVERSATION_PHRASES,506,2,sc2code/comm/melnorm/istrtab.h,CONVERSATION,base/comm/melnorme/melnorme.txt
546 MELNORME_COLOR_MAP,506,3,sc2code/comm/melnorm/istrtab.h,BINTAB,base/comm/melnorme/melnorme.ct
547 MELNORME_PMAP_ANIM,506,4,sc2code/comm/melnorm/igfxres.h,GFXRES,base/comm/melnorme/melnorme.ani
548 BLACKURQ_MUSIC,501,0,sc2code/comm/blackur/imusicre.h,MUSICRES,base/comm/kohrah/kohrah.mod
549 BLACKURQ_FONT,501,1,sc2code/comm/blackur/ifontres.h,FONTRES,base/fonts/kohrah.fon
550 BLACKURQ_CONVERSATION_PHRASES,501,2,sc2code/comm/blackur/istrtab.h,CONVERSATION,base/comm/kohrah/kohrah.txt
551 BLACKURQ_COLOR_MAP,501,3,sc2code/comm/blackur/istrtab.h,BINTAB,base/comm/kohrah/kohrah.ct
552 BLACKURQ_PMAP_ANIM,501,4,sc2code/comm/blackur/igfxres.h,GFXRES,base/comm/kohrah/kohrah.ani
553 TALKING_PET_MUSIC,516,0,sc2code/comm/talkpet/imusicre.h,MUSICRES,base/comm/talkingpet/talkingpet.mod
554 TALKING_PET_FONT,516,1,sc2code/comm/talkpet/ifontres.h,FONTRES,base/fonts/talkingpet.fon
555 TALKING_PET_CONVERSATION_PHRASES,516,2,sc2code/comm/talkpet/istrtab.h,CONVERSATION,base/comm/talkingpet/talkingpet.txt
556 TALKING_PET_COLOR_MAP,516,3,sc2code/comm/talkpet/istrtab.h,BINTAB,base/comm/talkingpet/talkingpet.ct
557 TALKING_PET_PMAP_ANIM,516,4,sc2code/comm/talkpet/igfxres.h,GFXRES,base/comm/talkingpet/talkingpet.ani
558 YEHAT_MUSIC,522,0,sc2code/comm/yehat/imusicre.h,MUSICRES,base/comm/yehat/yehat.mod
559 REBEL_MUSIC,522,1,sc2code/comm/yehat/imusicre.h,--,--
560 YEHAT_FONT,522,2,sc2code/comm/yehat/ifontres.h,FONTRES,base/fonts/yehat.fon
561 YEHAT_CONVERSATION_PHRASES,522,3,sc2code/comm/yehat/istrtab.h,CONVERSATION,base/comm/yehat/yehat.txt
562 REBEL_CONVERSATION_PHRASES,522,4,sc2code/comm/yehat/istrtab.h,CONVERSATION,base/comm/yehatrebels/yehatrebels.txt
563 YEHAT_COLOR_MAP,522,5,sc2code/comm/yehat/istrtab.h,BINTAB,base/comm/yehat/yehat.ct
564 YEHAT_PMAP_ANIM,522,6,sc2code/comm/yehat/igfxres.h,GFXRES,base/comm/yehat/yehat.ani
565 SUPOX_MUSIC,514,0,sc2code/comm/supox/imusicre.h,MUSICRES,base/comm/supox/supox.mod
566 SUPOX_FONT,514,1,sc2code/comm/supox/ifontres.h,FONTRES,base/fonts/supox.fon
567 SUPOX_CONVERSATION_PHRASES,514,2,sc2code/comm/supox/istrtab.h,CONVERSATION,base/comm/supox/supox.txt
568 SUPOX_COLOR_MAP,514,3,sc2code/comm/supox/istrtab.h,BINTAB,base/comm/supox/supox.ct
569 SUPOX_PMAP_ANIM,514,4,sc2code/comm/supox/igfxres.h,GFXRES,base/comm/supox/supox.ani
570 THRADD_MUSIC,517,0,sc2code/comm/thradd/imusicre.h,MUSICRES,base/comm/thraddash/thraddash.mod
571 THRADD_FONT,517,1,sc2code/comm/thradd/ifontres.h,FONTRES,base/fonts/thraddash.fon
572 THRADD_CONVERSATION_PHRASES,517,2,sc2code/comm/thradd/istrtab.h,CONVERSATION,base/comm/thraddash/thraddash.txt
573 THRADD_COLOR_MAP,517,3,sc2code/comm/thradd/istrtab.h,BINTAB,base/comm/thraddash/thraddash.ct
574 THRADD_PMAP_ANIM,517,4,sc2code/comm/thradd/igfxres.h,GFXRES,base/comm/thraddash/thraddash.ani
575 ORZ_MUSIC,508,0,sc2code/comm/orz/imusicre.h,MUSICRES,base/comm/orz/orz.mod
576 ORZ_FONT,508,1,sc2code/comm/orz/ifontres.h,FONTRES,base/fonts/orz.fon
577 ORZ_CONVERSATION_PHRASES,508,2,sc2code/comm/orz/istrtab.h,CONVERSATION,base/comm/orz/orz.txt
578 ORZ_COLOR_MAP,508,3,sc2code/comm/orz/istrtab.h,BINTAB,base/comm/orz/orz.ct
579 ORZ_PMAP_ANIM,508,4,sc2code/comm/orz/igfxres.h,GFXRES,base/comm/orz/orz.ani
580 DRUUGE_CODE,705,0,sc2code/ships/druuge/icode.h,SHIP,5
581 DRUUGE_VICTORY_SONG,705,0,sc2code/ships/druuge/imusicre.h,MUSICRES,base/ships/druuge/druditty.mod
582 DRUUGE_RACE_STRINGS,705,1,sc2code/ships/druuge/istrtab.h,STRTAB,base/ships/druuge/drutext.txt
583 DRUUGE_SHIP_SOUNDS,705,2,sc2code/ships/druuge/isndres.h,SNDRES,base/ships/druuge/drusound.snd
584 DRUUGE_ICON_MASK_PMAP_ANIM,705,3,sc2code/ships/druuge/igfxres.h,GFXRES,base/ships/druuge/druicons.ani
585 DRUUGE_MICON_MASK_PMAP_ANIM,705,4,sc2code/ships/druuge/igfxres.h,GFXRES,base/ships/druuge/drumicon.ani
586 DRUUGE_BIG_MASK_PMAP_ANIM,705,5,sc2code/ships/druuge/igfxres.h,GFXRES,base/ships/druuge/druuge.big
587 DRUUGE_MED_MASK_PMAP_ANIM,705,6,sc2code/ships/druuge/igfxres.h,GFXRES,base/ships/druuge/druuge.med
588 DRUUGE_SML_MASK_PMAP_ANIM,705,7,sc2code/ships/druuge/igfxres.h,GFXRES,base/ships/druuge/druuge.sml
589 DRUUGE_CANNON_BIG_MASK_PMAP_ANIM,705,8,sc2code/ships/druuge/igfxres.h,GFXRES,base/ships/druuge/canbig.ani
590 DRUUGE_CANNON_MED_MASK_PMAP_ANIM,705,9,sc2code/ships/druuge/igfxres.h,GFXRES,base/ships/druuge/canmed.ani
591 DRUUGE_CANNON_SML_MASK_PMAP_ANIM,705,10,sc2code/ships/druuge/igfxres.h,GFXRES,base/ships/druuge/cansml.ani
592 DRUUGE_CAPT_MASK_PMAP_ANIM,705,11,sc2code/ships/druuge/igfxres.h,GFXRES,base/ships/druuge/drucap.ani
593 SLYLANDRO_CODE,717,0,sc2code/ships/slylandr/icode.h,SHIP,14
594 SLYLANDRO_VICTORY_SONG,717,0,sc2code/ships/slylandr/imusicre.h,MUSICRES,base/ships/slylandr/slyditty.mod
595 SLYLANDRO_RACE_STRINGS,717,1,sc2code/ships/slylandr/istrtab.h,STRTAB,base/ships/slylandr/slytext.txt
596 SLYLANDRO_SHIP_SOUNDS,717,2,sc2code/ships/slylandr/isndres.h,SNDRES,base/ships/slylandr/slysound.snd
597 SLYLANDRO_ICON_MASK_PMAP_ANIM,717,3,sc2code/ships/slylandr/igfxres.h,GFXRES,base/ships/slylandr/slyicons.ani
598 SLYLANDRO_MICON_MASK_PMAP_ANIM,717,4,sc2code/ships/slylandr/igfxres.h,GFXRES,base/ships/slylandr/slymicon.ani
599 SLYLANDRO_BIG_MASK_PMAP_ANIM,717,5,sc2code/ships/slylandr/igfxres.h,GFXRES,base/ships/slylandr/slylandr.big
600 SLYLANDRO_MED_MASK_PMAP_ANIM,717,6,sc2code/ships/slylandr/igfxres.h,GFXRES,base/ships/slylandr/slylandr.med
601 SLYLANDRO_SML_MASK_PMAP_ANIM,717,7,sc2code/ships/slylandr/igfxres.h,GFXRES,base/ships/slylandr/slylandr.sml
602 SLYLANDRO_CAPTAIN_MASK_PMAP_ANIM,717,8,sc2code/ships/slylandr/igfxres.h,GFXRES,base/ships/slylandr/slycap.ani
603 UTWIG_CODE,724,0,sc2code/ships/utwig/icode.h,SHIP,21
604 UTWIG_VICTORY_SONG,724,0,sc2code/ships/utwig/imusicre.h,MUSICRES,base/ships/utwig/utwditty.mod
605 UTWIG_RACE_STRINGS,724,1,sc2code/ships/utwig/istrtab.h,STRTAB,base/ships/utwig/utwtext.txt
606 UTWIG_SHIP_SOUNDS,724,2,sc2code/ships/utwig/isndres.h,SNDRES,base/ships/utwig/utwsound.snd
607 UTWIG_ICON_MASK_PMAP_ANIM,724,3,sc2code/ships/utwig/igfxres.h,GFXRES,base/ships/utwig/utwicons.ani
608 UTWIG_MICON_MASK_PMAP_ANIM,724,4,sc2code/ships/utwig/igfxres.h,GFXRES,base/ships/utwig/utwmicon.ani
609 UTWIG_BIG_MASK_PMAP_ANIM,724,5,sc2code/ships/utwig/igfxres.h,GFXRES,base/ships/utwig/utwig.big
610 UTWIG_MED_MASK_PMAP_ANIM,724,6,sc2code/ships/utwig/igfxres.h,GFXRES,base/ships/utwig/utwig.med
611 UTWIG_SML_MASK_PMAP_ANIM,724,7,sc2code/ships/utwig/igfxres.h,GFXRES,base/ships/utwig/utwig.sml
612 LANCE_BIG_MASK_PMAP_ANIM,724,8,sc2code/ships/utwig/igfxres.h,GFXRES,base/ships/utwig/lanbig.ani
613 LANCE_MED_MASK_PMAP_ANIM,724,9,sc2code/ships/utwig/igfxres.h,GFXRES,base/ships/utwig/lanmed.ani
614 LANCE_SML_MASK_PMAP_ANIM,724,10,sc2code/ships/utwig/igfxres.h,GFXRES,base/ships/utwig/lansml.ani
615 UTWIG_CAPTAIN_MASK_PMAP_ANIM,724,11,sc2code/ships/utwig/igfxres.h,GFXRES,base/ships/utwig/utwcap.ani
616 URQUAN_CODE,723,0,sc2code/ships/urquan/icode.h,SHIP,20
617 URQUAN_VICTORY_SONG,723,0,sc2code/ships/urquan/imusicre.h,MUSICRES,base/ships/urquan/urqditty.mod
618 URQUAN_RACE_STRINGS,723,1,sc2code/ships/urquan/istrtab.h,STRTAB,base/ships/urquan/urqtext.txt
619 URQUAN_SHIP_SOUNDS,723,2,sc2code/ships/urquan/isndres.h,SNDRES,base/ships/urquan/urqsound.snd
620 URQUAN_ICON_MASK_PMAP_ANIM,723,3,sc2code/ships/urquan/igfxres.h,GFXRES,base/ships/urquan/urqicons.ani
621 URQUAN_MICON_MASK_PMAP_ANIM,723,4,sc2code/ships/urquan/igfxres.h,GFXRES,base/ships/urquan/urqmicon.ani
622 URQUAN_BIG_MASK_PMAP_ANIM,723,5,sc2code/ships/urquan/igfxres.h,GFXRES,base/ships/urquan/urquan.big
623 URQUAN_MED_MASK_PMAP_ANIM,723,6,sc2code/ships/urquan/igfxres.h,GFXRES,base/ships/urquan/urquan.med
624 URQUAN_SML_MASK_PMAP_ANIM,723,7,sc2code/ships/urquan/igfxres.h,GFXRES,base/ships/urquan/urquan.sml
625 FUSION_BIG_MASK_PMAP_ANIM,723,8,sc2code/ships/urquan/igfxres.h,GFXRES,base/ships/urquan/fusion.big
626 FUSION_MED_MASK_PMAP_ANIM,723,9,sc2code/ships/urquan/igfxres.h,GFXRES,base/ships/urquan/fusion.med
627 FUSION_SML_MASK_PMAP_ANIM,723,10,sc2code/ships/urquan/igfxres.h,GFXRES,base/ships/urquan/fusion.sml
628 FIGHTER_BIG_MASK_PMAP_ANIM,723,11,sc2code/ships/urquan/igfxres.h,GFXRES,base/ships/urquan/fight.big
629 FIGHTER_MED_MASK_PMAP_ANIM,723,12,sc2code/ships/urquan/igfxres.h,GFXRES,base/ships/urquan/fight.med
630 FIGHTER_SML_MASK_PMAP_ANIM,723,13,sc2code/ships/urquan/igfxres.h,GFXRES,base/ships/urquan/fight.sml
631 URQUAN_CAPTAIN_MASK_PMAP_ANIM,723,14,sc2code/ships/urquan/igfxres.h,GFXRES,base/ships/urquan/urqcap.ani
632 CHMMR_CODE,704,0,sc2code/ships/chmmr/icode.h,SHIP,4
633 CHMMR_VICTORY_SONG,704,0,sc2code/ships/chmmr/imusicre.h,MUSICRES,base/ships/chmmr/chmditty.mod
634 CHMMR_RACE_STRINGS,704,1,sc2code/ships/chmmr/istrtab.h,STRTAB,base/ships/chmmr/chmtext.txt
635 CHMMR_SHIP_SOUNDS,704,2,sc2code/ships/chmmr/isndres.h,SNDRES,base/ships/chmmr/chmsound.snd
636 CHMMR_ICON_MASK_PMAP_ANIM,704,3,sc2code/ships/chmmr/igfxres.h,GFXRES,base/ships/chmmr/chmicons.ani
637 CHMMR_MICON_MASK_PMAP_ANIM,704,4,sc2code/ships/chmmr/igfxres.h,GFXRES,base/ships/chmmr/chmmicon.ani
638 CHMMR_BIG_MASK_PMAP_ANIM,704,5,sc2code/ships/chmmr/igfxres.h,GFXRES,base/ships/chmmr/chmmr.big
639 CHMMR_MED_MASK_PMAP_ANIM,704,6,sc2code/ships/chmmr/igfxres.h,GFXRES,base/ships/chmmr/chmmr.med
640 CHMMR_SML_MASK_PMAP_ANIM,704,7,sc2code/ships/chmmr/igfxres.h,GFXRES,base/ships/chmmr/chmmr.sml
641 MUZZLE_BIG_MASK_PMAP_ANIM,704,8,sc2code/ships/chmmr/igfxres.h,GFXRES,base/ships/chmmr/muzbig.ani
642 MUZZLE_MED_MASK_PMAP_ANIM,704,9,sc2code/ships/chmmr/igfxres.h,GFXRES,base/ships/chmmr/muzmed.ani
643 MUZZLE_SML_MASK_PMAP_ANIM,704,10,sc2code/ships/chmmr/igfxres.h,GFXRES,base/ships/chmmr/muzsml.ani
644 SATELLITE_BIG_MASK_PMAP_ANIM,704,11,sc2code/ships/chmmr/igfxres.h,GFXRES,base/ships/chmmr/satbig.ani
645 SATELLITE_MED_MASK_PMAP_ANIM,704,12,sc2code/ships/chmmr/igfxres.h,GFXRES,base/ships/chmmr/satmed.ani
646 SATELLITE_SML_MASK_PMAP_ANIM,704,13,sc2code/ships/chmmr/igfxres.h,GFXRES,base/ships/chmmr/satsml.ani
647 CHMMR_CAPTAIN_MASK_PMAP_ANIM,704,14,sc2code/ships/chmmr/igfxres.h,GFXRES,base/ships/chmmr/chmcap.ani
648 MYCON_CODE,711,0,sc2code/ships/mycon/icode.h,SHIP,10
649 MYCON_VICTORY_SONG,711,0,sc2code/ships/mycon/imusicre.h,MUSICRES,base/ships/mycon/mycditty.mod
650 MYCON_RACE_STRINGS,711,1,sc2code/ships/mycon/istrtab.h,STRTAB,base/ships/mycon/myctext.txt
651 MYCON_SHIP_SOUNDS,711,2,sc2code/ships/mycon/isndres.h,SNDRES,base/ships/mycon/mycsound.snd
652 MYCON_ICON_MASK_PMAP_ANIM,711,3,sc2code/ships/mycon/igfxres.h,GFXRES,base/ships/mycon/mycicons.ani
653 MYCON_MICON_MASK_PMAP_ANIM,711,4,sc2code/ships/mycon/igfxres.h,GFXRES,base/ships/mycon/mycmicon.ani
654 MYCON_BIG_MASK_PMAP_ANIM,711,5,sc2code/ships/mycon/igfxres.h,GFXRES,base/ships/mycon/mycon.big
655 MYCON_MED_MASK_PMAP_ANIM,711,6,sc2code/ships/mycon/igfxres.h,GFXRES,base/ships/mycon/mycon.med
656 MYCON_SML_MASK_PMAP_ANIM,711,7,sc2code/ships/mycon/igfxres.h,GFXRES,base/ships/mycon/mycon.sml
657 PLASMA_BIG_MASK_PMAP_ANIM,711,8,sc2code/ships/mycon/igfxres.h,GFXRES,base/ships/mycon/plasma.big
658 PLASMA_MED_MASK_PMAP_ANIM,711,9,sc2code/ships/mycon/igfxres.h,GFXRES,base/ships/mycon/plasma.med
659 PLASMA_SML_MASK_PMAP_ANIM,711,10,sc2code/ships/mycon/igfxres.h,GFXRES,base/ships/mycon/plasma.sml
660 MYCON_CAPTAIN_MASK_PMAP_ANIM,711,11,sc2code/ships/mycon/igfxres.h,GFXRES,base/ships/mycon/myccap.ani
661 SHOFIXTI_CODE,715,0,sc2code/ships/shofixti/icode.h,SHIP,13
662 SHOFIXTI_VICTORY_SONG,715,0,sc2code/ships/shofixti/imusicre.h,MUSICRES,base/ships/shofixti/shoditty.mod
663 SHOFIXTI_RACE_STRINGS,715,1,sc2code/ships/shofixti/istrtab.h,STRTAB,base/ships/shofixti/shotext.txt
664 SHOFIXTI_SHIP_SOUNDS,715,2,sc2code/ships/shofixti/isndres.h,SNDRES,base/ships/shofixti/shosound.snd
665 SHOFIXTI_ICON_MASK_PMAP_ANIM,715,3,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/shoicons.ani
666 SHOFIXTI_MICON_MASK_PMAP_ANIM,715,4,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/shomicon.ani
667 SHOFIXTI_BIG_MASK_PMAP_ANIM,715,5,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/shofixti.big
668 SHOFIXTI_MED_MASK_PMAP_ANIM,715,6,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/shofixti.med
669 SHOFIXTI_SML_MASK_PMAP_ANIM,715,7,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/shofixti.sml
670 DESTRUCT_BIG_MASK_ANIM,715,8,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/destruct.big
671 DESTRUCT_MED_MASK_ANIM,715,9,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/destruct.med
672 DESTRUCT_SML_MASK_ANIM,715,10,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/destruct.sml
673 SHOFIXTI_CAPTAIN_MASK_PMAP_ANIM,715,11,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/shocap.ani
674 OLDSHOF_BIG_MASK_PMAP_ANIM,715,12,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/oldshof.big
675 OLDSHOF_MED_MASK_PMAP_ANIM,715,13,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/oldshof.med
676 OLDSHOF_SML_MASK_PMAP_ANIM,715,14,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/oldshof.sml
677 OLDSHOF_CAPTAIN_MASK_PMAP_ANIM,715,15,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/oldcap.ani
678 DART_BIG_MASK_PMAP_ANIM,715,16,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/missile.big
679 DART_MED_MASK_PMAP_ANIM,715,17,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/missile.med
680 DART_SML_MASK_PMAP_ANIM,715,18,sc2code/ships/shofixti/igfxres.h,GFXRES,base/ships/shofixti/missile.sml
681 KOHR_AH_CODE,702,0,sc2code/ships/blackurq/icode.h,SHIP,2
682 KOHR_AH_VICTORY_SONG,702,0,sc2code/ships/blackurq/imusicre.h,MUSICRES,base/ships/kohrah/bladitty.mod
683 KOHR_AH_RACE_STRINGS,702,1,sc2code/ships/blackurq/istrtab.h,STRTAB,base/ships/kohrah/blatext.txt
684 KOHR_AH_SHIP_SOUNDS,702,2,sc2code/ships/blackurq/isndres.h,SNDRES,base/ships/kohrah/blasound.snd
685 KOHR_AH_ICON_MASK_PMAP_ANIM,702,3,sc2code/ships/blackurq/igfxres.h,GFXRES,base/ships/kohrah/blaicons.ani
686 KOHR_AH_MICON_MASK_PMAP_ANIM,702,4,sc2code/ships/blackurq/igfxres.h,GFXRES,base/ships/kohrah/blamicon.ani
687 KOHR_AH_BIG_MASK_PMAP_ANIM,702,5,sc2code/ships/blackurq/igfxres.h,GFXRES,base/ships/kohrah/blackurq.big
688 KOHR_AH_MED_MASK_PMAP_ANIM,702,6,sc2code/ships/blackurq/igfxres.h,GFXRES,base/ships/kohrah/blackurq.med
689 KOHR_AH_SML_MASK_PMAP_ANIM,702,7,sc2code/ships/blackurq/igfxres.h,GFXRES,base/ships/kohrah/blackurq.sml
690 BUZZSAW_BIG_MASK_PMAP_ANIM,702,8,sc2code/ships/blackurq/igfxres.h,GFXRES,base/ships/kohrah/buzbig.ani
691 BUZZSAW_MED_MASK_PMAP_ANIM,702,9,sc2code/ships/blackurq/igfxres.h,GFXRES,base/ships/kohrah/buzmed.ani
692 BUZZSAW_SML_MASK_PMAP_ANIM,702,10,sc2code/ships/blackurq/igfxres.h,GFXRES,base/ships/kohrah/buzsml.ani
693 GAS_BIG_MASK_PMAP_ANIM,702,11,sc2code/ships/blackurq/igfxres.h,GFXRES,base/ships/kohrah/gasbig.ani
694 GAS_MED_MASK_PMAP_ANIM,702,12,sc2code/ships/blackurq/igfxres.h,GFXRES,base/ships/kohrah/gasmed.ani
695 GAS_SML_MASK_PMAP_ANIM,702,13,sc2code/ships/blackurq/igfxres.h,GFXRES,base/ships/kohrah/gassml.ani
696 KOHR_AH_CAPTAIN_MASK_PMAP_ANIM,702,14,sc2code/ships/blackurq/igfxres.h,GFXRES,base/ships/kohrah/blacap.ani
697 MELNORME_CODE,709,0,sc2code/ships/melnorme/icode.h,SHIP,8
698 MELNORME_VICTORY_SONG,709,0,sc2code/ships/melnorme/imusicre.h,MUSICRES,base/ships/melnorme/melditty.mod
699 MELNORME_RACE_STRINGS,709,1,sc2code/ships/melnorme/istrtab.h,STRTAB,base/ships/melnorme/meltext.txt
700 MELNORME_SHIP_SOUNDS,709,2,sc2code/ships/melnorme/isndres.h,SNDRES,base/ships/melnorme/melsound.snd
701 MELNORME_ICON_MASK_PMAP_ANIM,709,3,sc2code/ships/melnorme/igfxres.h,GFXRES,base/ships/melnorme/melicons.ani
702 MELNORME_MICON_MASK_PMAP_ANIM,709,4,sc2code/ships/melnorme/igfxres.h,GFXRES,base/ships/melnorme/melmicon.ani
703 MELNORME_BIG_MASK_PMAP_ANIM,709,5,sc2code/ships/melnorme/igfxres.h,GFXRES,base/ships/melnorme/melnorme.big
704 MELNORME_MED_MASK_PMAP_ANIM,709,6,sc2code/ships/melnorme/igfxres.h,GFXRES,base/ships/melnorme/melnorme.med
705 MELNORME_SML_MASK_PMAP_ANIM,709,7,sc2code/ships/melnorme/igfxres.h,GFXRES,base/ships/melnorme/melnorme.sml
706 PUMPUP_BIG_MASK_PMAP_ANIM,709,8,sc2code/ships/melnorme/igfxres.h,GFXRES,base/ships/melnorme/pumpbig.ani
707 PUMPUP_MED_MASK_PMAP_ANIM,709,9,sc2code/ships/melnorme/igfxres.h,GFXRES,base/ships/melnorme/pumpmed.ani
708 PUMPUP_SML_MASK_PMAP_ANIM,709,10,sc2code/ships/melnorme/igfxres.h,GFXRES,base/ships/melnorme/pumpsml.ani
709 CONFUSE_BIG_MASK_PMAP_ANIM,709,11,sc2code/ships/melnorme/igfxres.h,GFXRES,base/ships/melnorme/confubig.ani
710 CONFUSE_MED_MASK_PMAP_ANIM,709,12,sc2code/ships/melnorme/igfxres.h,GFXRES,base/ships/melnorme/confumed.ani
711 CONFUSE_SML_MASK_PMAP_ANIM,709,13,sc2code/ships/melnorme/igfxres.h,GFXRES,base/ships/melnorme/confusml.ani
712 MELNORME_CAPTAIN_MASK_PMAP_ANIM,709,14,sc2code/ships/melnorme/igfxres.h,GFXRES,base/ships/melnorme/melcap.ani
713 ZOQFOTPIK_CODE,727,0,sc2code/ships/zoqfot/icode.h,SHIP,24
714 ZOQFOTPIK_VICTORY_SONG,727,0,sc2code/ships/zoqfot/imusicre.h,MUSICRES,base/ships/zoqfot/zoqditty.mod
715 ZOQFOTPIK_RACE_STRINGS,727,1,sc2code/ships/zoqfot/istrtab.h,STRTAB,base/ships/zoqfot/zoqtext.txt
716 ZOQFOTPIK_SHIP_SOUNDS,727,2,sc2code/ships/zoqfot/isndres.h,SNDRES,base/ships/zoqfot/zoqsound.snd
717 ZOQFOTPIK_ICON_MASK_PMAP_ANIM,727,3,sc2code/ships/zoqfot/igfxres.h,GFXRES,base/ships/zoqfot/zoqicons.ani
718 ZOQFOTPIK_MICON_MASK_PMAP_ANIM,727,4,sc2code/ships/zoqfot/igfxres.h,GFXRES,base/ships/zoqfot/zoqmicon.ani
719 ZOQFOTPIK_BIG_MASK_PMAP_ANIM,727,5,sc2code/ships/zoqfot/igfxres.h,GFXRES,base/ships/zoqfot/zoqfot.big
720 ZOQFOTPIK_MED_MASK_PMAP_ANIM,727,6,sc2code/ships/zoqfot/igfxres.h,GFXRES,base/ships/zoqfot/zoqfot.med
721 ZOQFOTPIK_SML_MASK_PMAP_ANIM,727,7,sc2code/ships/zoqfot/igfxres.h,GFXRES,base/ships/zoqfot/zoqfot.sml
722 SPIT_BIG_MASK_PMAP_ANIM,727,8,sc2code/ships/zoqfot/igfxres.h,GFXRES,base/ships/zoqfot/spitbig.ani
723 SPIT_MED_MASK_PMAP_ANIM,727,9,sc2code/ships/zoqfot/igfxres.h,GFXRES,base/ships/zoqfot/spitmed.ani
724 SPIT_SML_MASK_PMAP_ANIM,727,10,sc2code/ships/zoqfot/igfxres.h,GFXRES,base/ships/zoqfot/spitsml.ani
725 STINGER_BIG_MASK_PMAP_ANIM,727,11,sc2code/ships/zoqfot/igfxres.h,GFXRES,base/ships/zoqfot/stibig.ani
726 STINGER_MED_MASK_PMAP_ANIM,727,12,sc2code/ships/zoqfot/igfxres.h,GFXRES,base/ships/zoqfot/stimed.ani
727 STINGER_SML_MASK_PMAP_ANIM,727,13,sc2code/ships/zoqfot/igfxres.h,GFXRES,base/ships/zoqfot/stisml.ani
728 ZOQFOTPIK_CAPTAIN_MASK_PMAP_ANIM,727,14,sc2code/ships/zoqfot/igfxres.h,GFXRES,base/ships/zoqfot/zoqcap.ani
729 VUX_CODE,725,0,sc2code/ships/vux/icode.h,SHIP,22
730 VUX_VICTORY_SONG,725,0,sc2code/ships/vux/imusicre.h,MUSICRES,base/ships/vux/vuxditty.mod
731 VUX_RACE_STRINGS,725,1,sc2code/ships/vux/istrtab.h,STRTAB,base/ships/vux/vuxtext.txt
732 VUX_SHIP_SOUNDS,725,2,sc2code/ships/vux/isndres.h,SNDRES,base/ships/vux/vuxsound.snd
733 VUX_ICON_MASK_PMAP_ANIM,725,3,sc2code/ships/vux/igfxres.h,GFXRES,base/ships/vux/vuxicons.ani
734 VUX_MICON_MASK_PMAP_ANIM,725,4,sc2code/ships/vux/igfxres.h,GFXRES,base/ships/vux/vuxmicon.ani
735 VUX_BIG_MASK_PMAP_ANIM,725,5,sc2code/ships/vux/igfxres.h,GFXRES,base/ships/vux/vux.big
736 VUX_MED_MASK_PMAP_ANIM,725,6,sc2code/ships/vux/igfxres.h,GFXRES,base/ships/vux/vux.med
737 VUX_SML_MASK_PMAP_ANIM,725,7,sc2code/ships/vux/igfxres.h,GFXRES,base/ships/vux/vux.sml
738 LIMPETS_BIG_MASK_PMAP_ANIM,725,8,sc2code/ships/vux/igfxres.h,GFXRES,base/ships/vux/limpets.big
739 LIMPETS_MED_MASK_PMAP_ANIM,725,9,sc2code/ships/vux/igfxres.h,GFXRES,base/ships/vux/limpets.med
740 LIMPETS_SML_MASK_PMAP_ANIM,725,10,sc2code/ships/vux/igfxres.h,GFXRES,base/ships/vux/limpets.sml
741 SLIME_MASK_PMAP_ANIM,725,11,sc2code/ships/vux/igfxres.h,GFXRES,base/ships/vux/slime.ani
742 VUX_CAPTAIN_MASK_PMAP_ANIM,725,12,sc2code/ships/vux/igfxres.h,GFXRES,base/ships/vux/vuxcap.ani
743 ARILOU_CODE,701,0,sc2code/ships/arilou/icode.h,SHIP,1
744 ARILOU_VICTORY_SONG,701,0,sc2code/ships/arilou/imusicre.h,MUSICRES,base/ships/arilou/ariditty.mod
745 ARILOU_RACE_STRINGS,701,1,sc2code/ships/arilou/istrtab.h,STRTAB,base/ships/arilou/aritext.txt
746 ARILOU_SHIP_SOUNDS,701,2,sc2code/ships/arilou/isndres.h,SNDRES,base/ships/arilou/arisound.snd
747 ARILOU_ICON_MASK_PMAP_ANIM,701,3,sc2code/ships/arilou/igfxres.h,GFXRES,base/ships/arilou/ariicons.ani
748 ARILOU_MICON_MASK_PMAP_ANIM,701,4,sc2code/ships/arilou/igfxres.h,GFXRES,base/ships/arilou/arimicon.ani
749 ARILOU_BIG_MASK_PMAP_ANIM,701,5,sc2code/ships/arilou/igfxres.h,GFXRES,base/ships/arilou/arilou.big
750 ARILOU_MED_MASK_PMAP_ANIM,701,6,sc2code/ships/arilou/igfxres.h,GFXRES,base/ships/arilou/arilou.med
751 ARILOU_SML_MASK_PMAP_ANIM,701,7,sc2code/ships/arilou/igfxres.h,GFXRES,base/ships/arilou/arilou.sml
752 WARP_BIG_MASK_PMAP_ANIM,701,8,sc2code/ships/arilou/igfxres.h,GFXRES,base/ships/arilou/warp.big
753 WARP_MED_MASK_PMAP_ANIM,701,9,sc2code/ships/arilou/igfxres.h,GFXRES,base/ships/arilou/warp.med
754 WARP_SML_MASK_PMAP_ANIM,701,10,sc2code/ships/arilou/igfxres.h,GFXRES,base/ships/arilou/warp.sml
755 ARILOU_CAPTAIN_MASK_PMAP_ANIM,701,11,sc2code/ships/arilou/igfxres.h,GFXRES,base/ships/arilou/aricap.ani
756 SPATHI_CODE,718,0,sc2code/ships/spathi/icode.h,SHIP,15
757 SPATHI_VICTORY_SONG,718,0,sc2code/ships/spathi/imusicre.h,MUSICRES,base/ships/spathi/spaditty.mod
758 SPATHI_RACE_STRINGS,718,1,sc2code/ships/spathi/istrtab.h,STRTAB,base/ships/spathi/spatext.txt
759 SPATHI_SHIP_SOUNDS,718,2,sc2code/ships/spathi/isndres.h,SNDRES,base/ships/spathi/spasound.snd
760 SPATHI_ICON_MASK_PMAP_ANIM,718,3,sc2code/ships/spathi/igfxres.h,GFXRES,base/ships/spathi/spaicons.ani
761 SPATHI_MICON_MASK_PMAP_ANIM,718,4,sc2code/ships/spathi/igfxres.h,GFXRES,base/ships/spathi/spamicon.ani
762 SPATHI_BIG_MASK_PMAP_ANIM,718,5,sc2code/ships/spathi/igfxres.h,GFXRES,base/ships/spathi/spathi.big
763 SPATHI_MED_MASK_PMAP_ANIM,718,6,sc2code/ships/spathi/igfxres.h,GFXRES,base/ships/spathi/spathi.med
764 SPATHI_SML_MASK_PMAP_ANIM,718,7,sc2code/ships/spathi/igfxres.h,GFXRES,base/ships/spathi/spathi.sml
765 MISSILE_BIG_MASK_PMAP_ANIM,718,8,sc2code/ships/spathi/igfxres.h,GFXRES,base/ships/spathi/missile.big
766 MISSILE_MED_MASK_PMAP_ANIM,718,9,sc2code/ships/spathi/igfxres.h,GFXRES,base/ships/spathi/missile.med
767 MISSILE_SML_MASK_PMAP_ANIM,718,10,sc2code/ships/spathi/igfxres.h,GFXRES,base/ships/spathi/missile.sml
768 DISCRIM_BIG_MASK_PMAP_ANIM,718,11,sc2code/ships/spathi/igfxres.h,GFXRES,base/ships/spathi/discrim.big
769 DISCRIM_MED_MASK_PMAP_ANIM,718,12,sc2code/ships/spathi/igfxres.h,GFXRES,base/ships/spathi/discrim.med
770 DISCRIM_SML_MASK_PMAP_ANIM,718,13,sc2code/ships/spathi/igfxres.h,GFXRES,base/ships/spathi/discrim.sml
771 SPATHI_CAPTAIN_MASK_PMAP_ANIM,718,14,sc2code/ships/spathi/igfxres.h,GFXRES,base/ships/spathi/spacap.ani
772 PKUNK_CODE,713,0,sc2code/ships/pkunk/icode.h,SHIP,12
773 PKUNK_VICTORY_SONG,713,0,sc2code/ships/pkunk/imusicre.h,MUSICRES,base/ships/pkunk/pkuditty.mod
774 PKUNK_RACE_STRINGS,713,1,sc2code/ships/pkunk/istrtab.h,STRTAB,base/ships/pkunk/pkutext.txt
775 PKUNK_SHIP_SOUNDS,713,2,sc2code/ships/pkunk/isndres.h,SNDRES,base/ships/pkunk/pkusound.snd
776 PKUNK_ICON_MASK_PMAP_ANIM,713,3,sc2code/ships/pkunk/igfxres.h,GFXRES,base/ships/pkunk/pkuicons.ani
777 PKUNK_MICON_MASK_PMAP_ANIM,713,4,sc2code/ships/pkunk/igfxres.h,GFXRES,base/ships/pkunk/pkumicon.ani
778 PKUNK_BIG_MASK_PMAP_ANIM,713,5,sc2code/ships/pkunk/igfxres.h,GFXRES,base/ships/pkunk/pkunk.big
779 PKUNK_MED_MASK_PMAP_ANIM,713,6,sc2code/ships/pkunk/igfxres.h,GFXRES,base/ships/pkunk/pkunk.med
780 PKUNK_SML_MASK_PMAP_ANIM,713,7,sc2code/ships/pkunk/igfxres.h,GFXRES,base/ships/pkunk/pkunk.sml
781 BUG_BIG_MASK_PMAP_ANIM,713,8,sc2code/ships/pkunk/igfxres.h,GFXRES,base/ships/pkunk/bugbig.ani
782 BUG_MED_MASK_PMAP_ANIM,713,9,sc2code/ships/pkunk/igfxres.h,GFXRES,base/ships/pkunk/bugmed.ani
783 BUG_SML_MASK_PMAP_ANIM,713,10,sc2code/ships/pkunk/igfxres.h,GFXRES,base/ships/pkunk/bugsml.ani
784 PKUNK_CAPTAIN_MASK_PMAP_ANIM,713,11,sc2code/ships/pkunk/igfxres.h,GFXRES,base/ships/pkunk/pkucap.ani
785 HUMAN_CODE,706,0,sc2code/ships/human/icode.h,SHIP,6
786 HUMAN_VICTORY_SONG,706,0,sc2code/ships/human/imusicre.h,MUSICRES,base/ships/human/humditty.mod
787 HUMAN_RACE_STRINGS,706,1,sc2code/ships/human/istrtab.h,STRTAB,base/ships/human/humtext.txt
788 HUMAN_SHIP_SOUNDS,706,2,sc2code/ships/human/isndres.h,SNDRES,base/ships/human/humsound.snd
789 HUMAN_ICON_MASK_PMAP_ANIM,706,3,sc2code/ships/human/igfxres.h,GFXRES,base/ships/human/humicons.ani
790 HUMAN_MICON_MASK_PMAP_ANIM,706,4,sc2code/ships/human/igfxres.h,GFXRES,base/ships/human/hummicon.ani
791 HUMAN_BIG_MASK_PMAP_ANIM,706,5,sc2code/ships/human/igfxres.h,GFXRES,base/ships/human/human.big
792 HUMAN_MED_MASK_PMAP_ANIM,706,6,sc2code/ships/human/igfxres.h,GFXRES,base/ships/human/human.med
793 HUMAN_SML_MASK_PMAP_ANIM,706,7,sc2code/ships/human/igfxres.h,GFXRES,base/ships/human/human.sml
794 SATURN_BIG_MASK_PMAP_ANIM,706,8,sc2code/ships/human/igfxres.h,GFXRES,base/ships/human/saturn.big
795 SATURN_MED_MASK_PMAP_ANIM,706,9,sc2code/ships/human/igfxres.h,GFXRES,base/ships/human/saturn.med
796 SATURN_SML_MASK_PMAP_ANIM,706,10,sc2code/ships/human/igfxres.h,GFXRES,base/ships/human/saturn.sml
797 HUMAN_CAPTAIN_MASK_PMAP_ANIM,706,11,sc2code/ships/human/igfxres.h,GFXRES,base/ships/human/humcap.ani
798 UMGAH_CODE,722,0,sc2code/ships/umgah/icode.h,SHIP,19
799 UMGAH_VICTORY_SONG,722,0,sc2code/ships/umgah/imusicre.h,MUSICRES,base/ships/umgah/umgditty.mod
800 UMGAH_RACE_STRINGS,722,1,sc2code/ships/umgah/istrtab.h,STRTAB,base/ships/umgah/umgtext.txt
801 UMGAH_SHIP_SOUNDS,722,2,sc2code/ships/umgah/isndres.h,SNDRES,base/ships/umgah/umgsound.snd
802 UMGAH_ICON_MASK_PMAP_ANIM,722,3,sc2code/ships/umgah/igfxres.h,GFXRES,base/ships/umgah/umgicons.ani
803 UMGAH_MICON_MASK_PMAP_ANIM,722,4,sc2code/ships/umgah/igfxres.h,GFXRES,base/ships/umgah/umgmicon.ani
804 UMGAH_BIG_MASK_PMAP_ANIM,722,5,sc2code/ships/umgah/igfxres.h,GFXRES,base/ships/umgah/umgah.big
805 UMGAH_MED_MASK_PMAP_ANIM,722,6,sc2code/ships/umgah/igfxres.h,GFXRES,base/ships/umgah/umgah.med
806 UMGAH_SML_MASK_PMAP_ANIM,722,7,sc2code/ships/umgah/igfxres.h,GFXRES,base/ships/umgah/umgah.sml
807 SPRITZ_MASK_PMAP_ANIM,722,8,sc2code/ships/umgah/igfxres.h,GFXRES,base/ships/umgah/spritz.ani
808 CONE_BIG_MASK_ANIM,722,9,sc2code/ships/umgah/igfxres.h,GFXRES,base/ships/umgah/cone.big
809 CONE_MED_MASK_ANIM,722,10,sc2code/ships/umgah/igfxres.h,GFXRES,base/ships/umgah/cone.med
810 CONE_SML_MASK_ANIM,722,11,sc2code/ships/umgah/igfxres.h,GFXRES,base/ships/umgah/cone.sml
811 UMGAH_CAPTAIN_MASK_PMAP_ANIM,722,12,sc2code/ships/umgah/igfxres.h,GFXRES,base/ships/umgah/umgcap.ani
812 CHENJESU_CODE,703,0,sc2code/ships/chenjesu/icode.h,SHIP,3
813 CHENJESU_VICTORY_SONG,703,0,sc2code/ships/chenjesu/imusicre.h,MUSICRES,base/ships/chenjesu/cheditty.mod
814 CHENJESU_RACE_STRINGS,703,1,sc2code/ships/chenjesu/istrtab.h,STRTAB,base/ships/chenjesu/chetext.txt
815 CHENJESU_SHIP_SOUNDS,703,2,sc2code/ships/chenjesu/isndres.h,SNDRES,base/ships/chenjesu/chesound.snd
816 CHENJESU_ICON_MASK_PMAP_ANIM,703,3,sc2code/ships/chenjesu/igfxres.h,GFXRES,base/ships/chenjesu/cheicons.ani
817 CHENJESU_MICON_MASK_PMAP_ANIM,703,4,sc2code/ships/chenjesu/igfxres.h,GFXRES,base/ships/chenjesu/chemicon.ani
818 CHENJESU_BIG_MASK_PMAP_ANIM,703,5,sc2code/ships/chenjesu/igfxres.h,GFXRES,base/ships/chenjesu/chenjesu.big
819 CHENJESU_MED_MASK_PMAP_ANIM,703,6,sc2code/ships/chenjesu/igfxres.h,GFXRES,base/ships/chenjesu/chenjesu.med
820 CHENJESU_SML_MASK_PMAP_ANIM,703,7,sc2code/ships/chenjesu/igfxres.h,GFXRES,base/ships/chenjesu/chenjesu.sml
821 SPARK_BIG_MASK_PMAP_ANIM,703,8,sc2code/ships/chenjesu/igfxres.h,GFXRES,base/ships/chenjesu/spark.big
822 SPARK_MED_MASK_PMAP_ANIM,703,9,sc2code/ships/chenjesu/igfxres.h,GFXRES,base/ships/chenjesu/spark.med
823 SPARK_SML_MASK_PMAP_ANIM,703,10,sc2code/ships/chenjesu/igfxres.h,GFXRES,base/ships/chenjesu/spark.sml
824 DOGGY_BIG_MASK_PMAP_ANIM,703,11,sc2code/ships/chenjesu/igfxres.h,GFXRES,base/ships/chenjesu/doggy.big
825 DOGGY_MED_MASK_PMAP_ANIM,703,12,sc2code/ships/chenjesu/igfxres.h,GFXRES,base/ships/chenjesu/doggy.med
826 DOGGY_SML_MASK_PMAP_ANIM,703,13,sc2code/ships/chenjesu/igfxres.h,GFXRES,base/ships/chenjesu/doggy.sml
827 CHENJESU_CAPTAIN_MASK_PMAP_ANIM,703,14,sc2code/ships/chenjesu/igfxres.h,GFXRES,base/ships/chenjesu/checap.ani
828 SIS_CODE,716,0,sc2code/ships/sis_ship/icode.h,SHIP,26
829 SIS_VICTORY_SONG,716,0,sc2code/ships/sis_ship/imusicre.h,MUSICRES,base/ships/sis_ship/sisditty.mod
830 SIS_SHIP_SOUNDS,716,1,sc2code/ships/sis_ship/isndres.h,SNDRES,base/ships/sis_ship/sissound.snd
831 SIS_ICON_MASK_PMAP_ANIM,716,2,sc2code/ships/sis_ship/igfxres.h,GFXRES,base/ships/sis_ship/sisicons.ani
832 SIS_BIG_MASK_PMAP_ANIM,716,3,sc2code/ships/sis_ship/igfxres.h,GFXRES,base/ships/sis_ship/sis.big
833 SIS_MED_MASK_PMAP_ANIM,716,4,sc2code/ships/sis_ship/igfxres.h,GFXRES,base/ships/sis_ship/sis.med
834 SIS_SML_MASK_PMAP_ANIM,716,5,sc2code/ships/sis_ship/igfxres.h,GFXRES,base/ships/sis_ship/sis.sml
835 BLASTER_BIG_MASK_PMAP_ANIM,716,6,sc2code/ships/sis_ship/igfxres.h,GFXRES,base/ships/sis_ship/blasbig.ani
836 BLASTER_MED_MASK_PMAP_ANIM,716,7,sc2code/ships/sis_ship/igfxres.h,GFXRES,base/ships/sis_ship/blasmed.ani
837 BLASTER_SML_MASK_PMAP_ANIM,716,8,sc2code/ships/sis_ship/igfxres.h,GFXRES,base/ships/sis_ship/blassml.ani
838 SIS_CAPTAIN_MASK_PMAP_ANIM,716,9,sc2code/ships/sis_ship/igfxres.h,GFXRES,base/ships/sis_ship/siscap.ani
839 SIS_HYPER_MASK_PMAP_ANIM,716,10,sc2code/ships/sis_ship/igfxres.h,GFXRES,base/ships/sis_ship/sishyper.ani
840 ILWRATH_CODE,707,0,sc2code/ships/ilwrath/icode.h,SHIP,7
841 ILWRATH_VICTORY_SONG,707,0,sc2code/ships/ilwrath/imusicre.h,MUSICRES,base/ships/ilwrath/ilwditty.mod
842 ILWRATH_RACE_STRINGS,707,1,sc2code/ships/ilwrath/istrtab.h,STRTAB,base/ships/ilwrath/ilwtext.txt
843 ILWRATH_SHIP_SOUNDS,707,2,sc2code/ships/ilwrath/isndres.h,SNDRES,base/ships/ilwrath/ilwsound.snd
844 ILWRATH_ICON_MASK_PMAP_ANIM,707,3,sc2code/ships/ilwrath/igfxres.h,GFXRES,base/ships/ilwrath/ilwicons.ani
845 ILWRATH_MICON_MASK_PMAP_ANIM,707,4,sc2code/ships/ilwrath/igfxres.h,GFXRES,base/ships/ilwrath/ilwmicon.ani
846 ILWRATH_BIG_MASK_PMAP_ANIM,707,5,sc2code/ships/ilwrath/igfxres.h,GFXRES,base/ships/ilwrath/ilwrath.big
847 ILWRATH_MED_MASK_PMAP_ANIM,707,6,sc2code/ships/ilwrath/igfxres.h,GFXRES,base/ships/ilwrath/ilwrath.med
848 ILWRATH_SML_MASK_PMAP_ANIM,707,7,sc2code/ships/ilwrath/igfxres.h,GFXRES,base/ships/ilwrath/ilwrath.sml
849 FIRE_BIG_MASK_PMAP_ANIM,707,8,sc2code/ships/ilwrath/igfxres.h,GFXRES,base/ships/ilwrath/fire.big
850 FIRE_MED_MASK_PMAP_ANIM,707,9,sc2code/ships/ilwrath/igfxres.h,GFXRES,base/ships/ilwrath/fire.med
851 FIRE_SML_MASK_PMAP_ANIM,707,10,sc2code/ships/ilwrath/igfxres.h,GFXRES,base/ships/ilwrath/fire.sml
852 ILWRATH_CAPTAIN_MASK_PMAP_ANIM,707,11,sc2code/ships/ilwrath/igfxres.h,GFXRES,base/ships/ilwrath/ilwcap.ani
853 SYREEN_CODE,720,0,sc2code/ships/syreen/icode.h,SHIP,17
854 SYREEN_VICTORY_SONG,720,0,sc2code/ships/syreen/imusicre.h,MUSICRES,base/ships/syreen/syrditty.mod
855 SYREEN_RACE_STRINGS,720,1,sc2code/ships/syreen/istrtab.h,STRTAB,base/ships/syreen/syrtext.txt
856 SYREEN_SHIP_SOUNDS,720,2,sc2code/ships/syreen/isndres.h,SNDRES,base/ships/syreen/syrsound.snd
857 SYREEN_ICON_MASK_PMAP_ANIM,720,3,sc2code/ships/syreen/igfxres.h,GFXRES,base/ships/syreen/syricons.ani
858 SYREEN_MICON_MASK_PMAP_ANIM,720,4,sc2code/ships/syreen/igfxres.h,GFXRES,base/ships/syreen/syrmicon.ani
859 SYREEN_BIG_MASK_PMAP_ANIM,720,5,sc2code/ships/syreen/igfxres.h,GFXRES,base/ships/syreen/syreen.big
860 SYREEN_MED_MASK_PMAP_ANIM,720,6,sc2code/ships/syreen/igfxres.h,GFXRES,base/ships/syreen/syreen.med
861 SYREEN_SML_MASK_PMAP_ANIM,720,7,sc2code/ships/syreen/igfxres.h,GFXRES,base/ships/syreen/syreen.sml
862 DAGGER_BIG_MASK_PMAP_ANIM,720,8,sc2code/ships/syreen/igfxres.h,GFXRES,base/ships/syreen/dagger.big
863 DAGGER_MED_MASK_PMAP_ANIM,720,9,sc2code/ships/syreen/igfxres.h,GFXRES,base/ships/syreen/dagger.med
864 DAGGER_SML_MASK_PMAP_ANIM,720,10,sc2code/ships/syreen/igfxres.h,GFXRES,base/ships/syreen/dagger.sml
865 SYREEN_CAPTAIN_MASK_PMAP_ANIM,720,11,sc2code/ships/syreen/igfxres.h,GFXRES,base/ships/syreen/syrcap.ani
866 PROBE_CODE,714,0,sc2code/ships/probe/icode.h,SHIP,27
867 PROBE_MICON_MASK_PMAP_ANIM,714,0,sc2code/ships/probe/igfxres.h,GFXRES,base/ships/probe/promicon.ani
868 MMRNMHRM_CODE,710,0,sc2code/ships/mmrnmhrm/icode.h,SHIP,9
869 MMRNMHRM_VICTORY_SONG,710,0,sc2code/ships/mmrnmhrm/imusicre.h,MUSICRES,base/ships/mmrnmhrm/mmrditty.mod
870 MMRNMHRM_RACE_STRINGS,710,1,sc2code/ships/mmrnmhrm/istrtab.h,STRTAB,base/ships/mmrnmhrm/mmrtext.txt
871 MMRNMHRM_SHIP_SOUNDS,710,2,sc2code/ships/mmrnmhrm/isndres.h,SNDRES,base/ships/mmrnmhrm/mmrsound.snd
872 MMRNMHRM_ICON_MASK_PMAP_ANIM,710,3,sc2code/ships/mmrnmhrm/igfxres.h,GFXRES,base/ships/mmrnmhrm/mmricons.ani
873 MMRNMHRM_MICON_MASK_PMAP_ANIM,710,4,sc2code/ships/mmrnmhrm/igfxres.h,GFXRES,base/ships/mmrnmhrm/mmrmicon.ani
874 MMRNMHRM_BIG_MASK_PMAP_ANIM,710,5,sc2code/ships/mmrnmhrm/igfxres.h,GFXRES,base/ships/mmrnmhrm/mmrnmhrm.big
875 MMRNMHRM_MED_MASK_PMAP_ANIM,710,6,sc2code/ships/mmrnmhrm/igfxres.h,GFXRES,base/ships/mmrnmhrm/mmrnmhrm.med
876 MMRNMHRM_SML_MASK_PMAP_ANIM,710,7,sc2code/ships/mmrnmhrm/igfxres.h,GFXRES,base/ships/mmrnmhrm/mmrnmhrm.sml
877 TORP_BIG_MASK_PMAP_ANIM,710,8,sc2code/ships/mmrnmhrm/igfxres.h,GFXRES,base/ships/mmrnmhrm/torp.big
878 TORP_MED_MASK_PMAP_ANIM,710,9,sc2code/ships/mmrnmhrm/igfxres.h,GFXRES,base/ships/mmrnmhrm/torp.med
879 TORP_SML_MASK_PMAP_ANIM,710,10,sc2code/ships/mmrnmhrm/igfxres.h,GFXRES,base/ships/mmrnmhrm/torp.sml
880 YWING_BIG_MASK_PMAP_ANIM,710,11,sc2code/ships/mmrnmhrm/igfxres.h,GFXRES,base/ships/mmrnmhrm/ywing.big
881 YWING_MED_MASK_PMAP_ANIM,710,12,sc2code/ships/mmrnmhrm/igfxres.h,GFXRES,base/ships/mmrnmhrm/ywing.med
882 YWING_SML_MASK_PMAP_ANIM,710,13,sc2code/ships/mmrnmhrm/igfxres.h,GFXRES,base/ships/mmrnmhrm/ywing.sml
883 MMRNMHRM_CAPTAIN_MASK_PMAP_ANIM,710,14,sc2code/ships/mmrnmhrm/igfxres.h,GFXRES,base/ships/mmrnmhrm/mmrcap.ani
884 YEHAT_CODE,726,0,sc2code/ships/yehat/icode.h,SHIP,23
885 YEHAT_VICTORY_SONG,726,0,sc2code/ships/yehat/imusicre.h,MUSICRES,base/ships/yehat/yehditty.mod
886 YEHAT_RACE_STRINGS,726,1,sc2code/ships/yehat/istrtab.h,STRTAB,base/ships/yehat/yehtext.txt
887 YEHAT_SHIP_SOUNDS,726,2,sc2code/ships/yehat/isndres.h,SNDRES,base/ships/yehat/yehsound.snd
888 YEHAT_ICON_MASK_PMAP_ANIM,726,3,sc2code/ships/yehat/igfxres.h,GFXRES,base/ships/yehat/yehicons.ani
889 YEHAT_MICON_MASK_PMAP_ANIM,726,4,sc2code/ships/yehat/igfxres.h,GFXRES,base/ships/yehat/yehmicon.ani
890 YEHAT_BIG_MASK_PMAP_ANIM,726,5,sc2code/ships/yehat/igfxres.h,GFXRES,base/ships/yehat/yehat.big
891 YEHAT_MED_MASK_PMAP_ANIM,726,6,sc2code/ships/yehat/igfxres.h,GFXRES,base/ships/yehat/yehat.med
892 YEHAT_SML_MASK_PMAP_ANIM,726,7,sc2code/ships/yehat/igfxres.h,GFXRES,base/ships/yehat/yehat.sml
893 YEHAT_CANNON_BIG_MASK_PMAP_ANIM,726,8,sc2code/ships/yehat/igfxres.h,GFXRES,base/ships/yehat/missile.big
894 YEHAT_CANNON_MED_MASK_PMAP_ANIM,726,9,sc2code/ships/yehat/igfxres.h,GFXRES,base/ships/yehat/missile.med
895 YEHAT_CANNON_SML_MASK_PMAP_ANIM,726,10,sc2code/ships/yehat/igfxres.h,GFXRES,base/ships/yehat/missile.sml
896 SHIELD_BIG_MASK_ANIM,726,11,sc2code/ships/yehat/igfxres.h,GFXRES,base/ships/yehat/shield.big
897 SHIELD_MED_MASK_ANIM,726,12,sc2code/ships/yehat/igfxres.h,GFXRES,base/ships/yehat/shield.med
898 SHIELD_SML_MASK_ANIM,726,13,sc2code/ships/yehat/igfxres.h,GFXRES,base/ships/yehat/shield.sml
899 YEHAT_CAPTAIN_MASK_PMAP_ANIM,726,14,sc2code/ships/yehat/igfxres.h,GFXRES,base/ships/yehat/yehcap.ani
900 SAMATRA_CODE,708,0,sc2code/ships/lastbat/icode.h,SHIP,25
901 SAMATRA_VICTORY_SONG,708,0,sc2code/ships/lastbat/imusicre.h,--,--
902 SAMATRA_SHIP_SOUNDS,708,1,sc2code/ships/lastbat/isndres.h,SNDRES,base/ships/lastbat/lassound.snd
903 SAMATRA_BIG_MASK_ANIM,708,2,sc2code/ships/lastbat/igfxres.h,GFXRES,base/ships/lastbat/lastbat.big
904 SAMATRA_MED_MASK_PMAP_ANIM,708,3,sc2code/ships/lastbat/igfxres.h,GFXRES,base/ships/lastbat/lastbat.med
905 SAMATRA_SML_MASK_PMAP_ANIM,708,4,sc2code/ships/lastbat/igfxres.h,GFXRES,base/ships/lastbat/lastbat.sml
906 SENTINEL_BIG_MASK_ANIM,708,5,sc2code/ships/lastbat/igfxres.h,GFXRES,base/ships/lastbat/senbig.ani
907 SENTINEL_MED_MASK_PMAP_ANIM,708,6,sc2code/ships/lastbat/igfxres.h,GFXRES,base/ships/lastbat/senmed.ani
908 SENTINEL_SML_MASK_PMAP_ANIM,708,7,sc2code/ships/lastbat/igfxres.h,GFXRES,base/ships/lastbat/sensml.ani
909 GENERATOR_BIG_MASK_ANIM,708,8,sc2code/ships/lastbat/igfxres.h,GFXRES,base/ships/lastbat/genbig.ani
910 GENERATOR_MED_MASK_PMAP_ANIM,708,9,sc2code/ships/lastbat/igfxres.h,GFXRES,base/ships/lastbat/genmed.ani
911 GENERATOR_SML_MASK_PMAP_ANIM,708,10,sc2code/ships/lastbat/igfxres.h,GFXRES,base/ships/lastbat/gensml.ani
912 SAMATRA_CAPTAIN_MASK_PMAP_ANIM,708,11,sc2code/ships/lastbat/igfxres.h,GFXRES,base/ships/lastbat/lascap.ani
913 SUPOX_CODE,719,0,sc2code/ships/supox/icode.h,SHIP,16
914 SUPOX_VICTORY_SONG,719,0,sc2code/ships/supox/imusicre.h,MUSICRES,base/ships/supox/supditty.mod
915 SUPOX_RACE_STRINGS,719,1,sc2code/ships/supox/istrtab.h,STRTAB,base/ships/supox/suptext.txt
916 SUPOX_SHIP_SOUNDS,719,2,sc2code/ships/supox/isndres.h,SNDRES,base/ships/supox/supsound.snd
917 SUPOX_ICON_MASK_PMAP_ANIM,719,3,sc2code/ships/supox/igfxres.h,GFXRES,base/ships/supox/supicons.ani
918 SUPOX_MICON_MASK_PMAP_ANIM,719,4,sc2code/ships/supox/igfxres.h,GFXRES,base/ships/supox/supmicon.ani
919 SUPOX_BIG_MASK_PMAP_ANIM,719,5,sc2code/ships/supox/igfxres.h,GFXRES,base/ships/supox/supox.big
920 SUPOX_MED_MASK_PMAP_ANIM,719,6,sc2code/ships/supox/igfxres.h,GFXRES,base/ships/supox/supox.med
921 SUPOX_SML_MASK_PMAP_ANIM,719,7,sc2code/ships/supox/igfxres.h,GFXRES,base/ships/supox/supox.sml
922 GOB_BIG_MASK_PMAP_ANIM,719,8,sc2code/ships/supox/igfxres.h,GFXRES,base/ships/supox/gobbig.ani
923 GOB_MED_MASK_PMAP_ANIM,719,9,sc2code/ships/supox/igfxres.h,GFXRES,base/ships/supox/gobmed.ani
924 GOB_SML_MASK_PMAP_ANIM,719,10,sc2code/ships/supox/igfxres.h,GFXRES,base/ships/supox/gobsml.ani
925 SUPOX_CAPTAIN_MASK_PMAP_ANIM,719,11,sc2code/ships/supox/igfxres.h,GFXRES,base/ships/supox/supcap.ani
926 THRADDASH_CODE,721,0,sc2code/ships/thradd/icode.h,SHIP,18
927 THRADDASH_VICTORY_SONG,721,0,sc2code/ships/thradd/imusicre.h,MUSICRES,base/ships/thradd/thrditty.mod
928 THRADDASH_RACE_STRINGS,721,1,sc2code/ships/thradd/istrtab.h,STRTAB,base/ships/thradd/thrtext.txt
929 THRADDASH_SHIP_SOUNDS,721,2,sc2code/ships/thradd/isndres.h,SNDRES,base/ships/thradd/thrsound.snd
930 THRADDASH_ICON_MASK_PMAP_ANIM,721,3,sc2code/ships/thradd/igfxres.h,GFXRES,base/ships/thradd/thricons.ani
931 THRADDASH_MICON_MASK_PMAP_ANIM,721,4,sc2code/ships/thradd/igfxres.h,GFXRES,base/ships/thradd/thrmicon.ani
932 THRADDASH_BIG_MASK_PMAP_ANIM,721,5,sc2code/ships/thradd/igfxres.h,GFXRES,base/ships/thradd/thradd.big
933 THRADDASH_MED_MASK_PMAP_ANIM,721,6,sc2code/ships/thradd/igfxres.h,GFXRES,base/ships/thradd/thradd.med
934 THRADDASH_SML_MASK_PMAP_ANIM,721,7,sc2code/ships/thradd/igfxres.h,GFXRES,base/ships/thradd/thradd.sml
935 HORN_BIG_MASK_PMAP_ANIM,721,8,sc2code/ships/thradd/igfxres.h,GFXRES,base/ships/thradd/horbig.ani
936 HORN_MED_MASK_PMAP_ANIM,721,9,sc2code/ships/thradd/igfxres.h,GFXRES,base/ships/thradd/hormed.ani
937 HORN_SML_MASK_PMAP_ANIM,721,10,sc2code/ships/thradd/igfxres.h,GFXRES,base/ships/thradd/horsml.ani
938 NAPALM_BIG_MASK_PMAP_ANIM,721,11,sc2code/ships/thradd/igfxres.h,GFXRES,base/ships/thradd/napbig.ani
939 NAPALM_MED_MASK_PMAP_ANIM,721,12,sc2code/ships/thradd/igfxres.h,GFXRES,base/ships/thradd/napmed.ani
940 NAPALM_SML_MASK_PMAP_ANIM,721,13,sc2code/ships/thradd/igfxres.h,GFXRES,base/ships/thradd/napsml.ani
941 THRADDASH_CAPTAIN_MASK_PMAP_ANIM,721,14,sc2code/ships/thradd/igfxres.h,GFXRES,base/ships/thradd/thrcap.ani
942 ANDROSYNTH_CODE,700,0,sc2code/ships/androsyn/icode.h,SHIP,0
943 ANDROSYNTH_VICTORY_SONG,700,0,sc2code/ships/androsyn/imusicre.h,MUSICRES,base/ships/androsyn/andditty.mod
944 ANDROSYNTH_RACE_STRINGS,700,1,sc2code/ships/androsyn/istrtab.h,STRTAB,base/ships/androsyn/andtext.txt
945 ANDROSYNTH_SHIP_SOUNDS,700,2,sc2code/ships/androsyn/isndres.h,SNDRES,base/ships/androsyn/andsound.snd
946 ANDROSYNTH_ICON_MASK_PMAP_ANIM,700,3,sc2code/ships/androsyn/igfxres.h,GFXRES,base/ships/androsyn/andicons.ani
947 ANDROSYNTH_MICON_MASK_PMAP_ANIM,700,4,sc2code/ships/androsyn/igfxres.h,GFXRES,base/ships/androsyn/andmicon.ani
948 ANDROSYNTH_BIG_MASK_PMAP_ANIM,700,5,sc2code/ships/androsyn/igfxres.h,GFXRES,base/ships/androsyn/androsyn.big
949 ANDROSYNTH_MED_MASK_PMAP_ANIM,700,6,sc2code/ships/androsyn/igfxres.h,GFXRES,base/ships/androsyn/androsyn.med
950 ANDROSYNTH_SML_MASK_PMAP_ANIM,700,7,sc2code/ships/androsyn/igfxres.h,GFXRES,base/ships/androsyn/androsyn.sml
951 BUBBLE_BIG_MASK_PMAP_ANIM,700,8,sc2code/ships/androsyn/igfxres.h,GFXRES,base/ships/androsyn/bubble.big
952 BUBBLE_MED_MASK_PMAP_ANIM,700,9,sc2code/ships/androsyn/igfxres.h,GFXRES,base/ships/androsyn/bubble.med
953 BUBBLE_SML_MASK_PMAP_ANIM,700,10,sc2code/ships/androsyn/igfxres.h,GFXRES,base/ships/androsyn/bubble.sml
954 BLAZER_BIG_MASK_PMAP_ANIM,700,11,sc2code/ships/androsyn/igfxres.h,GFXRES,base/ships/androsyn/blazer.big
955 BLAZER_MED_MASK_PMAP_ANIM,700,12,sc2code/ships/androsyn/igfxres.h,GFXRES,base/ships/androsyn/blazer.med
956 BLAZER_SML_MASK_PMAP_ANIM,700,13,sc2code/ships/androsyn/igfxres.h,GFXRES,base/ships/androsyn/blazer.sml
957 ANDROSYNTH_CAPT_MASK_PMAP_ANIM,700,14,sc2code/ships/androsyn/igfxres.h,GFXRES,base/ships/androsyn/andcap.ani
958 ORZ_CODE,712,0,sc2code/ships/orz/icode.h,SHIP,11
959 ORZ_VICTORY_SONG,712,0,sc2code/ships/orz/imusicre.h,MUSICRES,base/ships/orz/orzditty.mod
960 ORZ_RACE_STRINGS,712,1,sc2code/ships/orz/istrtab.h,STRTAB,base/ships/orz/orztext.txt
961 ORZ_SHIP_SOUNDS,712,2,sc2code/ships/orz/isndres.h,SNDRES,base/ships/orz/orzsound.snd
962 ORZ_ICON_MASK_PMAP_ANIM,712,3,sc2code/ships/orz/igfxres.h,GFXRES,base/ships/orz/orzicons.ani
963 ORZ_MICON_MASK_PMAP_ANIM,712,4,sc2code/ships/orz/igfxres.h,GFXRES,base/ships/orz/orzmicon.ani
964 ORZ_BIG_MASK_PMAP_ANIM,712,5,sc2code/ships/orz/igfxres.h,GFXRES,base/ships/orz/orz.big
965 ORZ_MED_MASK_PMAP_ANIM,712,6,sc2code/ships/orz/igfxres.h,GFXRES,base/ships/orz/orz.med
966 ORZ_SML_MASK_PMAP_ANIM,712,7,sc2code/ships/orz/igfxres.h,GFXRES,base/ships/orz/orz.sml
967 HOWITZER_BIG_MASK_PMAP_ANIM,712,8,sc2code/ships/orz/igfxres.h,GFXRES,base/ships/orz/howbig.ani
968 HOWITZER_MED_MASK_PMAP_ANIM,712,9,sc2code/ships/orz/igfxres.h,GFXRES,base/ships/orz/howmed.ani
969 HOWITZER_SML_MASK_PMAP_ANIM,712,10,sc2code/ships/orz/igfxres.h,GFXRES,base/ships/orz/howsml.ani
970 TURRET_BIG_MASK_PMAP_ANIM,712,11,sc2code/ships/orz/igfxres.h,GFXRES,base/ships/orz/turbig.ani
971 TURRET_MED_MASK_PMAP_ANIM,712,12,sc2code/ships/orz/igfxres.h,GFXRES,base/ships/orz/turmed.ani
972 TURRET_SML_MASK_PMAP_ANIM,712,13,sc2code/ships/orz/igfxres.h,GFXRES,base/ships/orz/tursml.ani
973 ORZ_CAPTAIN_MASK_PMAP_ANIM,712,14,sc2code/ships/orz/igfxres.h,GFXRES,base/ships/orz/orzcap.ani
+971 -971
View File
File diff suppressed because it is too large Load Diff