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:
+133
-3
@@ -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.
|
||||
There are 'packaged' files, which contain the data in the file itself,
|
||||
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
|
||||
|
||||
|
||||
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)
|
||||
GFXRES (2) - graphics 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
|
||||
resource library should be compiled with 'PACKAGING' defined for this.
|
||||
|
||||
|
||||
---
|
||||
|
||||
Initial version of this file 2002-10-23 by Serge van den Boom.
|
||||
|
||||
Updated for the 0.7.0 system by Michael Martin.
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define ARILOU_PMAP_ANIM "comm.arilou.graphics"
|
||||
#define ARILOU_COLOR_MAP "comm.arilou.colortable"
|
||||
#define ARILOU_PMAP_ANIM "comm.arilou.graphics"
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define BLACKURQ_CONVERSATION_PHRASES "comm.kohrah.dialogue"
|
||||
#define BLACKURQ_COLOR_MAP "comm.kohrah.colortable"
|
||||
#define BLACKURQ_CONVERSATION_PHRASES "comm.kohrah.dialogue"
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define CHMMR_CONVERSATION_PHRASES "comm.chmmr.dialogue"
|
||||
#define CHMMR_COLOR_MAP "comm.chmmr.colortable"
|
||||
#define CHMMR_CONVERSATION_PHRASES "comm.chmmr.dialogue"
|
||||
|
||||
@@ -2,6 +2,6 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define COMMANDER_LOWPOW_MUSIC "comm.comlowpw.music"
|
||||
#define COMMANDER_MUSIC "comm.commander.music"
|
||||
#define STARBASE_ALT_MUSIC "comm.starbase.music"
|
||||
#define COMMANDER_LOWPOW_MUSIC "comm.comlowpw.music"
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define DRUUGE_CONVERSATION_PHRASES "comm.druuge.dialogue"
|
||||
#define DRUUGE_COLOR_MAP "comm.druuge.colortable"
|
||||
#define DRUUGE_CONVERSATION_PHRASES "comm.druuge.dialogue"
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define ILWRATH_CONVERSATION_PHRASES "comm.ilwrath.dialogue"
|
||||
#define ILWRATH_COLOR_MAP "comm.ilwrath.colortable"
|
||||
#define ILWRATH_CONVERSATION_PHRASES "comm.ilwrath.dialogue"
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define MELNORME_CONVERSATION_PHRASES "comm.melnorme.dialogue"
|
||||
#define MELNORME_COLOR_MAP "comm.melnorme.colortable"
|
||||
#define MELNORME_CONVERSATION_PHRASES "comm.melnorme.dialogue"
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define MYCON_CONVERSATION_PHRASES "comm.mycon.dialogue"
|
||||
#define MYCON_COLOR_MAP "comm.mycon.colortable"
|
||||
#define MYCON_CONVERSATION_PHRASES "comm.mycon.dialogue"
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define ORZ_CONVERSATION_PHRASES "comm.orz.dialogue"
|
||||
#define ORZ_COLOR_MAP "comm.orz.colortable"
|
||||
#define ORZ_CONVERSATION_PHRASES "comm.orz.dialogue"
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define PKUNK_CONVERSATION_PHRASES "comm.pkunk.dialogue"
|
||||
#define PKUNK_COLOR_MAP "comm.pkunk.colortable"
|
||||
#define PKUNK_CONVERSATION_PHRASES "comm.pkunk.dialogue"
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define SHOFIXTI_CONVERSATION_PHRASES "comm.shofixti.dialogue"
|
||||
#define SHOFIXTI_COLOR_MAP "comm.shofixti.colortable"
|
||||
#define SHOFIXTI_CONVERSATION_PHRASES "comm.shofixti.dialogue"
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define SLYLANDRO_CONVERSATION_PHRASES "comm.slyhome.dialogue"
|
||||
#define SLYLANDRO_COLOR_MAP "comm.slyhome.colortable"
|
||||
#define SLYLANDRO_CONVERSATION_PHRASES "comm.slyhome.dialogue"
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define SLYLAND_CONVERSATION_PHRASES "comm.slylandro.dialogue"
|
||||
#define SLYLAND_COLOR_MAP "comm.slylandro.colortable"
|
||||
#define SLYLAND_CONVERSATION_PHRASES "comm.slylandro.dialogue"
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define SPATHI_PMAP_ANIM "comm.spathi.graphics"
|
||||
#define SPATHI_HOME_PMAP_ANIM "comm.spahome.graphics"
|
||||
#define SPATHI_PMAP_ANIM "comm.spathi.graphics"
|
||||
|
||||
@@ -2,6 +2,6 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define SPATHI_MUSIC "comm.spathi.music"
|
||||
#define SPAHOME_MUSIC "comm.spahome.music"
|
||||
#define FWIFFO_MUSIC "comm.spafwiff.music"
|
||||
#define SPAHOME_MUSIC "comm.spahome.music"
|
||||
#define SPATHI_MUSIC "comm.spathi.music"
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define SPATHI_COLOR_MAP "comm.spathi.colortable"
|
||||
#define SPATHI_CONVERSATION_PHRASES "comm.spathi.dialogue"
|
||||
#define SPATHI_HOME_COLOR_MAP "comm.spahome.colortable"
|
||||
#define SPATHI_HOME_CONVERSATION_PHRASES "comm.spahome.dialogue"
|
||||
#define SPATHI_COLOR_MAP "comm.spathi.colortable"
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define SUPOX_CONVERSATION_PHRASES "comm.supox.dialogue"
|
||||
#define SUPOX_COLOR_MAP "comm.supox.colortable"
|
||||
#define SUPOX_CONVERSATION_PHRASES "comm.supox.dialogue"
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define SYREEN_CONVERSATION_PHRASES "comm.syreen.dialogue"
|
||||
#define SYREEN_COLOR_MAP "comm.syreen.colortable"
|
||||
#define SYREEN_CONVERSATION_PHRASES "comm.syreen.dialogue"
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define TALKING_PET_CONVERSATION_PHRASES "comm.talkingpet.dialogue"
|
||||
#define TALKING_PET_COLOR_MAP "comm.talkingpet.colortable"
|
||||
#define TALKING_PET_CONVERSATION_PHRASES "comm.talkingpet.dialogue"
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define THRADD_CONVERSATION_PHRASES "comm.thraddash.dialogue"
|
||||
#define THRADD_COLOR_MAP "comm.thraddash.colortable"
|
||||
#define THRADD_CONVERSATION_PHRASES "comm.thraddash.dialogue"
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define UMGAH_CONVERSATION_PHRASES "comm.umgah.dialogue"
|
||||
#define UMGAH_COLOR_MAP "comm.umgah.colortable"
|
||||
#define UMGAH_CONVERSATION_PHRASES "comm.umgah.dialogue"
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define URQUAN_CONVERSATION_PHRASES "comm.urquan.dialogue"
|
||||
#define URQUAN_COLOR_MAP "comm.urquan.colortable"
|
||||
#define URQUAN_CONVERSATION_PHRASES "comm.urquan.dialogue"
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define UTWIG_CONVERSATION_PHRASES "comm.utwig.dialogue"
|
||||
#define UTWIG_COLOR_MAP "comm.utwig.colortable"
|
||||
#define UTWIG_CONVERSATION_PHRASES "comm.utwig.dialogue"
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define VUX_CONVERSATION_PHRASES "comm.vux.dialogue"
|
||||
#define VUX_COLOR_MAP "comm.vux.colortable"
|
||||
#define VUX_CONVERSATION_PHRASES "comm.vux.dialogue"
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define YEHAT_MUSIC "comm.yehat.music"
|
||||
#define REBEL_MUSIC "comm.yehat.rebel.music"
|
||||
#define YEHAT_MUSIC "comm.yehat.music"
|
||||
|
||||
@@ -2,6 +2,6 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define YEHAT_CONVERSATION_PHRASES "comm.yehat.dialogue"
|
||||
#define REBEL_CONVERSATION_PHRASES "comm.yehat.rebel.dialogue"
|
||||
#define YEHAT_COLOR_MAP "comm.yehat.colortable"
|
||||
#define YEHAT_CONVERSATION_PHRASES "comm.yehat.dialogue"
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define ZOQFOTPIK_CONVERSATION_PHRASES "comm.zoqfotpik.dialogue"
|
||||
#define ZOQFOTPIK_COLOR_MAP "comm.zoqfotpik.colortable"
|
||||
#define ZOQFOTPIK_CONVERSATION_PHRASES "comm.zoqfotpik.dialogue"
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define STARCON_FONT "font.starcon"
|
||||
#define TINY_FONT "font.tiny"
|
||||
#define MICRO_FONT "font.micro"
|
||||
#define LANDER_FONT "font.lander"
|
||||
#define MICRO_FONT "font.micro"
|
||||
#define PLAYER_FONT "font.player"
|
||||
#define PT13AA_FONT "credits.font.pt13"
|
||||
#define PT17AA_FONT "credits.font.pt17"
|
||||
#define PT45AA_FONT "credits.font.pt45"
|
||||
#define STARCON_FONT "font.starcon"
|
||||
#define TINY_FONT "font.tiny"
|
||||
|
||||
+51
-51
@@ -2,40 +2,35 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define TITLE_ANIM "graphics.title"
|
||||
#define STATUS_MASK_PMAP_ANIM "graphics.status"
|
||||
#define ACTIVITY_ANIM "graphics.activity"
|
||||
#define PLAYMENU_ANIM "graphics.playmenu"
|
||||
#define FLAGSTAT_MASK_PMAP_ANIM "graphics.flagstat"
|
||||
#define MISCDATA_MASK_PMAP_ANIM "graphics.miscdata"
|
||||
#define FONTGRAD_PMAP_ANIM "graphics.fontgrad"
|
||||
#define STAR_MASK_PMAP_ANIM "graphics.stars"
|
||||
#define AMBIENT_MASK_PMAP_ANIM "graphics.ambanim"
|
||||
#define AQUA_MASK_PMAP_ANIM "graphics.aquhelix"
|
||||
#define ARISPACE_MASK_PMAP_ANIM "graphics.arispace"
|
||||
#define ASTEROID_BIG_MASK_PMAP_ANIM "graphics.astbig"
|
||||
#define ASTEROID_MED_MASK_PMAP_ANIM "graphics.astmed"
|
||||
#define ASTEROID_SML_MASK_PMAP_ANIM "graphics.astsml"
|
||||
#define BLAST_BIG_MASK_PMAP_ANIM "graphics.blabig"
|
||||
#define BLAST_MED_MASK_PMAP_ANIM "graphics.blamed"
|
||||
#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_MED_MASK_PMAP_ANIM "graphics.boomed"
|
||||
#define BOOM_SML_MASK_PMAP_ANIM "graphics.boosml"
|
||||
#define AMBIENT_MASK_PMAP_ANIM "graphics.ambanim"
|
||||
#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 BURV_BCS_MASK_PMAP_ANIM "graphics.drutrans"
|
||||
#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 LIFE01_MASK_PMAP_ANIM "graphics.life.1"
|
||||
#define LIFE02_MASK_PMAP_ANIM "graphics.life.2"
|
||||
@@ -62,35 +57,18 @@
|
||||
#define LIFE23_MASK_PMAP_ANIM "graphics.life.23"
|
||||
#define LIFE24_MASK_PMAP_ANIM "graphics.life.24"
|
||||
#define LIFE25_MASK_PMAP_ANIM "graphics.life.25"
|
||||
#define LANDER_FONTEFF_PMAP_ANIM "graphics.landfeff"
|
||||
#define MOONBASE_MASK_PMAP_ANIM "graphics.moonbase"
|
||||
#define LIGHTNING_MASK_ANIM "graphics.lightnin"
|
||||
#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 SEGUE_PMAP_ANIM "graphics.segue"
|
||||
#define SC2_PICK_PMAP_ANIM "graphics.pickship"
|
||||
#define RESTART_PMAP_ANIM "graphics.newgame"
|
||||
#define MELEE_SCREEN_PMAP_ANIM "graphics.melebkgd"
|
||||
#define MENUBKG_PMAP_ANIM "graphics.setupmenu"
|
||||
#define MISCDATA_MASK_PMAP_ANIM "graphics.miscdata"
|
||||
#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 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_MED_MASK_PMAP_ANIM "planet.oolite.medium"
|
||||
#define PLANET00_SML_MASK_PMAP_ANIM "planet.oolite.small"
|
||||
@@ -268,7 +246,29 @@
|
||||
#define PLANET58_BIG_MASK_PMAP_ANIM "planet.yellowgas.large"
|
||||
#define PLANET58_MED_MASK_PMAP_ANIM "planet.yellowgas.medium"
|
||||
#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 ORBENTER_PMAP_ANIM "graphics.orbenter"
|
||||
#define MENUBKG_PMAP_ANIM "graphics.setupmenu"
|
||||
#define SPAPLUTO_MASK_PMAP_ANIM "graphics.spapluto"
|
||||
#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"
|
||||
|
||||
@@ -2,19 +2,19 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define BATTLE_MUSIC "music.battle"
|
||||
#define CREDITS_MUSIC "music.credits"
|
||||
#define HYPERSPACE_MUSIC "music.hyper"
|
||||
#define QUASISPACE_MUSIC "music.arispace"
|
||||
#define IP_MUSIC "music.space"
|
||||
#define MAINMENU_MUSIC "music.mainmenu"
|
||||
#define MELEE_MUSIC "music.meleemenu"
|
||||
#define ORBIT1_MUSIC "music.orbit1"
|
||||
#define ORBIT2_MUSIC "music.orbit2"
|
||||
#define ORBIT3_MUSIC "music.orbit3"
|
||||
#define ORBIT4_MUSIC "music.orbit4"
|
||||
#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 QUASISPACE_MUSIC "music.arispace"
|
||||
#define REDALERT_MUSIC "music.redalert"
|
||||
#define SHIPYARD_MUSIC "music.shipyard"
|
||||
#define STARBASE_MUSIC "music.starbase"
|
||||
#define BATTLE_MUSIC "music.battle"
|
||||
#define CREDITS_MUSIC "music.credits"
|
||||
|
||||
@@ -2,6 +2,6 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define MENU_SOUNDS "sounds.menu"
|
||||
#define GAME_SOUNDS "sounds.game"
|
||||
#define LANDER_SOUNDS "sounds.landsnds"
|
||||
#define MENU_SOUNDS "sounds.menu"
|
||||
|
||||
+125
-125
@@ -2,152 +2,152 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
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_XLAT_TAB "planet.acid.translatetable"
|
||||
#define ALKALI_COLOR_TAB "planet.alkali.colortable"
|
||||
#define ALKALI_XLAT_TAB "planet.alkali.translatetable"
|
||||
#define HALIDE_COLOR_TAB "planet.halide.colortable"
|
||||
#define HALIDE_XLAT_TAB "planet.halide.translatetable"
|
||||
#define GREEN_COLOR_TAB "planet.green.colortable"
|
||||
#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 ANDROSYNTH_RUINS_STRTAB "text.andruins"
|
||||
#define AQUA_STRTAB "text.aquhelix"
|
||||
#define ARISPACE_COLOR_TAB "colortable.arispace"
|
||||
#define AURIC_COLOR_TAB "planet.auric.colortable"
|
||||
#define AURIC_XLAT_TAB "planet.auric.translatetable"
|
||||
#define FLUORESCENT_COLOR_TAB "planet.fluorescent.colortable"
|
||||
#define FLUORESCENT_XLAT_TAB "planet.fluorescent.translatetable"
|
||||
#define ULTRAVIOLET_COLOR_TAB "planet.ultraviolet.colortable"
|
||||
#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 AZURE_COLOR_TAB "planet.azure.colortable"
|
||||
#define AZURE_XLAT_TAB "planet.azure.translatetable"
|
||||
#define BEAST_STRTAB "text.vuxbeast"
|
||||
#define BLU_GAS_COLOR_TAB "planet.bluegas.colortable"
|
||||
#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_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_XLAT_TAB "planet.greengas.translatetable"
|
||||
#define GRY_GAS_COLOR_TAB "planet.greygas.colortable"
|
||||
#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_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_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_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_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_XLAT_TAB "planet.yellowgas.translatetable"
|
||||
#define MOONBASE_STRTAB "text.moonbase"
|
||||
#define MAIDENS_STRTAB "text.maidens"
|
||||
#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"
|
||||
#define YTTRIC_COLOR_TAB "planet.yttric.colortable"
|
||||
#define YTTRIC_XLAT_TAB "planet.yttric.translatetable"
|
||||
|
||||
@@ -2,15 +2,15 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
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_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_MICON_MASK_PMAP_ANIM "ship.androsynth.meleeicons"
|
||||
#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_MED_MASK_PMAP_ANIM "ship.androsynth.graphics.blazer.medium"
|
||||
#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"
|
||||
|
||||
@@ -2,12 +2,12 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
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_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_MICON_MASK_PMAP_ANIM "ship.arilou.meleeicons"
|
||||
#define ARILOU_SML_MASK_PMAP_ANIM "ship.arilou.graphics.arilou.small"
|
||||
#define WARP_BIG_MASK_PMAP_ANIM "ship.arilou.graphics.warp.large"
|
||||
#define WARP_MED_MASK_PMAP_ANIM "ship.arilou.graphics.warp.medium"
|
||||
#define WARP_SML_MASK_PMAP_ANIM "ship.arilou.graphics.warp.small"
|
||||
#define ARILOU_CAPTAIN_MASK_PMAP_ANIM "ship.arilou.graphics.captain"
|
||||
|
||||
@@ -2,15 +2,15 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
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_MED_MASK_PMAP_ANIM "ship.kohrah.graphics.buz.medium"
|
||||
#define BUZZSAW_SML_MASK_PMAP_ANIM "ship.kohrah.graphics.buz.small"
|
||||
#define GAS_BIG_MASK_PMAP_ANIM "ship.kohrah.graphics.gas.large"
|
||||
#define GAS_MED_MASK_PMAP_ANIM "ship.kohrah.graphics.gas.medium"
|
||||
#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_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"
|
||||
|
||||
@@ -2,15 +2,15 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
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_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_MICON_MASK_PMAP_ANIM "ship.chenjesu.meleeicons"
|
||||
#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_MED_MASK_PMAP_ANIM "ship.chenjesu.graphics.doggy.medium"
|
||||
#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"
|
||||
|
||||
@@ -2,10 +2,11 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
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_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_MICON_MASK_PMAP_ANIM "ship.chmmr.meleeicons"
|
||||
#define CHMMR_SML_MASK_PMAP_ANIM "ship.chmmr.graphics.chmmr.small"
|
||||
#define MUZZLE_BIG_MASK_PMAP_ANIM "ship.chmmr.graphics.muz.large"
|
||||
#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_MED_MASK_PMAP_ANIM "ship.chmmr.graphics.sat.medium"
|
||||
#define SATELLITE_SML_MASK_PMAP_ANIM "ship.chmmr.graphics.sat.small"
|
||||
#define CHMMR_CAPTAIN_MASK_PMAP_ANIM "ship.chmmr.graphics.captain"
|
||||
|
||||
@@ -2,12 +2,12 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
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_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_MED_MASK_PMAP_ANIM "ship.druuge.graphics.can.medium"
|
||||
#define DRUUGE_CANNON_SML_MASK_PMAP_ANIM "ship.druuge.graphics.can.small"
|
||||
#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"
|
||||
|
||||
@@ -2,12 +2,12 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
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_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_MICON_MASK_PMAP_ANIM "ship.earthling.meleeicons"
|
||||
#define HUMAN_SML_MASK_PMAP_ANIM "ship.earthling.graphics.human.small"
|
||||
#define SATURN_BIG_MASK_PMAP_ANIM "ship.earthling.graphics.saturn.large"
|
||||
#define SATURN_MED_MASK_PMAP_ANIM "ship.earthling.graphics.saturn.medium"
|
||||
#define SATURN_SML_MASK_PMAP_ANIM "ship.earthling.graphics.saturn.small"
|
||||
#define HUMAN_CAPTAIN_MASK_PMAP_ANIM "ship.earthling.graphics.captain"
|
||||
|
||||
@@ -2,12 +2,12 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
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_MED_MASK_PMAP_ANIM "ship.ilwrath.graphics.fire.medium"
|
||||
#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_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"
|
||||
|
||||
@@ -2,13 +2,13 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
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_CAPTAIN_MASK_PMAP_ANIM "ship.lastbat.graphics.captain"
|
||||
#define SAMATRA_MED_MASK_PMAP_ANIM "ship.lastbat.graphics.lastbat.medium"
|
||||
#define SAMATRA_SML_MASK_PMAP_ANIM "ship.lastbat.graphics.lastbat.small"
|
||||
#define SENTINEL_BIG_MASK_ANIM "ship.lastbat.graphics.sen.large"
|
||||
#define SENTINEL_MED_MASK_PMAP_ANIM "ship.lastbat.graphics.sen.medium"
|
||||
#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"
|
||||
|
||||
@@ -2,15 +2,15 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
instead and regenerate. */
|
||||
|
||||
#define MELNORME_ICON_MASK_PMAP_ANIM "ship.melnorme.icons"
|
||||
#define MELNORME_MICON_MASK_PMAP_ANIM "ship.melnorme.meleeicons"
|
||||
#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_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_MICON_MASK_PMAP_ANIM "ship.melnorme.meleeicons"
|
||||
#define MELNORME_SML_MASK_PMAP_ANIM "ship.melnorme.graphics.melnorme.small"
|
||||
#define PUMPUP_BIG_MASK_PMAP_ANIM "ship.melnorme.graphics.pump.large"
|
||||
#define PUMPUP_MED_MASK_PMAP_ANIM "ship.melnorme.graphics.pump.medium"
|
||||
#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"
|
||||
|
||||
@@ -2,10 +2,11 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
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_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_MICON_MASK_PMAP_ANIM "ship.mmrnmhrm.meleeicons"
|
||||
#define MMRNMHRM_SML_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.mmrnmhrm.small"
|
||||
#define TORP_BIG_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.torp.large"
|
||||
#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_MED_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.ywing.medium"
|
||||
#define YWING_SML_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.ywing.small"
|
||||
#define MMRNMHRM_CAPTAIN_MASK_PMAP_ANIM "ship.mmrnmhrm.graphics.captain"
|
||||
|
||||
@@ -2,12 +2,12 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
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_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_MICON_MASK_PMAP_ANIM "ship.mycon.meleeicons"
|
||||
#define MYCON_SML_MASK_PMAP_ANIM "ship.mycon.graphics.mycon.small"
|
||||
#define PLASMA_BIG_MASK_PMAP_ANIM "ship.mycon.graphics.plasma.large"
|
||||
#define PLASMA_MED_MASK_PMAP_ANIM "ship.mycon.graphics.plasma.medium"
|
||||
#define PLASMA_SML_MASK_PMAP_ANIM "ship.mycon.graphics.plasma.small"
|
||||
#define MYCON_CAPTAIN_MASK_PMAP_ANIM "ship.mycon.graphics.captain"
|
||||
|
||||
@@ -2,15 +2,15 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
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_MED_MASK_PMAP_ANIM "ship.orz.graphics.how.medium"
|
||||
#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_MED_MASK_PMAP_ANIM "ship.orz.graphics.tur.medium"
|
||||
#define TURRET_SML_MASK_PMAP_ANIM "ship.orz.graphics.tur.small"
|
||||
#define ORZ_CAPTAIN_MASK_PMAP_ANIM "ship.orz.graphics.captain"
|
||||
|
||||
@@ -2,12 +2,12 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
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_MED_MASK_PMAP_ANIM "ship.pkunk.graphics.bug.medium"
|
||||
#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_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"
|
||||
|
||||
@@ -2,19 +2,19 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
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_MED_MASK_PMAP_ANIM "ship.shofixti.graphics.missile.medium"
|
||||
#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"
|
||||
|
||||
@@ -2,12 +2,12 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
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_MED_MASK_PMAP_ANIM "ship.sis_ship.graphics.blas.medium"
|
||||
#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_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"
|
||||
|
||||
@@ -2,9 +2,9 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
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_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_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"
|
||||
|
||||
@@ -2,15 +2,15 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
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_MED_MASK_PMAP_ANIM "ship.spathi.graphics.discrim.medium"
|
||||
#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_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"
|
||||
|
||||
@@ -2,12 +2,12 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
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_MED_MASK_PMAP_ANIM "ship.supox.graphics.gob.medium"
|
||||
#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_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"
|
||||
|
||||
@@ -2,12 +2,12 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
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_MED_MASK_PMAP_ANIM "ship.syreen.graphics.dagger.medium"
|
||||
#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_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"
|
||||
|
||||
@@ -2,15 +2,15 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
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_MED_MASK_PMAP_ANIM "ship.thraddash.graphics.hor.medium"
|
||||
#define HORN_SML_MASK_PMAP_ANIM "ship.thraddash.graphics.hor.small"
|
||||
#define NAPALM_BIG_MASK_PMAP_ANIM "ship.thraddash.graphics.nap.large"
|
||||
#define NAPALM_MED_MASK_PMAP_ANIM "ship.thraddash.graphics.nap.medium"
|
||||
#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_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"
|
||||
|
||||
@@ -2,13 +2,13 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
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_MED_MASK_ANIM "ship.umgah.graphics.cone.medium"
|
||||
#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_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"
|
||||
|
||||
@@ -2,15 +2,15 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
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_MED_MASK_PMAP_ANIM "ship.urquan.graphics.fight.medium"
|
||||
#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_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"
|
||||
|
||||
@@ -2,12 +2,12 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
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_MED_MASK_PMAP_ANIM "ship.utwig.graphics.lan.medium"
|
||||
#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_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"
|
||||
|
||||
@@ -2,13 +2,13 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
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_MED_MASK_PMAP_ANIM "ship.vux.graphics.limpets.medium"
|
||||
#define LIMPETS_SML_MASK_PMAP_ANIM "ship.vux.graphics.limpets.small"
|
||||
#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_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"
|
||||
|
||||
@@ -2,15 +2,15 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
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_MED_MASK_ANIM "ship.yehat.graphics.shield.medium"
|
||||
#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_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"
|
||||
|
||||
@@ -2,15 +2,15 @@
|
||||
should not be edited directly. Modify the master resource list
|
||||
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_MED_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.spit.medium"
|
||||
#define SPIT_SML_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.spit.small"
|
||||
#define STINGER_BIG_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.sti.large"
|
||||
#define STINGER_MED_MASK_PMAP_ANIM "ship.zoqfotpik.graphics.sti.medium"
|
||||
#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_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"
|
||||
|
||||
@@ -9,29 +9,16 @@ contentdir = os.path.join (basedir, "content")
|
||||
srcdir = os.path.join (basedir, "src")
|
||||
|
||||
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.hfile = hfile
|
||||
self.ls2file = ls2file
|
||||
self.constant = constant
|
||||
self.package = int(pkg)
|
||||
self.instance = int(inst)
|
||||
self.int_type = int(typ)
|
||||
self.res_id = res_id
|
||||
self.res_type = res_type
|
||||
self.res_file = res_file
|
||||
def res_number(self):
|
||||
return res_encode (self.package, self.instance, self.int_type)
|
||||
def csv_line(self):
|
||||
return "%s,%s,%s,%d,%d,%d,%s,%s,%s" % (self.hfile, self.ls2file, self.constant,
|
||||
self.package, self.instance, self.int_type,
|
||||
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)
|
||||
return "%s,%s,%s,%s,%s" % (self.constant,self.res_id, self.hfile,
|
||||
self.res_type, self.res_file)
|
||||
|
||||
def read_csv (fname="resources.csv"):
|
||||
result = []
|
||||
@@ -45,11 +32,8 @@ def read_csv (fname="resources.csv"):
|
||||
line = line.strip()
|
||||
if len(line) > 0:
|
||||
data = [x.strip() for x in line.split (',')]
|
||||
if len(data) == 9:
|
||||
try:
|
||||
result.append(ResEntry(linenum, *data))
|
||||
except ValueError:
|
||||
print>>sys.stderr, "Warning: Noninteger P/I/T in line %d" % linenum
|
||||
if len(data) == 5:
|
||||
result.append(ResEntry(linenum, *data))
|
||||
else:
|
||||
print>>sys.strderr, "Warning: Incorrect number of fields in line %d" % linenum
|
||||
return result
|
||||
@@ -62,23 +46,6 @@ def get_headers(l):
|
||||
names.sort()
|
||||
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):
|
||||
result = []
|
||||
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))
|
||||
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",
|
||||
" 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, 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())
|
||||
in_index.sort(lambda x,y: cmp(x.constant, y.constant))
|
||||
for entry in in_index:
|
||||
result.append("#define %s \"%s\"" % (entry.constant, entry.res_id))
|
||||
return result
|
||||
@@ -123,25 +79,14 @@ def dump_values(data):
|
||||
print>>outfile, l
|
||||
outfile.close()
|
||||
|
||||
def collate_integer_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):
|
||||
def collate_data(data):
|
||||
result = {}
|
||||
headers = get_headers(data)
|
||||
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)
|
||||
return result
|
||||
|
||||
if __name__=="__main__":
|
||||
data = collate_string_data(read_csv())
|
||||
data = collate_data(read_csv())
|
||||
dump_values(data)
|
||||
|
||||
@@ -8,24 +8,31 @@ basedir = os.path.join(os.path.pardir, os.path.pardir, "sc2")
|
||||
contentdir = os.path.join (basedir, "content")
|
||||
srcdir = os.path.join (basedir, "src")
|
||||
|
||||
res_types=['--',
|
||||
'GFXRES',
|
||||
'FONTRES',
|
||||
'MUSICRES',
|
||||
'SNDRES',
|
||||
'STRTAB',
|
||||
'BINTAB',
|
||||
'CONVERSATION',
|
||||
'SHIP']
|
||||
|
||||
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.hfile = hfile
|
||||
self.ls2file = ls2file
|
||||
self.constant = constant
|
||||
self.package = int(pkg)
|
||||
self.instance = int(inst)
|
||||
self.int_type = int(typ)
|
||||
self.res_id = res_id
|
||||
self.int_type = res_types.index(res_type)
|
||||
self.res_type = res_type
|
||||
self.res_file = res_file
|
||||
def res_number(self):
|
||||
return res_encode (self.package, self.instance, self.int_type)
|
||||
def csv_line(self):
|
||||
return "%s,%s,%s,%d,%d,%d,%s,%s,%s" % (self.hfile, self.ls2file, self.constant,
|
||||
self.package, self.instance, self.int_type,
|
||||
self.res_id, self.res_type, self.res_file)
|
||||
return "%s,%d,%d,%s,%s,%s" % (self.constant,self.package, self.instance,
|
||||
self.hfile, self.res_type, self.res_file)
|
||||
|
||||
def res_encode(pkg, instance, t):
|
||||
return ((pkg & 0x7ff) << 21) | ((instance & 0x1FFF) << 8) | (t & 0xFF)
|
||||
@@ -45,11 +52,11 @@ def read_csv (fname="resources.csv"):
|
||||
line = line.strip()
|
||||
if len(line) > 0:
|
||||
data = [x.strip() for x in line.split (',')]
|
||||
if len(data) == 9:
|
||||
if len(data) == 6:
|
||||
try:
|
||||
result.append(ResEntry(linenum, *data))
|
||||
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:
|
||||
print>>sys.strderr, "Warning: Incorrect number of fields in line %d" % linenum
|
||||
return result
|
||||
@@ -62,36 +69,15 @@ def get_headers(l):
|
||||
names.sort()
|
||||
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):
|
||||
def lst_text(vals):
|
||||
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())
|
||||
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
|
||||
|
||||
def rmp_text(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):
|
||||
def header_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. */",
|
||||
@@ -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)))
|
||||
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):
|
||||
keys = data.keys()
|
||||
keys.sort()
|
||||
@@ -123,25 +98,16 @@ def dump_values(data):
|
||||
print>>outfile, l
|
||||
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)
|
||||
result[os.path.join(contentdir, 'uqm.lst')] = lst_text(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)
|
||||
result[os.path.join(srcdir, *(header.split('/')))] = header_text(header, data)
|
||||
return result
|
||||
|
||||
def collate_string_data(data):
|
||||
result = {}
|
||||
headers = get_headers(data)
|
||||
for header in headers:
|
||||
result[os.path.join(srcdir, *(header.split('/')))] = h_string_text(header, data)
|
||||
result[os.path.join(contentdir, 'uqm.rmp')] = rmp_text(data)
|
||||
return result
|
||||
|
||||
if __name__=="__main__":
|
||||
data = collate_string_data(read_csv())
|
||||
dump_values(data)
|
||||
# The actual C infrastructure isn't here for this anymore, so we don't actually call dump_values.
|
||||
if __name__=='__main__':
|
||||
data = collate_data(read_csv('int_res.csv'))
|
||||
for x in data[os.path.join(contentdir, 'uqm.lst')]:
|
||||
print x
|
||||
|
||||
@@ -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
|
||||
|
+971
-971
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user