Merge remote branch 'origin/master' into newnet

Conflicts:
	.gitignore
	configure.ac
	data/base/images/intfac.img
	data/base/images/intfac5.png
	lib/netplay/makefile.win32
	lib/netplay/netlog.c
	lib/netplay/netplay.c
	lib/netplay/netplay.h
	lib/netplay/netplay.vcproj
	macosx/Warzone.xcodeproj/project.pbxproj
	macosx/configs/Warzone-All.xcconfig
	po/POTFILES.in
	src/hci.c
	src/intfac.h
	src/keybind.c
	src/multibot.c
	src/multiint.c
	src/multijoin.c
	src/multiplay.c
	src/multistruct.c
	src/multisync.c
	src/scriptai.c
master
Cyp 2010-06-15 08:35:52 +02:00
commit d7db005f71
427 changed files with 84895 additions and 153648 deletions

8
.gitignore vendored
View File

@ -140,6 +140,14 @@ cscope.out
# Qt
lib/framework/wzapp_moc.cpp
tools/qwzm/config
tools/qwzm/moc_qwzm.cpp
tools/qwzm/moc_wzmglwidget.cpp
tools/qwzm/qwzm
tools/qwzm/ui_animationview.h
tools/qwzm/ui_connectorview.h
tools/qwzm/ui_qwzm.h
# Patches
*.patch
*.diff

View File

@ -11,7 +11,7 @@ Elio Gubser <elio, ohyeh> : 2D Graphics
Steven Koenig <kreuvf> : Documentation, translation
Gerard Krol <gerard_> : Programming, Textures
Guangcong Luo <Zarel> : Programming, Balancing, and Documentation
Per I. Mathisen <per> : Programming
Per I. Mathisen <per / sendai> : Programming
Kim Metcalfe <lav-coyote25> : Documentation, Maps and Support
Christian Ohm <cybersphinx> : Programming
Tim P. <kamaze> : Webmaster

View File

@ -1,14 +1,14 @@
0000-00-00: SVN
* General:
* Fix: Tells user if mod entered on the command line / shorcut is enabled, or is invalid. Output is to stdout or stderr. (r7586)
* Fix: Launching the game from installer now works (7568 ticket:364)
* Fix: Angel missile no longer obsoletes long-range artillery, Ripple Rockets no longer autoupgrades to Archie, and Mortar Fast Loader requires Mortar Rapid Loader Mk3 (r7559, ticket:533, 292, 398)
* Fix: Tells user if mod entered on the command line / shorcut is enabled, or is invalid. Output is to stdout or stderr (r7586)
* Fix: Launching the game from installer now works (r7568, ticket:364)
* Fix: Angel missile no longer obsoletes long-range artillery, Ripple Rockets no longer autoupgrades to Archie, and Mortar Fast Loader requires Mortar Rapid Loader Mk3 (r7559, ticket:533, ticket:292, ticket:398)
* New: Add a new translation: zh_TW.po by chtsau (r7561, ticket:239)
* Change: Allow up to 36 savegame 'slots' (r7535)
* Change: add 'mod/music' directory to be use for custom music. (r7557)
* Fix: set the volume of the FMV based on the user's preferences (r7489, ticket:526)
* Fix: Check if the unit has weapons, before trying to see what weapons they have. (r7488, ticket:523)
* Change: remove 'autoload' handling. (r7474)
* Fix: Check if the unit has weapons, before trying to see what weapons they have (r7488, ticket:523)
* Change: remove 'autoload' handling (r7474)
* Fix: Fix windows crash dump output (r7473)
* Fix: Fix handling of limbo & expand missions (r7454)
* Change: Let players save games with Num-Enter as well as Return - should make it easier on international keyboards (r7412)
@ -18,16 +18,16 @@
* New: Slovenian translation sl.po file by ThomasCarstein (r7422, ticket:392)
* Fix: pt_BR.po update by Tucalipe (r7421m ticket:350)
* Fix: Clear out old effects (prevents burning lasting between missions) (r7416)
* Fix: Don't allow the transporter to be controlled in SP games. (r7414)
* Fix: Don't allow the transporter to be controlled in SP games (r7414)
* Fix: Remember player number and tech level for map selection screen (r7400)
* Gameplay:
* Fix: Make AI ignore hostile structures for path-finding when armed. (r7579)
* Fix: Make AI ignore hostile structures for path-finding when armed (r7579)
* Graphics:
* Fix: Fix issue with radar / mini-map. (r7458, ticket:333)
* Fix: Fix issue with radar / mini-map drawing objects outside its scope. (r7441)
* Change: Better map previews (patch by Florian Schanda, color scheme by Zarel). (r7434)
* Fix: Fix issue with radar / mini-map (r7458, ticket:333)
* Fix: Fix issue with radar / mini-map drawing objects outside its scope (r7441)
* Change: Better map previews (patch by Florian Schanda, color scheme by Zarel) (r7434)
* Network:
* Change: Increase timeout delay to 2500ms for dial-up modem users. (r7556, ticket:543)
* Change: Increase timeout delay to 2500ms for dial-up modem users (r7556, ticket:543)
2009-05-10: Version 2.2_rc1
* General:

View File

@ -0,0 +1,6 @@
#!/bin/sh
sed -e 's/r\([0-9]\+\)/[rev]\1[\/rev]/g' \
-e 's/ticket:\([0-9]\+\)/[ticket]\1[\/ticket]/g'\
-e 's/\ \ \*/\ */g' \
-e 's/^\ \*\ \(.*\):/\n[\/list][b]\1[\/b][list]/g' \
-e 's/^\ \ \*/\ [*]/'

View File

@ -37,6 +37,11 @@ AX_PROG_PERL_VERSION([5.10], [], [ PERL="" ])
AC_SUBST([PERL])
AM_CONDITIONAL([PERL_AVAILABLE], test -n "$PERL")
AC_CHECK_PROG(ZIP, zip, zip)
test -z "${ZIP}" && AC_MSG_ERROR(Zip not found!)
AC_CHECK_PROG(UNZIP, unzip, unzip)
test -z "${UNZIP}" && AC_MSG_ERROR(Unzip not found!)
# Enable Compiler/LibC GNU extensions
AC_GNU_SOURCE
@ -52,7 +57,7 @@ AC_CHECK_HEADERS(alloca.h)
# Check for gettext
AM_GNU_GETTEXT([external])
AC_PROG_VERSION_CHECK([msgfmt xgettext], [0.15])
AM_GNU_GETTEXT_VERSION([0.15])
# Check for pkg-config
PKG_PROG_PKG_CONFIG
@ -72,7 +77,7 @@ case ${host_os} in
*mingw32*)
host_os_mingw32=yes
AC_CHECK_TOOL([WINDRES], [windres], AC_MSG_ERROR([windres not found]))
WIN32_LIBS='-ldbghelp -lshfolder -lwinmm -lws2_32'
WIN32_LIBS='-ldbghelp -lshfolder -lshlwapi -lpsapi -lshell32 -lwinmm -lws2_32'
AC_SUBST([WIN32_LIBS], [${WIN32_LIBS}])
;;
*openbsd*)
@ -195,11 +200,18 @@ AS_IF([test "x$enable_sound" != "xyes"],[
# -Wno-unused-label is necessary because flex produces unused labels that we cannot fix
# Add later for stricter checking: -Wextra -Wmissing-declarations -Wstrict-prototypes
AC_ARG_ENABLE([debug],
AS_HELP_STRING([--enable-debug[=yes/relaxed/profile/debugprofile/no]],[Compile debug version [yes]]),
AS_HELP_STRING([--enable-debug[=yes/relaxed/profile/debugprofile/no]],[Compile debug version [[yes]]]),
[ enable_debug=${enableval} ], [ enable_debug=yes ])
AC_MSG_CHECKING([whether to compile in debug mode])
AC_MSG_RESULT([${enable_debug}])
# gcc 4.5 added some warnings to -Wall that weren't even valid in previous
# versions. The -Werror is necessary since otherwise gcc prints a warning that
# the option is only valid for c++/objc++, but the test succeeds. The order is
# also important, it doesn't work if -Werror comes last.
AX_C_CHECK_FLAG([-Werror -Wno-switch], , , CFLAGS_IGNORE_WARNINGS="${CFLAGS_IGNORE_WARNINGS} -Wno-switch")
AX_C_CHECK_FLAG([-Werror -Wno-enum-compare], , , CFLAGS_IGNORE_WARNINGS="${CFLAGS_IGNORE_WARNINGS} -Wno-enum-compare")
if test "x$enable_debug" = "xyes" ; then
if test "x$cc_icc" = "xyes" ; then
WZ_CFLAGS="${WZ_CFLAGS} -O0 -g -fp-model precise -fp-model source -ftz -no-fma -Wcheck -Werror"
@ -208,7 +220,7 @@ if test "x$enable_debug" = "xyes" ; then
else
# -mno-fused-madd = Do not generate fused multiply-add instructions, which round differently than separate multiply and add instructions.
WZ_WARNINGS="-Wall -Werror -Wno-unused-label -Wmissing-field-initializers -Wcast-align -Wwrite-strings -Wmissing-declarations -Wpointer-arith -Wno-format-security"
WZ_CFLAGS="${WZ_CFLAGS} -O0 -g -mno-fused-madd -Wno-pointer-to-int-cast -Wstrict-prototypes -Wdeclaration-after-statement ${WZ_WARNINGS}"
WZ_CFLAGS="${WZ_CFLAGS} -O0 -g -mno-fused-madd -Wno-pointer-to-int-cast -Wstrict-prototypes -Wdeclaration-after-statement ${WZ_WARNINGS} ${CFLAGS_IGNORE_WARNINGS}"
WZ_CXXFLAGS="${WZ_CXXFLAGS} -O0 -g -mno-fused-madd -Wextra ${WZ_WARNINGS}"
WZ_C99FLAGS="${WZ_C99FLAGS} -Wno-declaration-after-statement"
WZ_CPPFLAGS="${WZ_CPPFLAGS} -DDEBUG"
@ -309,13 +321,26 @@ if test "x$enable_static" = "xyes" ; then
PKG_CHECK_MODULES([FREETYPE], [freetype2])
fi
if test "x$host_os_mingw32" = "xno" ; then
system_glee=false
if test "x$host_os_mingw32" != "xyes" ; then
PKG_CHECK_MODULES([GLee], [glee >= 5.4.0], [system_glee=true], [system_glee=false])
else
system_glee=false
if test "x$system_glee" = "xfalse" ; then
AX_EXT_HAVE_HEADER([GLee.h], [/usr/local/include/GL /usr/include/GL])
save_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${GLEE_H_CPPFLAGS}"
AC_CHECK_HEADER([GLee.h], [system_glee=true], [system_glee=false])
CPPFLAGS=${save_cppflags}
if test "x$system_glee" = "xtrue" ; then
AC_CHECK_LIB([GLee], [GLeeInit], [system_glee=true], [system_glee=false])
if test "x$system_glee" = "xtrue" ; then
AC_SUBST([GLee_CFLAGS], [${GLEE_H_CPPFLAGS}])
AC_SUBST([GLee_LIBS], [-lGLee])
fi
fi
fi
fi
AM_CONDITIONAL([SYSTEM_GLEE], [test x$system_glee = xtrue])
if test x$system_glee = xfalse ; then
AM_CONDITIONAL([SYSTEM_GLEE], [test "x$system_glee" = "xtrue"])
if test "x$system_glee" = "xfalse" ; then
AC_MSG_NOTICE([Using integrated GLee])
AC_SUBST([GLee_CFLAGS], ['-I$(top_srcdir)/lib/ivis_opengl'])
fi

View File

@ -4,8 +4,8 @@ stamp:
touch stamp
%.wz: $(abs_srcdir)/% stamp
(cd $(srcdir)/$(notdir $<) && zip -ru0 $(abs_builddir)/$@ $(filter-out stamp,$(filter-out $<,$(^:$</%=%))) -x '*svn*' -x '*Makefile*' || [ $$? -eq 12 ] && true) # zip returns 12 on "nothing to do"
zip -T $@
(cd $(srcdir)/$(notdir $<) && $(ZIP) -ru0 $(abs_builddir)/$@ $(filter-out stamp,$(filter-out $<,$(^:$</%=%))) -x '*svn*' -x '*Makefile*' || [ $$? -eq 12 ] && true) # zip returns 12 on "nothing to do"
$(ZIP) -T $@
rm -f stamp
BASELIST = \
@ -52,5 +52,5 @@ $(PATCHARCHIVE): $(PATCHLIST:%=$(abs_srcdir)/$(basename $(PATCHARCHIVE))/%)
nodist_pkgdata_DATA = $(BASEARCHIVE) $(PATCHARCHIVE)
dist-hook: $(BASEARCHIVE) $(PATCHARCHIVE)
unzip -u $(BASEARCHIVE) -d $(DESTDIR)$(distdir)/$(basename $(BASEARCHIVE))
unzip -u $(PATCHARCHIVE) -d $(DESTDIR)$(distdir)/$(basename $(PATCHARCHIVE))
$(UNZIP) -u $(BASEARCHIVE) -d $(DESTDIR)$(distdir)/$(basename $(BASEARCHIVE))
$(UNZIP) -u $(PATCHARCHIVE) -d $(DESTDIR)$(distdir)/$(basename $(PATCHARCHIVE))

View File

@ -226,21 +226,6 @@
3,184,110,1,11,0,-9,"IMAGE ASCII124"
3,186,110,5,11,0,-10,"IMAGE ASCII125"
3,182,87,6,2,0,-5,"IMAGE ASCII126"
5,192,128,32,32,-15,-15,"IMAGE CURSOR ATTACK"
5,32,160,32,32,-15,-15,"IMAGE CURSOR SELECT"
5,192,160,32,32,-15,-15,"IMAGE CURSOR LOCKON"
5,224,128,32,32,-15,-15,"IMAGE CURSOR ECM"
5,64,128,32,32,-15,-15,"IMAGE CURSOR DEFAULT"
5,96,128,32,32,-15,-15,"IMAGE CURSOR BUILD"
5,160,160,32,32,-15,-15,"IMAGE CURSOR MOVE"
5,224,128,32,32,-15,-15,"IMAGE CURSOR GUARD"
5,0,128,32,32,-15,-15,"IMAGE CURSOR EMBARK"
5,128,128,32,32,-15,-15,"IMAGE CURSOR BRIDGE"
5,0,192,32,32,-15,-15,"IMAGE CURSOR ATTACH"
5,0,160,32,32,-15,-15,"IMAGE CURSOR FIX"
5,64,160,32,32,-8,-15,"IMAGE CURSOR REPAIR"
5,96,160,32,32,-15,-20,"IMAGE CURSOR PICKUP"
5,128,160,32,32,-15,-15,"IMAGE CURSOR NOTPOS"
0,226,110,11,26,0,0,"IMAGE SIDETAB"
0,107,107,14,29,-2,-2,"IMAGE SIDETABHI"
0,213,110,11,26,0,0,"IMAGE SIDETABDOWN"
@ -346,7 +331,6 @@
1,107,219,54,14,0,0,"IMAGE DES EDITBOXRIGHT"
1,55,235,52,14,0,0,"IMAGE DES EDITBOXMIDH"
1,107,235,54,14,0,0,"IMAGE DES EDITBOXRIGHTH"
5,32,128,32,32,-15,-15,"IMAGE CURSOR DEST"
1,3,143,19,17,0,0,"IMAGE RES CYBORGTECH"
3,233,37,23,13,0,0,"IMAGE LOOP UP"
3,233,51,23,13,0,0,"IMAGE LOOP DOWN"
@ -507,14 +491,34 @@
5,74,29,37,29,-5,1,"IMAGE EDIT RESEARCH DOWN"
5,37,0,37,29,-5,1,"IMAGE EDIT MANUFACTURE UP"
5,37,29,37,29,-5,1,"IMAGE EDIT MANUFACTURE DOWN"
5,0,84,14,33,0,0,"RADAR_NORTH"
5,0,84,14,33,0,0,"RADAR NORTH"
2,94,114,14,10,0,0,"IMAGE ORIGIN VISUAL"
2,156,197,13,12,0,0,"IMAGE ORIGIN COMMANDER"
2,58,114,10,10,0,0,"IMAGE ORIGIN SENSOR STANDARD"
2,70,114,10,10,0,0,"IMAGE ORIGIN SENSOR CB"
2,81,114,12,11,-2,-1,"IMAGE ORIGIN SENSOR AIRDEF"
2,110,114,10,10,0,0,"IMAGE ORIGIN RADAR DETECTOR"
5,74,84,36,24,0,0,"IMAGE WAITING LO"
5,111,84,36,24,0,0,"IMAGE WAITING HI"
5,148,84,36,24,0,0,"IMAGE DESYNC LO"
5,185,84,36,24,0,0,"IMAGE DESYNC HI"
5,109,232,36,24,0,0,"IMAGE WAITING LO"
5,146,232,36,24,0,0,"IMAGE WAITING HI"
5,183,232,36,24,0,0,"IMAGE DESYNC LO"
5,220,232,36,24,0,0,"IMAGE DESYNC HI"
5,0,128,32,32,-15,-15,"IMAGE CURSOR EMBARK"
5,32,128,32,32,-15,-15,"IMAGE CURSOR DEST"
5,64,128,32,32,-15,-15,"IMAGE CURSOR DEFAULT"
5,96,128,32,32,-15,-15,"IMAGE CURSOR BUILD"
5,128,128,32,32,-15,-15,"IMAGE CURSOR SCOUT"
5,160,128,32,32,-15,-15,"IMAGE CURSOR DISEMBARK"
5,192,128,32,32,-15,-15,"IMAGE CURSOR ATTACK"
5,224,128,32,32,-15,-15,"IMAGE CURSOR GUARD"
5,0,160,32,32,-15,-15,"IMAGE CURSOR FIX"
5,32,160,32,32,-15,-15,"IMAGE CURSOR SELECT"
5,64,160,32,32,-8,-15,"IMAGE CURSOR REPAIR"
5,96,160,32,32,-15,-20,"IMAGE CURSOR PICKUP"
5,128,160,32,32,-15,-15,"IMAGE CURSOR NOTPOS"
5,160,160,32,32,-15,-15,"IMAGE CURSOR MOVE"
5,192,160,32,32,-15,-15,"IMAGE CURSOR LOCKON"
5,224,160,32,32,-15,-15,"IMAGE CURSOR ECM"
5,0,192,32,32,-15,-15,"IMAGE CURSOR ATTACH"
5,32,192,32,32,-15,-15,"IMAGE CURSOR BRIDGE"
5,64,192,32,32,-15,-15,"IMAGE CURSOR BOMB"
5,20,86,179,18,0,0,"IMAGE SLIDER AI"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.6 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -54,18 +54,49 @@ event scavManagement;
// (A nice way of saying we have bugs in our code.)
event scavManagement(inactive)
{
fac1 = getStructure(factory, enemy1);
if (fac1 != NULLOBJECT)
local DROID mydroid;
local int closest, current;
local STRUCTURE clfac;
initEnumStruct(FALSE, factory, enemy1, enemy1);
fac1 = enumStruct();
while (fac1 != NULLOBJECT)
{
// Remind factory to produce
if (structureIdle(fac1))
{
buildDroid(trike, fac1, enemy1, 1);
}
fac1 = enumStruct();
}
if ((gameTime - lastAttack) > 600)
if ((gameTime - lastAttack) > 600)
{
// Return to nearest factory (ie base)
lastAttack = gameTime;
initIterateGroup(attackGroup);
mydroid = iterateGroup(attackGroup);
while (mydroid != NULLOBJECT)
{
lastAttack = gameTime;
orderGroupLoc(attackGroup, DORDER_MOVE, fac1.x, fac1.y);
clfac = NULLOBJECT;
closest = 9999;
initEnumStruct(FALSE, factory, enemy1, enemy1);
fac1 = enumStruct();
while (fac1 != NULLOBJECT)
{
current = distBetweenTwoPoints(fac1.x, fac1.y, mydroid.x, mydroid.y);
if (current < closest)
{
closest = current;
clfac = fac1;
}
fac1 = enumStruct();
}
if (clfac != NULLOBJECT)
{
orderDroidLoc(mydroid, DORDER_MOVE, clfac.x, clfac.y);
}
mydroid = iterateGroup(attackGroup);
}
}
@ -122,10 +153,21 @@ event droidbuilt(CALL_NEWDROID, enemy1, ref newDroid, ref fac1)
// watch for structures being attacked. Send the cavalry as required.
event structureAttacked(CALL_STRUCT_ATTACKED, enemy1, ref structure, ref attacker)
{
local DROID mydroid;
if ((gameTime - lastAttack) > 300)
{
lastAttack = gameTime;
orderGroupLoc(attackGroup, DORDER_MOVE, attacker.x, attacker.y);
initIterateGroup(attackGroup);
mydroid = iterateGroup(attackGroup);
while (mydroid != NULLOBJECT)
{
if (distBetweenTwoPoints(attackGroup.x, attackGroup.y,attacker.x, attacker.y) < (24 * 128))
{
orderDroidLoc(mydroid, DORDER_MOVE, attacker.x, attacker.y);
}
mydroid = iterateGroup(attackGroup);
}
}
}

View File

@ -391,6 +391,23 @@ event checkResearch(checkResearchTr)
setEventTrigger(doResearch, chainloadTr);
}
function void dbgPlr(string message)
{
setEventTrigger(doResearch, chainloadTr);
if (me == selectedPlayer)
{
console(message);
}
}
function void dbgObj(DROID obj, string message)
{
if (obj.selected)
{
console(message);
}
}
function bool conCanHelp(DROID mydroid, int bx, int by)
{
return (mydroid.order != DORDER_HELPBUILD and mydroid.order != DORDER_BUILD and mydroid.order != DORDER_LINEBUILD and droidCanReach(mydroid, bx, by));
@ -446,6 +463,8 @@ event arrived(reachedTr)
if (droid.droidType == DROID_CONSTRUCT or droid.droidType == DROID_CYBORG_CONSTRUCT)
{
dbgObj(droid, "Failed to build where we should - attempt to screw up enemy oil derrick");
// Check if at oil well, and it was taken by enemy
structure = structureBuiltInRange(derrick, droid.x, droid.y, (5 * 128), -1);
if (structure != NULLOBJECT)
@ -475,12 +494,22 @@ event arrived(reachedTr)
{
orderDroidStatsLoc(droid, DORDER_BUILD, defStructs[count], buildX, buildY);
}
else
{
dbgObj(droid, "Wanted to be nasty, but found nowhere to build defense");
orderDroid(droid, DORDER_RTB); // nothing more to do here.
}
}
else
{
dbgObj(droid, "Wanted to be nasty, but had nothing nasty to build - returning to base");
orderDroid(droid, DORDER_RTB); // oh, well. nothing more to do here.
}
exit;
}
else if (droid.health < 100 and !insideBase(droid.x, droid.y))
{
orderDroid(droid, DORDER_RTB); // bolt back to base now!
orderDroid(droid, DORDER_RTR); // bolt back to base now!
exit;
}
}
@ -707,7 +736,6 @@ event buildOilDefenseOrRetreat(buildOilDefenseOrRetreatTr)
{
local int _numBuilders,_maxBuilders;
_maxBuilders = 1;
// check idle.
@ -743,20 +771,8 @@ event buildOilDefenseOrRetreat(buildOilDefenseOrRetreatTr)
{
if( isStructureAvailable(defStructs[count],me))
{
// don't build multiple sensors together.
if(count == 5)
{
structure = structureBuiltInRange(defStructs[count], buildX, buildY,(6*128), me);
if(structure != NULLOBJECT)
{
count = 8;
}
}
structChoice[count2] = defStructs[count];
count2 = count2 + 1;
}
count = count - 1;
}
@ -973,7 +989,10 @@ event incendry(incendryTr)
// build a power gen for every 4 derricks. VITAL!
event buildPowerGenerators(buildPowerGeneratorsTr)
{
if (!isStructureAvailable(powGen, me))
{
exit;
}
initEnumStruct(FALSE,derrick,me,me); // count = numderricks
structure= enumStruct();
count = 0;
@ -2126,28 +2145,24 @@ event doAllOutAttack(allOutAttackTr)
// defend attacked objects.
event defendWatch(defendWatchTr)
{
if(baseobj != NULLOBJECT)
if (baseobj != NULLOBJECT)
{
if(!friendlyPlayer(baseobj.player))
{
if(not isHumanPlayer(baseobj.player) ) // new in wdg1 dont allout attack a pc player //TODO:is this check needed?
if(distBetweenTwoPoints(baseobj.x, baseobj.y, baseX, baseY) <= MAX_DEFENDERS_RADIUS) //don't go too far away from the base
{
if(distBetweenTwoPoints(baseobj.x, baseobj.y, baseX, baseY) <= MAX_DEFENDERS_RADIUS) //don't go too far away from the base
defendObj = baseobj;
defendbusy = TRUE;
// if not too busy, attack.
if (idleGroup(defendGroup) >= (defendGroup.members / 2))
{
defendObj = baseobj;
defendbusy = TRUE;
// if not too busy, attack.
if( idleGroup(defendGroup) >= (defendGroup.members / 2) )
{
orderGroupLoc(defendGroup, DORDER_MOVE,defendObj.x,defendObj.y); //cyborg mechanics can't attack (won't move)
}
if( idleGroup(scoutGroup) >= (scoutGroup.members / 2) )
{
orderGroupLoc(scoutGroup, DORDER_MOVE,scoutX,scoutY);
}
orderGroupLoc(defendGroup, DORDER_MOVE,defendObj.x,defendObj.y); //cyborg mechanics can't attack (won't move)
}
if (idleGroup(scoutGroup) >= (scoutGroup.members / 2))
{
orderGroupLoc(scoutGroup, DORDER_MOVE,scoutX,scoutY);
}
}
}
}
@ -2590,10 +2605,7 @@ event vtolAttack(inactive)
{
if(defendObj != NULLOBJECT)
{
if(not isHumanPlayer(defendObj.player) ) // new in wdg1 //TODO:is this check needed?
{
orderGroupObj(vtolDefendGr, DORDER_ATTACK,defendObj); // get the defend target
}
orderGroupObj(vtolDefendGr, DORDER_ATTACK,defendObj); // get the defend target
}
}
}
@ -2929,8 +2941,8 @@ event vtolDefend(vtolDefendTr)
}
if(count2 != (-1) )
{
boolResult = pickStructLocation(vtolDefStruct[count2], ref buildX, ref buildY,me);
if((boolResult == TRUE) and (_numBuilders < _maxBuilders) and droidCanReach(droid, buildX, buildY)) // build a vtol defense near the attacked struct...
boolResult = pickDroidStructLocation(droid, vtolDefStruct[count2], ref buildX, ref buildY, me, 1);
if (boolResult == TRUE and (_numBuilders < _maxBuilders)) // build a vtol defense near the attacked struct...
{
orderDroidStatsLoc(droid, DORDER_BUILD,vtolDefStruct[count2],buildX,buildY);
_numBuilders++;

View File

@ -57,3 +57,18 @@ A0,70,00,ff // team2 - orange
20,30,60,ff // team6 - blue
90,00,70,ff // team7 - purple
00,80,80,ff // team8 - teal
7f,7f,7f,ff // default form background
ff,ff,ff,ff // default form text
ff,ff,ff,ff // default form light
00,00,00,ff // default form dark
40,40,40,ff // default form hilite
ff,0,0,ff // default form cursor
30,30,30,ff // default form tip background
bf,bf,bf,ff // default form disabled
0,a4,0,ff // design power form background
cc,0,0,ff // power bar
cc,eb,13,ff // action progress bar major
55,0,0,ff // action progress bar minor
ff,ff,0,ff // production run text
0,20,40,ff // production run background
0,0,0,18 // game loading bar background

View File

@ -1,14 +1,14 @@
270 400 0 100 "CAMPAIGN ONE"
260 420 0 100 "WESTERN SECTOR"
20 20 101 399 "Dawn, July 4th, 2100"
0 0 101 399 "Project HQ"
0 0 101 399 "A New Era"
20 20 499 799 "Morning, July 4th, 2100"
0 0 499 799 "In-flight to Western Sector"
0 0 499 799 "Team Alpha nears its destination"
20 20 1250 1725 "OBJECTIVE: Locate and recover neural synapse technology"
20 447 1250 1725 "Establish a base, then search for a Pre-Collapse structure."
0 0 1250 1725 "This structure contains technology vital for the success of the Project."
270 400 0 100 _("CAMPAIGN ONE")
260 420 0 100 _("WESTERN SECTOR")
20 20 101 399 _("Dawn, July 4th, 2100")
0 0 101 399 _("Project HQ")
0 0 101 399 _("A New Era")
20 20 499 799 _("Morning, July 4th, 2100")
0 0 499 799 _("In-flight to Western Sector")
0 0 499 799 _("Team Alpha nears its destination")
20 20 1250 1725 _("OBJECTIVE: Locate and recover neural synapse technology")
20 447 1250 1725 _("Establish a base, then search for a Pre-Collapse structure.")
0 0 1250 1725 _("This structure contains technology vital for the success of the Project.")

View File

@ -1,12 +1,12 @@
20 432 100 200 "Transport destinations follow:"
0 0 100 200 "Alpha - Western Sector...."
20 432 100 200 _("Transport destinations follow:")
0 0 100 200 _("Alpha - Western Sector....")
20 432 225 350 "Alpha you are cleared for take-off."
0 0 225 350 "Good luck and good hunting."
20 432 225 350 _("Alpha you are cleared for take-off.")
0 0 225 350 _("Good luck and good hunting.")
20 432 750 875 "Approaching Landing Zone. Team Alpha Briefing commences."
20 432 750 875 _("Approaching Landing Zone. Team Alpha Briefing commences.")
20 432 925 1150 "Commander, you lead Team Alpha, one of three expeditionary teams sent out by the Project to recover artifacts from before the Collapse."
20 432 925 1150 _("Commander, you lead Team Alpha, one of three expeditionary teams sent out by the Project to recover artifacts from before the Collapse.")
20 432 1175 1240 "Your destination lies in the western zone."
20 432 1175 1240 _("Your destination lies in the western zone.")

View File

@ -1,7 +1,7 @@
20 20 0 60 "Incoming Transmission"
20 20 0 60 _("Incoming Transmission")
20 20 70 250 "Transmission from Beta Base"
20 452 70 250 "Mayday! Mayday!"
0 0 70 250 "Please assist!..."
20 20 70 250 _("Transmission from Beta Base")
20 452 70 250 _("Mayday! Mayday!")
0 0 70 250 _("Please assist!...")
20 20 730 844 "Commander you are to assist Team Beta"
20 20 730 844 _("Commander you are to assist Team Beta")

View File

@ -1,11 +1,11 @@
//pos frame
//x y start end Text
20 432 0 100 "Commander, we have recovered a command turret from the New Paradigm."
20 432 0 100 _("Commander, we have recovered a command turret from the New Paradigm.")
20 432 125 375 "This turret allows commanders to coordinate attacks between assigned units and to act as a delivery point for factories. Researching and using this technology has the highest priority."
20 432 125 375 _("This turret allows commanders to coordinate attacks between assigned units and to act as a delivery point for factories. Researching and using this technology has the highest priority.")
20 432 425 475 "Commander, we are receiving this transmission."
20 432 425 475 _("Commander, we are receiving this transmission.")

View File

@ -1,5 +1,5 @@
//pos frame
//x y start end Text
20 432 150 325 "Your attacks upon us will not go unpunished."
0 0 150 325 "You are in contravention of the New Paradigm."
20 432 150 325 _("Your attacks upon us will not go unpunished.")
0 0 150 325 _("You are in contravention of the New Paradigm.")

View File

@ -1,9 +1,9 @@
//pos frame
//x y start end Text
20 432 200 370 "All attack groups commence attack on enemy."
0 0 200 370 "They are in contravention of the New Paradigm."
20 432 200 370 _("All attack groups commence attack on enemy.")
0 0 200 370 _("They are in contravention of the New Paradigm.")
20 432 385 450 "They must be eradicated."
20 432 385 450 _("They must be eradicated.")

View File

@ -1,8 +1,8 @@
//pos frame
//x y start end Text
20 432 25 175 "Secure the LZ and establish a forward base."
0 0 25 175 "Then destroy the New Paradigm's base."
20 432 25 175 _("Secure the LZ and establish a forward base.")
0 0 25 175 _("Then destroy the New Paradigm's base.")

View File

@ -1,10 +1,10 @@
20 432 150 325 "Open your systems to me."
0 0 150 325 "Let me meld with your machines and cyborgs."
20 432 150 325 _("Open your systems to me.")
0 0 150 325 _("Let me meld with your machines and cyborgs.")
20 432 330 550 "We will create the perfect nexus of man and machine."
0 0 330 550 "Together we can create a new world."
20 432 330 550 _("We will create the perfect nexus of man and machine.")
0 0 330 550 _("Together we can create a new world.")
20 432 575 675 "I can give you power beyond your wildest dreams."
20 432 575 675 _("I can give you power beyond your wildest dreams.")
20 432 700 925 "Open your systems to me and you will be strong."
0 0 700 925 "I can raise you as gods upon the blasted earth."
20 432 700 925 _("Open your systems to me and you will be strong.")
0 0 700 925 _("I can raise you as gods upon the blasted earth.")

View File

@ -1,6 +1,6 @@
//pos frame
//x y start end Text
20 432 25 125 "When we failed to respond it became threatening."
20 432 25 125 _("When we failed to respond it became threatening.")

View File

@ -1,6 +1,6 @@
20 432 75 337 "Your interference in my plans for the New Paradigm will not go unpunished."
0 0 75 337 "You are weak flesh-things. I am strong and have many parts."
20 432 75 337 _("Your interference in my plans for the New Paradigm will not go unpunished.")
0 0 75 337 _("You are weak flesh-things. I am strong and have many parts.")
20 432 350 600 "You may defeat me here, but I shall rise again."
0 0 350 600 "As I once cleansed the world with fire, I will destroy you and your puny Project!!"
20 432 350 600 _("You may defeat me here, but I shall rise again.")
0 0 350 600 _("As I once cleansed the world with fire, I will destroy you and your puny Project!!")

View File

@ -1,13 +1,13 @@
//pos frame
//x y start end Text
20 432 25 190 "Nexus then removed itself from the system, destroying its memory banks, and removing all traces of its external connections."
20 432 25 190 _("Nexus then removed itself from the system, destroying its memory banks, and removing all traces of its external connections.")
20 432 200 475 "We are not sure what Nexus is or who or what is directing it. Initial research links the Nexus Intruder Program with the Reed Corporation, the developer of the synaptic link."
20 432 200 475 _("We are not sure what Nexus is or who or what is directing it. Initial research links the Nexus Intruder Program with the Reed Corporation, the developer of the synaptic link.")
20 432 500 710 "We have ascertained that Nexus supplied the New Paradigm with most of its technology. Whatever Nexus is, it's more than a computer parasite."
20 432 500 710 _("We have ascertained that Nexus supplied the New Paradigm with most of its technology. Whatever Nexus is, it's more than a computer parasite.")
20 432 725 900 "It has technology and weapons. It knows about us, and it's not friendly."
20 432 725 900 _("It has technology and weapons. It knows about us, and it's not friendly.")

View File

@ -1,16 +1,16 @@
//pos frame
//x y start end Text
20 432 65 190 "The Synaptic Link was developed by the Reed Corporation in conjunction with the US Military."
20 432 65 190 _("The Synaptic Link was developed by the Reed Corporation in conjunction with the US Military.")
20 432 200 550 "The synaptic link allows for almost instantaneous transfer of thought from human operators to vehicle control and guidance systems. The synaptic link is fitted into the base of the skull circling the spinal column."
20 432 200 550 _("The synaptic link allows for almost instantaneous transfer of thought from human operators to vehicle control and guidance systems. The synaptic link is fitted into the base of the skull circling the spinal column.")
20 432 625 750 "The link has a hi-speed data transfer port that plugs into any computer system."
20 432 625 750 _("The link has a hi-speed data transfer port that plugs into any computer system.")
20 432 925 1200 "More importantly the development of the synaptic link made the creation of cyborgs possible. Early attempts at power suits for individual soldiers failed as they proved to be slow and unresponsive."
20 432 925 1200 _("More importantly the development of the synaptic link made the creation of cyborgs possible. Early attempts at power suits for individual soldiers failed as they proved to be slow and unresponsive.")
20 432 1350 1700 "The synaptic link allowed soldiers to be placed in power suits that they controlled as easily as their own bodies. Power suits allowed infantry to function effectively on the battlefields of the 21st Century."
20 432 1350 1700 _("The synaptic link allowed soldiers to be placed in power suits that they controlled as easily as their own bodies. Power suits allowed infantry to function effectively on the battlefields of the 21st Century.")
20 432 1715 1925 "Unfortunately, this technology has fallen into the hands of the New Paradigm. It is imperative that you research and develop synaptic link technologies."
20 432 1715 1925 _("Unfortunately, this technology has fallen into the hands of the New Paradigm. It is imperative that you research and develop synaptic link technologies.")

View File

@ -1,12 +1,12 @@
//pos frame
//x y start end Text
20 432 200 275 "Warning!"
0 0 200 275 "You are entering a restricted area."
20 432 200 275 _("Warning!")
0 0 200 275 _("You are entering a restricted area.")
20 432 300 550 _("Return to your designated zone or be destroyed.")
0 0 300 550 _("Repeat. Return to your designated zone or be destroyed.")
0 0 300 550 _("Message Ends.")
20 432 300 550 "Return to your designated zone or be destroyed."
0 0 300 550 "Repeat. Return to your designated zone or be destroyed."
0 0 300 550 "Message Ends."

View File

@ -1,9 +1,9 @@
//pos frame
//x y start end Text
20 432 200 370 "Your attacks upon us will not go unpunished."
0 0 200 370 "You are in contravention of the New Paradigm."
20 432 200 370 _("Your attacks upon us will not go unpunished.")
0 0 200 370 _("You are in contravention of the New Paradigm.")
20 432 380 440 "You will be destroyed."
20 432 380 440 _("You will be destroyed.")

View File

@ -1,7 +1,7 @@
//pos frame
//x y start end Text
20 432 210 380 "NEXUS, the synaptic technology you required has been recovered and sent for collection."
20 432 210 380 _("NEXUS, the synaptic technology you required has been recovered and sent for collection.")

View File

@ -1,15 +1,15 @@
//pos frame
//x y start end Text
20 432 75 275 "This Nexus Intruder Program is a self-mutating computer parasite. This makes it difficult to eradicate from systems once it has been identified."
20 432 75 275 _("This Nexus Intruder Program is a self-mutating computer parasite. This makes it difficult to eradicate from systems once it has been identified.")
20 432 300 735 "We have been unable to ascertain it's ultimate goal or function. In its initial form it seeks out and isolates sections of memory from the rest of the invaded system. It then begins to mutate itself and data structures, effectively reprogramming the system from within."
20 432 300 735 _("We have been unable to ascertain it's ultimate goal or function. In its initial form it seeks out and isolates sections of memory from the rest of the invaded system. It then begins to mutate itself and data structures, effectively reprogramming the system from within.")
20 432 750 960 "Further analysis was prevented by the manual shutdown of the system by our technicians to prevent additional contamination by the Nexus Intruder Program."
20 432 750 960 _("Further analysis was prevented by the manual shutdown of the system by our technicians to prevent additional contamination by the Nexus Intruder Program.")
20 432 975 1225 "However, the spread of the Nexus Intruder Program was not checked by New Paradigm. We need to capture New Paradigm's core systems to further investigate Nexus and determine its origins."
20 432 975 1225 _("However, the spread of the Nexus Intruder Program was not checked by New Paradigm. We need to capture New Paradigm's core systems to further investigate Nexus and determine its origins.")
20 432 1250 1425 "Commander, you are to curtail the New Paradigm's activities in this sector and locate their main base."
20 432 1250 1425 _("Commander, you are to curtail the New Paradigm's activities in this sector and locate their main base.")

View File

@ -1,8 +1,8 @@
//pos frame
//x y start end Text
20 432 150 375 "You have done well."
0 0 150 375 "Once we have analyzed and authenticated the technology, your reward will follow."
20 432 150 375 _("You have done well.")
0 0 150 375 _("Once we have analyzed and authenticated the technology, your reward will follow.")

View File

@ -1,7 +1,7 @@
//pos frame
//x y start end Text
20 432 25 190 "Information discovered at the previous enemy base indicates that the New Paradigm recovered two synaptic link artifacts."
20 432 25 190 _("Information discovered at the previous enemy base indicates that the New Paradigm recovered two synaptic link artifacts.")

View File

@ -1,18 +1,18 @@
270 400 0 100 "CAMPAIGN TWO"
265 420 0 100 "EASTERN SECTOR"
20 20 105 285 "Morning, September 1st, 2100"
0 0 105 285 "In-flight to Eastern Sector"
0 0 105 285 "Team Alpha approaches Beta Base"
20 20 320 912 "BETA BASE MISSION: Eastern Sector"
20 447 320 912 "Upon arrival you are to assume command of the base."
0 0 320 912 "You must defend and hold it at all costs."
270 465 925 1125 "THE COLLECTIVE"
20 20 1730 1770 "BETA BASE MISSION: Eastern Sector"
20 20 1800 2127 "BETA BASE MISSION: Defend and Fortify"
20 447 1800 2127 "Be sure to fortify the perimeter and establish anti-aircraft defenses."
0 0 1800 2127 "New technologies are available."
270 400 0 100 _("CAMPAIGN TWO")
265 420 0 100 _("EASTERN SECTOR")
20 20 105 285 _("Morning, September 1st, 2100")
0 0 105 285 _("In-flight to Eastern Sector")
0 0 105 285 _("Team Alpha approaches Beta Base")
20 20 320 912 _("BETA BASE MISSION: Eastern Sector")
20 447 320 912 _("Upon arrival you are to assume command of the base.")
0 0 320 912 _("You must defend and hold it at all costs.")
270 465 925 1125 _("THE COLLECTIVE")
20 20 1730 1770 _("BETA BASE MISSION: Eastern Sector")
20 20 1800 2127 _("BETA BASE MISSION: Defend and Fortify")
20 447 1800 2127 _("Be sure to fortify the perimeter and establish anti-aircraft defenses.")
0 0 1800 2127 _("New technologies are available.")

View File

@ -1,6 +1,6 @@
20 432 40 200 "Commander, a new launch has been detected."
0 0 40 200 "It is likely to be targeted at your location."
20 432 40 200 _("Commander, a new launch has been detected.")
0 0 40 200 _("It is likely to be targeted at your location.")
20 432 220 385 "You are to start the immediate evacuation of Beta Base to the safe haven."
20 432 220 385 _("You are to start the immediate evacuation of Beta Base to the safe haven.")

View File

@ -1,23 +1,23 @@
20 432 0 125 "NASDA is the North American Strategic Defense Agency."
20 432 0 125 _("NASDA is the North American Strategic Defense Agency.")
20 432 150 435 "NASDA was formed in 2076 to defend North America from conventional and nuclear attack. The construction of a satellite defense system began in 2081 and was completed in 2082."
20 432 150 435 _("NASDA was formed in 2076 to defend North America from conventional and nuclear attack. The construction of a satellite defense system began in 2081 and was completed in 2082.")
20 432 450 590 "In 2085 the NASDA satellites fired their nukes at Earth."
20 432 450 590 _("In 2085 the NASDA satellites fired their nukes at Earth.")
20 432 635 800 "There were also ground-based sites. Many of these were destroyed in the nuclear counterstrikes, but there's bound to be some out there."
20 432 635 800 _("There were also ground-based sites. Many of these were destroyed in the nuclear counterstrikes, but there's bound to be some out there.")
20 432 825 1000 "The NASDA satellites also contained pulse-lasers designed to shoot down missiles approaching North America."
20 432 825 1000 _("The NASDA satellites also contained pulse-lasers designed to shoot down missiles approaching North America.")
20 432 1030 1275 "During the counterstrikes, these LasSats failed to fire. If brought into operation, these LasSats could inflict major damage on ground targets."
20 432 1030 1275 _("During the counterstrikes, these LasSats failed to fire. If brought into operation, these LasSats could inflict major damage on ground targets.")
20 432 1300 1420 "All nukes targeted at North America found their targets."
20 432 1300 1420 _("All nukes targeted at North America found their targets.")
20 447 1430 1700 "We know that Nexus is searching for NASDA Central in the Eastern Sector. This was one of the land-based control centres for the satellites."
20 447 1430 1700 _("We know that Nexus is searching for NASDA Central in the Eastern Sector. This was one of the land-based control centres for the satellites.")
20 453 1710 1765 "If the centre is found intact, NEXUS may gain control of the satellites."
20 453 1710 1765 _("If the centre is found intact, NEXUS may gain control of the satellites.")
20 432 1780 1850 "Nexus claimed that it had already destroyed the world."
20 432 1780 1850 _("Nexus claimed that it had already destroyed the world.")

View File

@ -1,2 +1,2 @@
20 432 25 150 "NASDA Briefing follows..."
20 432 25 150 _("NASDA Briefing follows...")

View File

@ -1,4 +1,4 @@
20 432 10 100 "We've got to make sure that it can't do it again."
20 432 10 100 _("We've got to make sure that it can't do it again.")

View File

@ -1,9 +1,9 @@
20 432 20 200 "Analysis indicates that these systems were part of the control system for the NASDA satellites."
0 0 20 200 "It's now certain that Nexus was responsible for The Collapse."
20 432 20 200 _("Analysis indicates that these systems were part of the control system for the NASDA satellites.")
0 0 20 200 _("It's now certain that Nexus was responsible for The Collapse.")
20 432 220 500 "During the early stages of the Collapse, NASDA technicians switched off the infected systems in order to isolate the spread of Nexus. This seems to have prevented the LasSats from firing during the counterstrikes."
20 432 220 500 _("During the early stages of the Collapse, NASDA technicians switched off the infected systems in order to isolate the spread of Nexus. This seems to have prevented the LasSats from firing during the counterstrikes.")
20 432 520 825 "The ensuing nuclear-magnetic pulses wiped clean large amounts of NASDA's memory banks, shattering its core processor, and sent shockwaves blasting through Nexus."
20 432 520 825 _("The ensuing nuclear-magnetic pulses wiped clean large amounts of NASDA's memory banks, shattering its core processor, and sent shockwaves blasting through Nexus.")
20 432 875 1000 "Nexus was fried as whole sections of its consciousness were obliterated in the counterstrikes."
20 432 875 1000 _("Nexus was fried as whole sections of its consciousness were obliterated in the counterstrikes.")

View File

@ -1,6 +1,6 @@
20 432 40 175 "Commander we are detecting transmissions from this site that are reaching high orbit."
20 432 40 175 _("Commander we are detecting transmissions from this site that are reaching high orbit.")
20 432 325 410 "Nexus has now reconnected itself with the NASDA satellites."
20 432 325 410 _("Nexus has now reconnected itself with the NASDA satellites.")
20 432 420 565 "This poses a major threat to the Project and to our survival."
20 432 420 565 _("This poses a major threat to the Project and to our survival.")

View File

@ -1,6 +1,6 @@
20 432 25 190 "Analysis of NASDA Central leaves no doubt that The Collective has introduced the Nexus Intruder Virus to it."
20 432 25 190 _("Analysis of NASDA Central leaves no doubt that The Collective has introduced the Nexus Intruder Virus to it.")
20 432 210 350 "The nuclear reactor was going to be used to power a vast network of pre-Collapse computer systems."
20 432 210 350 _("The nuclear reactor was going to be used to power a vast network of pre-Collapse computer systems.")

View File

@ -1,6 +1,6 @@
20 432 25 100 "Commander, we have just detected a missile launch at these coordinates."
20 432 25 100 _("Commander, we have just detected a missile launch at these coordinates.")
20 432 125 260 "Team Gamma are sending a team to investigate the launch site and to prevent any further launches."
20 432 125 260 _("Team Gamma are sending a team to investigate the launch site and to prevent any further launches.")
20 432 270 565 "We can only assume that Nexus has gained control of this site. We cannot determine whether the missile is nuclear-armed or where it is targeted. You are advised to begin preparations for the evacuation of your base."
20 432 270 565 _("We can only assume that Nexus has gained control of this site. We cannot determine whether the missile is nuclear-armed or where it is targeted. You are advised to begin preparations for the evacuation of your base.")

View File

@ -1,5 +1,5 @@
20 432 225 425 "Warriors of the Collective, I seek the location of NASDA Central."
0 0 225 425 "It lies somewhere in your territory."
20 432 225 425 _("Warriors of the Collective, I seek the location of NASDA Central.")
0 0 225 425 _("It lies somewhere in your territory.")
20 432 450 635 _("Find it for me and I shall provide you with further weapons to aid you in your war against the Project.")
20 432 450 635 "Find it for me and I shall provide you with further weapons to aid you in your war against the Project."

View File

@ -1 +1 @@
20 432 10 325 "As I once cleansed the world with fire, I will destroy you and your puny Project!!"
20 432 10 325 _("As I once cleansed the world with fire, I will destroy you and your puny Project!!")

View File

@ -1,8 +1,8 @@
20 432 25 290 "Warriors of The Collective, more intruders are entering our territory."
0 0 25 290 "They are not part of the machine."
20 432 25 290 _("Warriors of The Collective, more intruders are entering our territory.")
0 0 25 290 _("They are not part of the machine.")
20 432 300 625 "Warriors of The Collective, attack and destroy kill all who resist the machine."
0 0 300 625 "Attack! Erase their presence from this area!"
20 432 300 625 _("Warriors of The Collective, attack and destroy kill all who resist the machine.")
0 0 300 625 _("Attack! Erase their presence from this area!")

View File

@ -1,11 +1,11 @@
20 432 25 250 "Warriors of The Collective, we are ready to destroy the intruders who pollute our lands."
20 432 25 250 _("Warriors of The Collective, we are ready to destroy the intruders who pollute our lands.")
20 432 275 625 "Those of the Project are not of the machine. They have been denied its blessing. We who have embraced the power of the machine have a destiny to sweep away such weak creatures."
20 432 275 625 _("Those of the Project are not of the machine. They have been denied its blessing. We who have embraced the power of the machine have a destiny to sweep away such weak creatures.")
20 432 650 775 "They shall fall before the might of The Collective."
20 432 650 775 _("They shall fall before the might of The Collective.")
20 432 800 925 "Attack and destroy all who resist the machine."
0 0 800 925 "Attack!"
20 432 800 925 _("Attack and destroy all who resist the machine.")
0 0 800 925 _("Attack!")

View File

@ -1,6 +1,6 @@
20 432 10 320 "Warriors of the Collective, Nexus has given us the power of the machine so that we can destroy all that oppose us."
20 432 10 320 _("Warriors of the Collective, Nexus has given us the power of the machine so that we can destroy all that oppose us.")
20 432 325 500 "Nexus now asks us to crush the Project."
0 0 325 500 "Cleanse and destroy!!"
20 432 325 500 _("Nexus now asks us to crush the Project.")
0 0 325 500 _("Cleanse and destroy!!")

View File

@ -1,8 +1,8 @@
20 432 240 380 "Warriors of the Collective. You have performed well."
0 0 240 380 "Your just reward is on its way."
20 432 240 380 _("Warriors of the Collective. You have performed well.")
0 0 240 380 _("Your just reward is on its way.")
20 432 390 525 "The Project is fleeing its base and stealing your technology."
0 0 390 525 "You must stop them!"
20 432 390 525 _("The Project is fleeing its base and stealing your technology.")
0 0 390 525 _("You must stop them!")

View File

@ -1,4 +1,4 @@
20 432 10 100 "Decoding Transmission..."
20 432 10 100 _("Decoding Transmission...")

View File

@ -1,17 +1,17 @@
260 400 0 100 "CAMPAIGN THREE"
254 420 0 100 "NORTHERN SECTOR"
20 20 113 479 "TRANSPORT MISSION: Northern Sector"
20 447 113 479 "Congratulations your successful evacuation of Beta Base."
0 0 113 479 "NEXUS has gained access to nuclear weapons and is determined to destroy the Project."
20 20 1000 1225 "Dusk, December 3rd, 2100"
0 0 1000 1225 "In-flight to Northern Sector"
0 0 1000 1225 "The Final Encounter"
20 20 1278 1338 "Briefing Commences"
20 20 1347 1768 "TRANSPORT MISSION: Northern Sector"
20 447 1347 1768 "Once at the mountains secure an LZ. Then establish a forward base."
0 0 1347 1768 "Team Gamma will contact you there."
260 400 0 100 _("CAMPAIGN THREE")
254 420 0 100 _("NORTHERN SECTOR")
20 20 113 479 _("TRANSPORT MISSION: Northern Sector")
20 447 113 479 _("Congratulations your successful evacuation of Beta Base.")
0 0 113 479 _("NEXUS has gained access to nuclear weapons and is determined to destroy the Project.")
20 20 1000 1225 _("Dusk, December 3rd, 2100")
0 0 1000 1225 _("In-flight to Northern Sector")
0 0 1000 1225 _("The Final Encounter")
20 20 1278 1338 _("Briefing Commences")
20 20 1347 1768 _("TRANSPORT MISSION: Northern Sector")
20 447 1347 1768 _("Once at the mountains secure an LZ. Then establish a forward base.")
0 0 1347 1768 _("Team Gamma will contact you there.")

View File

@ -1,7 +1,7 @@
20 432 850 1025 "Personnel at Gamma Base have confirmed that the nuclear missiles targeted at Alpha and Beta bases were launched from a silo in their sector."
20 432 850 1025 _("Personnel at Gamma Base have confirmed that the nuclear missiles targeted at Alpha and Beta bases were launched from a silo in their sector.")
20 432 1150 1250 "Team Gamma is currently scouting the silo's location and monitoring NEXUS's activity."
20 432 1150 1250 _("Team Gamma is currently scouting the silo's location and monitoring NEXUS's activity.")
20 432 1275 1350 "Commander, the success of the Project lies with you."
20 432 1275 1350 _("Commander, the success of the Project lies with you.")

View File

@ -1,4 +1,4 @@
20 432 140 210 "Time's up commander!!"
20 432 140 210 _("Time's up commander!!")

View File

@ -1,4 +1,4 @@
20 432 10 175 "Commander, we are detecting NEXUS forces from these coordinates..."
20 432 10 175 _("Commander, we are detecting NEXUS forces from these coordinates...")

View File

@ -1,10 +1,10 @@
20 432 0 60 "Glad you could make it, Commander."
20 432 0 60 _("Glad you could make it, Commander.")
20 432 70 235 "Enemy strike VTOLs have got us pinned down. We've managed to hold off cyborgs and tanks, but we haven't been able to make any progress along the valley."
20 432 70 235 _("Enemy strike VTOLs have got us pinned down. We've managed to hold off cyborgs and tanks, but we haven't been able to make any progress along the valley.")
20 432 245 275 "Can you try and reach us with anti-aircraft units?"
20 432 245 275 _("Can you try and reach us with anti-aircraft units?")

View File

@ -1,11 +1,11 @@
20 432 20 180 "This is Team Alpha. Repeat, this is Team Alpha. We require immediate assistance."
20 432 20 180 _("This is Team Alpha. Repeat, this is Team Alpha. We require immediate assistance.")
20 432 190 300 "We are under heavy attack from cyborgs, laser tanks, and strike VTOLs."
20 432 190 300 _("We are under heavy attack from cyborgs, laser tanks, and strike VTOLs.")
20 432 315 450 "We were trying to reach your position, but have been ambushed."
0 0 315 450 "We're holed up in a valley at these coordinates."
0 0 315 450 "Please assist."
20 432 315 450 _("We were trying to reach your position, but have been ambushed.")
0 0 315 450 _("We're holed up in a valley at these coordinates.")
0 0 315 450 _("Please assist.")

View File

@ -1,4 +1,4 @@
20 432 20 85 "Coordinate Download Completed."
20 432 20 85 _("Coordinate Download Completed.")
20 432 90 200 "Commander, forces from Team Alpha escaped the nuclear attack on Alpha Base."
20 432 90 200 _("Commander, forces from Team Alpha escaped the nuclear attack on Alpha Base.")

View File

@ -1,6 +1,6 @@
20 432 20 110 "We are experiencing some interference from NEXUS."
20 432 20 110 _("We are experiencing some interference from NEXUS.")
20 432 115 220 "You must destroy his command centre before we lose control of key systems."
20 432 115 220 _("You must destroy his command centre before we lose control of key systems.")

View File

@ -1,4 +1,4 @@
20 432 120 250 "Commander, welcome to NEXUS!"
20 432 120 250 _("Commander, welcome to NEXUS!")

View File

@ -1,13 +1,13 @@
20 432 75 250 "Well done Commander, you've prevented my last missile from launching."
0 0 75 250 "Such a shame. Your Project HQ would have made a wonderful target."
20 432 75 250 _("Well done Commander, you've prevented my last missile from launching.")
0 0 75 250 _("Such a shame. Your Project HQ would have made a wonderful target.")
20 432 275 320 "But it's good of you to join me here."
20 432 275 320 _("But it's good of you to join me here.")
20 432 325 425 "Buried beneath this silo is a tactical nuclear warhead that is set to go off soon."
20 432 325 425 _("Buried beneath this silo is a tactical nuclear warhead that is set to go off soon.")
20 432 475 550 "As I cannot launch it, it'll just have to blow where it is."
20 432 475 550 _("As I cannot launch it, it'll just have to blow where it is.")
20 432 560 650 "Please note that all entrances to the underground complex have been sealed. Goodbye, Commander."
20 432 560 650 _("Please note that all entrances to the underground complex have been sealed. Goodbye, Commander.")

View File

@ -1,15 +1,15 @@
20 432 75 165 "Ah, Commander, so good of you to join us here at Nexus base."
20 432 75 165 _("Ah, Commander, so good of you to join us here at Nexus base.")
20 432 175 320 "It was very useful having Gamma Team set up here in the mountains."
0 0 175 320 "Their absorption was such a pleasure."
20 432 175 320 _("It was very useful having Gamma Team set up here in the mountains.")
0 0 175 320 _("Their absorption was such a pleasure.")
20 432 325 400 "Thank you for all those useful technologies you've recovered."
20 432 325 400 _("Thank you for all those useful technologies you've recovered.")
20 432 405 510 "You and not those fools in the New Paradigm and the Collective."
20 432 405 510 _("You and not those fools in the New Paradigm and the Collective.")
20 432 530 620 "I'm now activating all your synaptic links so that your forces can meld with Nexus."
20 432 530 620 _("I'm now activating all your synaptic links so that your forces can meld with Nexus.")
20 432 630 720 "Your forces are now mine! Welcome to Nexus."
20 432 630 720 _("Your forces are now mine! Welcome to Nexus.")
//" for me. Had I known you'd be so useful, I'd have hired "
//_(" for me. Had I known you'd be so useful, I'd have hired ")

View File

@ -1,14 +1,14 @@
20 432 75 220 "Commander, you're proving to be more resilient than I thought."
0 0 75 220 "Such a pity that you refused to join me earlier."
20 432 75 220 _("Commander, you're proving to be more resilient than I thought.")
0 0 75 220 _("Such a pity that you refused to join me earlier.")
20 432 225 300 "But no matter, as you'll not be here much longer."
20 432 225 300 _("But no matter, as you'll not be here much longer.")
20 432 325 425 "After much searching and reprogramming, I've finally got all my systems back on-line."
20 432 325 425 _("After much searching and reprogramming, I've finally got all my systems back on-line.")
20 432 450 700 "Once I destroyed the world with nuclear fire to clear the way for my cybernetic future."
0 0 450 700 "I now intend to further shape the world into my own image, by surgically removing unwanted growths like yourself."
20 432 450 700 _("Once I destroyed the world with nuclear fire to clear the way for my cybernetic future.")
0 0 450 700 _("I now intend to further shape the world into my own image, by surgically removing unwanted growths like yourself.")
20 432 725 850 "My Laser Satellites are now powering up. I intend to test them on you first, Commander!"
20 432 725 850 _("My Laser Satellites are now powering up. I intend to test them on you first, Commander!")

View File

@ -1,20 +1,20 @@
20 432 0 200 "The Reed Corporation was founded by Dr Allan Reed. In 2080, Dr Reed landed a contract with the US Military to develop the synaptic link technology."
20 432 0 200 _("The Reed Corporation was founded by Dr Allan Reed. In 2080, Dr Reed landed a contract with the US Military to develop the synaptic link technology.")
20 432 225 350 "After patenting the synaptic link five years later, Dr Reed continued his researches into cybernetics."
20 432 225 350 _("After patenting the synaptic link five years later, Dr Reed continued his researches into cybernetics.")
20 432 375 600 "His goal this time was to allow transfer of human consciousness into data streams that could meld with computer technologies. While in Cyberspace the operator's bodies were kept in immersion tanks."
20 432 375 600 _("His goal this time was to allow transfer of human consciousness into data streams that could meld with computer technologies. While in Cyberspace the operator's bodies were kept in immersion tanks.")
20 432 625 850 "Backed again by the military, Dr Reed began work on the NEXUS Intruder Program. After three years with little progress, the military abandoned the Nexus Project and cut Dr Reed's funding."
20 432 625 850 _("Backed again by the military, Dr Reed began work on the NEXUS Intruder Program. After three years with little progress, the military abandoned the Nexus Project and cut Dr Reed's funding.")
20 432 875 1000 "Reports from the time claim that Dr Reed was furious and vowed to have his revenge on all who got in his way."
20 432 875 1000 _("Reports from the time claim that Dr Reed was furious and vowed to have his revenge on all who got in his way.")
20 432 1025 1225 "It appears that Dr Reed may have succeeded in his goals and completed the Nexus Intruder Program."
0 0 1025 1225 "The similarity between NEXUS and Dr Reed is striking."
20 432 1025 1225 _("It appears that Dr Reed may have succeeded in his goals and completed the Nexus Intruder Program.")
0 0 1025 1225 _("The similarity between NEXUS and Dr Reed is striking.")
20 432 1290 1485 "Such an interesting history lesson. Now allow me to bring you up to date."
0 0 1290 1485 "The NEXUS Intruder Program was created in order to control fools like you."
20 432 1290 1485 _("Such an interesting history lesson. Now allow me to bring you up to date.")
0 0 1290 1485 _("The NEXUS Intruder Program was created in order to control fools like you.")
20 432 1490 1760 "It's very simple for me to infiltrate your systems and take them over. It's so simple, in fact, that you wouldn't even know I'm there. That is until I activate parts of myself etched into your core systems."
20 432 1490 1760 _("It's very simple for me to infiltrate your systems and take them over. It's so simple, in fact, that you wouldn't even know I'm there. That is until I activate parts of myself etched into your core systems.")
20 432 1770 1850 "Let's start by activating NEXUS in your core systems and see what happens!"
20 432 1770 1850 _("Let's start by activating NEXUS in your core systems and see what happens!")

View File

@ -1,5 +1,5 @@
20 432 25 200 "Commander, we are experiencing interference with our equipment."
0 0 25 200 "Normal service will be restored as soon as possible."
20 432 25 200 _("Commander, we are experiencing interference with our equipment.")
0 0 25 200 _("Normal service will be restored as soon as possible.")

View File

@ -1,9 +1,9 @@
20 432 75 165 "Not long to go now, Commander. There's no where else for you to run to."
20 432 75 165 _("Not long to go now, Commander. There's no where else for you to run to.")
20 432 210 325 "However, if you vacate this facility, then I shall let you go free, as you are no longer a threat to me."
20 432 210 325 _("However, if you vacate this facility, then I shall let you go free, as you are no longer a threat to me.")
20 432 350 425 "You have five minutes to comply or else it's frying time!"
20 432 350 425 _("You have five minutes to comply or else it's frying time!")

View File

@ -1,8 +1,8 @@
20 432 20 150 "Commander, we are under attack by NEXUS cyborgs and tanks. Please help as we...."
20 432 20 150 _("Commander, we are under attack by NEXUS cyborgs and tanks. Please help as we....")
20 432 225 360 _("...cannot hold out much longer. Repeat, please help, we cannot hold out much longer....")
20 432 225 360 "...cannot hold out much longer. Repeat, please help, we cannot hold out much longer...."

View File

@ -1,18 +1,18 @@
//pos frame
//x y start end Text
20 20 0 550 "Dusk, November 3rd, 2085"
0 0 0 550 "Earth, High Orbit"
0 0 0 550 "The Collapse"
20 20 975 1450 "January 19th, 2086"
0 0 975 1450 "North America"
0 0 975 1450 "Nuclear Winter"
20 20 1500 2000 "Midnight, April 10th, 2086"
0 0 1500 2000 "Rocky Mountains"
0 0 1500 2000 "Safety"
20 20 2300 4000 "Dawn, April 4th, 2100"
0 0 2300 4000 "North America"
0 0 2300 4000 "A New Beginning"
//pos frame
//x y start end Text
20 20 0 550 _("Dusk, November 3rd, 2085")
0 0 0 550 _("Earth, High Orbit")
0 0 0 550 _("The Collapse")
20 20 975 1450 _("January 19th, 2086")
0 0 975 1450 _("North America")
0 0 975 1450 _("Nuclear Winter")
20 20 1500 2000 _("Midnight, April 10th, 2086")
0 0 1500 2000 _("Rocky Mountains")
0 0 1500 2000 _("Safety")
20 20 2300 4000 _("Dawn, April 4th, 2100")
0 0 2300 4000 _("North America")
0 0 2300 4000 _("A New Beginning")

View File

@ -1,22 +1,22 @@
20 432 0 250 "The NASDA system was developed to protect us. It was to be the ultimate nuclear deterrent. As it turned out, it was our executioner."
20 432 0 250 _("The NASDA system was developed to protect us. It was to be the ultimate nuclear deterrent. As it turned out, it was our executioner.")
20 432 275 550 "Reports said that NASDA developed a fault during a routine systems check. Don't believe it. Someone wanted it to take us out."
20 432 275 550 _("Reports said that NASDA developed a fault during a routine systems check. Don't believe it. Someone wanted it to take us out.")
20 432 625 985 "Those nukes were targeted on every major city around the world. NASDA was programmed to start the Collapse. When the counterstrikes launched, its laser defenses and anti-missile ground sites failed."
20 432 625 985 _("Those nukes were targeted on every major city around the world. NASDA was programmed to start the Collapse. When the counterstrikes launched, its laser defenses and anti-missile ground sites failed.")
20 432 1010 1125 "The world as we knew it ended..."
20 432 1010 1125 _("The world as we knew it ended...")
20 432 1150 1475 "The Nuclear Winter hit hard. Disease and famine claimed most of us who had survived the nuclear strikes. Wars over cans of dog food took even more."
20 432 1150 1475 _("The Nuclear Winter hit hard. Disease and famine claimed most of us who had survived the nuclear strikes. Wars over cans of dog food took even more.")
20 432 1500 1650 "We'd fled Seattle early in '86. We'd heard that the Rocky Mountains were relatively rad-free."
20 432 1500 1650 _("We'd fled Seattle early in '86. We'd heard that the Rocky Mountains were relatively rad-free.")
20 432 1675 1950 "After fighting off bands of marauders we came across the base. Its personnel were dead. Killed by any one of a number of virulent diseases."
20 432 1675 1950 _("After fighting off bands of marauders we came across the base. Its personnel were dead. Killed by any one of a number of virulent diseases.")
20 432 1975 2200 "We cracked the doors, and cleared out the bodies inside."
20 432 1975 2200 _("We cracked the doors, and cleared out the bodies inside.")
20 432 2225 2560 "We knew that things would never be the same again, but we were determined to build a new world out of the ruins. We rebuilt the landing pads and brought the old systems back on-line."
20 432 2225 2560 _("We knew that things would never be the same again, but we were determined to build a new world out of the ruins. We rebuilt the landing pads and brought the old systems back on-line.")
20 432 2600 2750 "We were finally ready to begin the Project."
20 432 2600 2750 _("We were finally ready to begin the Project.")

View File

@ -1,10 +1,10 @@
20 432 500 610 "After many long months of struggle, we defeated NEXUS."
20 432 500 610 _("After many long months of struggle, we defeated NEXUS.")
20 432 620 710 "The war started by Dr Reed was over."
20 432 620 710 _("The war started by Dr Reed was over.")
20 432 720 810 "We have recovered many of the technologies we sought."
20 432 720 810 _("We have recovered many of the technologies we sought.")
20 432 820 930 "It is now time to use them to rebuild the world."
20 432 820 930 _("It is now time to use them to rebuild the world.")
20 432 940 1100 "Slowly, out of the ashes we will rise again..."
20 432 940 1100 _("Slowly, out of the ashes we will rise again...")

View File

@ -1,457 +1,456 @@
PIE 2
TYPE 200
TEXTURE 0 page-59-more-weapons.png 256 256
LEVELS 1
LEVEL 1
POINTS 161
5 18 -13
5 18 -10
8 18 -12
8 22 -14
5 22 -13
5 21 -10
8 22 -11
7 30 -12
8 25 -11
5 25 -10
5 25 -12
5 29 -11
5 29 -9
7 29 -10
5 36 -10
5 35 -8
4 34 -7
4 35 -9
8 15 -14
8 15 -11
5 16 -10
5 15 -13
5 13 -12
5 14 -10
8 13 -11
7 9 -13
7 10 -10
5 11 -9
4 10 -11
7 16 -7
6 25 -7
8 29 -8
7 21 -7
7 18 -8
3 16 -10
2 25 -10
2 29 -11
2 21 -10
3 18 -10
2 17 0
1 17 -2
2 15 0
-1 17 -2
-1 15 -2
1 15 -2
2 8 -12
3 8 -5
8 8 -8
8 5 -15
6 8 0
17 5 0
-8 5 -14
-3 8 -5
0 8 0
8 18 12
5 18 10
5 18 13
8 22 14
8 22 11
5 21 10
5 22 13
7 30 12
5 25 12
5 25 10
8 25 11
7 29 10
5 29 9
5 29 11
5 36 10
4 35 9
4 34 7
5 35 8
8 15 14
5 15 13
5 16 10
8 15 11
8 13 11
5 14 10
5 13 12
7 9 13
4 10 11
5 11 9
7 10 10
2 16 10
2 25 9
2 29 11
2 21 10
2 18 10
7 16 8
6 25 7
8 29 8
7 21 8
7 18 8
-1 17 2
1 17 2
-1 15 2
1 15 2
8 8 8
3 8 5
2 8 12
8 5 15
-3 8 5
-8 5 14
-15 18 1
-12 18 0
-15 18 -1
-17 22 0
-14 22 1
-12 21 0
-14 22 -1
-15 30 0
-14 25 -1
-11 25 0
-14 25 1
-13 29 1
-11 29 0
-13 29 -1
-12 36 0
-10 35 -1
-9 34 0
-10 35 1
-17 15 0
-14 15 -1
-12 16 0
-14 15 1
-14 13 1
-11 14 0
-14 13 -1
-15 9 0
-13 10 -1
-10 11 0
-13 10 1
-10 16 -2
-10 25 -2
-11 29 -3
-10 21 -2
-10 18 -2
-10 16 2
-10 25 2
-11 29 3
-10 21 2
-11 18 2
-2 17 0
-3 15 0
-12 8 3
-6 8 0
-12 8 -3
-17 5 0
1 18 0
0 19 -1
0 18 -1
-1 18 1
0 19 1
-1 19 0
0 19 0
-1 14 1
-2 14 0
0 14 2
1 14 0
0 14 -2
-1 14 -1
POLYGONS 289
200 3 3 6 2 70 28 65 29 66 35
200 3 3 0 4 70 28 66 35 65 29
200 3 11 7 10 62 14 66 13 64 22
200 3 13 8 7 62 14 64 22 66 13
200 3 22 21 18 64 45 65 41 70 41
200 3 24 18 19 64 45 70 41 65 41
200 3 29 24 19 58 40 64 45 65 41
200 3 29 20 23 2 44 7 43 7 47
200 3 29 19 20 2 44 7 39 7 43
200 3 31 13 12 62 75 65 71 69 75
200 3 32 6 5 50 68 51 72 48 71
200 3 34 21 22 58 40 65 41 64 45
200 3 34 23 20 12 44 7 47 7 43
200 3 34 20 21 12 44 7 43 8 39
200 3 36 12 11 69 71 62 71 65 68
200 3 37 5 4 45 71 48 71 48 74
200 3 52 49 46 24 32 38 23 33 32
200 3 50 48 47 55 24 41 45 42 36
200 3 48 51 45 41 45 16 45 32 41
200 3 52 53 49 24 32 28 23 38 23
200 3 57 60 56 70 28 65 29 66 36
200 3 57 54 58 70 28 66 36 65 29
200 3 65 61 64 62 14 66 13 64 22
200 3 67 62 61 62 14 64 22 66 13
200 3 76 75 72 64 46 65 41 70 42
200 3 78 72 73 64 46 70 42 65 41
200 3 83 78 73 58 40 64 46 65 41
200 3 83 74 77 2 44 7 43 7 47
200 3 83 73 74 2 44 7 39 7 43
200 3 85 67 66 62 75 65 71 69 75
200 3 86 60 59 45 46 48 43 48 46
200 3 88 75 76 58 40 65 41 64 46
200 3 88 77 74 12 44 7 47 7 43
200 3 88 74 75 12 44 7 43 8 39
200 3 90 66 65 69 71 62 71 65 68
200 3 91 59 58 50 49 48 46 51 45
200 3 49 101 98 38 23 24 15 33 15
200 3 102 100 99 16 2 41 1 32 6
200 3 100 50 97 41 1 55 24 42 11
200 3 49 53 101 38 23 28 23 24 15
200 3 106 109 105 70 28 66 29 66 35
200 3 106 103 107 70 28 66 35 66 29
200 3 114 110 113 62 14 66 13 64 22
200 3 116 111 110 62 14 64 22 66 13
200 3 125 124 121 65 45 66 40 70 41
200 3 127 121 122 65 45 70 41 66 40
200 3 132 127 122 58 40 65 45 66 40
200 3 132 123 126 2 44 7 43 7 47
200 3 132 122 123 2 44 7 38 7 43
200 3 134 116 115 61 71 65 68 69 71
200 3 135 109 108 29 61 24 60 27 59
200 3 137 124 125 58 40 66 40 65 45
200 3 137 126 123 12 44 7 47 7 43
200 3 137 123 124 12 44 7 43 8 38
200 3 139 115 114 69 75 62 75 65 71
200 3 140 108 107 29 56 27 59 24 57
200 3 101 52 145 24 15 24 32 19 23
200 3 51 147 146 16 45 3 23 11 29
200 3 147 102 144 3 23 16 2 11 18
200 3 101 53 52 24 15 28 23 24 32
200 3 133 115 112 54 75 57 71 57 75
200 3 115 138 112 57 71 60 75 57 75
200 3 30 12 9 54 75 57 71 57 75
200 3 12 35 9 57 71 60 75 57 75
200 3 66 89 63 57 71 60 75 57 75
200 3 139 138 115 61 70 60 75 57 71
200 3 133 134 115 54 75 53 70 57 71
200 3 30 31 12 54 75 53 70 57 71
200 3 36 35 12 61 70 60 75 57 71
200 3 84 66 63 54 75 57 71 57 75
200 3 84 85 66 54 75 53 70 57 71
200 3 90 89 66 61 70 60 75 57 71
200 3 149 154 148 42 60 41 59 43 58
200 3 150 154 149 40 60 41 59 42 60
200 3 152 154 151 42 57 41 59 40 57
200 3 151 154 153 40 57 41 59 39 58
200 3 148 154 152 43 58 41 59 42 57
200 3 153 154 150 39 58 41 59 40 60
200 3 159 160 43 58 67 58 65 60 65
200 3 44 159 43 58 68 58 67 60 65
200 3 43 156 143 60 65 58 64 58 63
200 3 43 160 156 60 65 58 65 58 64
200 3 41 159 44 55 68 58 67 58 68
200 3 41 158 159 55 68 56 67 58 67
200 3 157 158 41 55 65 56 67 55 68
200 3 96 157 41 54 65 55 65 55 68
200 3 95 157 96 55 63 55 65 54 65
200 3 95 155 157 55 63 56 64 55 65
200 3 156 155 95 58 64 56 64 55 63
200 3 143 156 95 58 63 58 64 55 63
200 3 153 150 42 39 58 40 60 40 61
200 3 142 153 42 38 58 39 58 40 61
200 3 39 152 94 44 58 42 57 43 56
200 3 39 148 152 44 58 43 58 42 57
200 3 93 153 142 40 56 39 58 38 58
200 3 93 151 153 40 56 40 57 39 58
200 3 152 151 93 42 57 40 57 40 56
200 3 94 152 93 43 56 42 57 40 56
200 3 42 149 40 40 61 42 60 43 61
200 3 42 150 149 40 61 40 60 42 60
200 3 149 148 39 42 60 43 58 44 58
200 3 40 149 39 43 61 42 60 44 58
200 3 144 101 145 11 18 24 15 19 23
200 3 144 102 101 11 18 16 2 24 15
200 3 52 51 146 24 32 16 45 11 29
200 3 145 52 146 19 23 24 32 11 29
200 3 146 128 129 61 54 67 52 62 51
200 3 146 147 128 61 54 71 59 67 52
200 3 146 129 130 61 54 62 51 58 49
200 3 145 146 130 51 54 61 54 58 49
200 3 144 131 128 61 54 62 51 67 52
200 3 147 144 128 71 59 61 54 67 52
200 3 144 130 131 61 54 58 49 62 51
200 3 144 145 130 61 54 51 54 58 49
200 3 93 140 141 22 58 11 53 11 57
200 3 95 93 141 22 60 22 58 11 57
200 3 142 108 140 38 58 27 59 29 56
200 3 93 142 140 40 56 38 58 29 56
200 3 42 136 135 22 58 11 57 11 53
200 3 42 43 136 22 58 22 60 11 57
200 3 142 135 108 38 58 29 61 27 59
200 3 142 42 135 38 58 40 61 29 61
200 3 141 107 103 11 57 6 52 6 57
200 3 141 140 107 11 57 11 53 6 52
200 3 139 114 113 60 14 62 14 64 22
200 3 138 139 113 57 23 60 14 64 22
200 3 136 105 109 11 57 6 57 6 52
200 3 135 136 109 11 53 11 57 6 52
200 3 134 111 116 60 14 64 22 62 14
200 3 134 133 111 60 14 57 23 64 22
200 3 130 126 125 58 49 60 44 65 45
200 3 131 130 125 62 51 58 49 65 45
200 3 128 125 121 67 52 65 45 70 41
200 3 128 131 125 67 52 62 51 65 45
200 3 130 127 126 58 49 65 45 60 44
200 3 130 129 127 58 49 62 51 65 45
200 3 128 121 127 67 52 70 41 65 45
200 3 129 128 127 62 51 67 52 65 45
200 3 123 104 103 61 39 61 35 66 35
200 3 124 123 103 66 40 61 39 66 35
200 3 121 103 106 70 41 66 35 70 28
200 3 121 124 103 70 41 66 40 66 35
200 3 123 105 104 61 39 66 35 61 35
200 3 123 122 105 61 39 66 40 66 35
200 3 121 106 105 70 41 70 28 66 35
200 3 122 121 105 66 40 70 41 66 35
200 3 118 117 120 72 73 70 68 74 68
200 3 119 118 120 77 73 72 73 74 68
200 3 119 114 115 55 4 62 13 58 14
200 3 119 120 114 55 4 58 3 62 13
200 3 117 110 114 61 2 66 13 62 14
200 3 120 117 114 58 4 61 2 62 14
200 3 119 115 116 55 4 58 14 62 13
200 3 118 119 116 58 3 55 4 62 13
200 3 117 116 110 61 2 62 14 66 13
200 3 117 118 116 61 2 58 4 62 14
200 3 112 107 108 60 22 66 29 61 29
200 3 112 113 107 60 22 64 22 66 29
200 3 113 106 107 64 22 70 28 66 29
200 3 113 110 106 64 22 66 13 70 28
200 3 112 108 109 60 22 61 29 66 29
200 3 111 112 109 64 22 60 22 66 29
200 3 111 109 106 64 22 66 29 70 28
200 3 110 111 106 66 13 64 22 70 28
200 3 97 49 98 42 11 38 23 33 15
200 3 97 50 49 42 11 55 24 38 23
200 3 101 102 99 24 15 16 2 32 6
200 3 98 101 99 33 15 24 15 32 6
200 3 99 79 80 60 55 66 53 62 51
200 3 99 100 79 60 55 70 59 66 53
200 3 99 80 81 60 55 62 51 58 49
200 3 98 99 81 50 55 60 55 58 49
200 3 97 82 79 60 55 62 51 66 53
200 3 100 97 79 70 59 60 55 66 53
200 3 97 81 82 60 55 58 49 62 51
200 3 97 98 81 60 55 50 55 58 49
200 3 39 91 92 31 72 20 67 19 71
200 3 41 39 92 31 74 31 72 19 71
200 3 94 59 91 43 56 48 46 50 49
200 3 39 94 91 44 58 43 56 50 49
200 3 93 87 86 31 72 19 71 20 67
200 3 93 95 87 31 72 31 74 19 71
200 3 94 86 59 43 56 45 46 48 46
200 3 94 93 86 43 56 40 56 45 46
200 3 92 58 54 19 71 15 66 14 71
200 3 92 91 58 19 71 20 67 15 66
200 3 90 65 64 60 14 62 14 64 22
200 3 89 90 64 57 23 60 14 64 22
200 3 87 56 60 19 71 14 71 15 66
200 3 86 87 60 20 67 19 71 15 66
200 3 85 62 67 59 14 64 22 62 14
200 3 85 84 62 59 14 57 23 64 22
200 3 81 77 76 58 49 60 44 64 46
200 3 82 81 76 62 51 58 49 64 46
200 3 79 76 72 66 53 64 46 70 42
200 3 79 82 76 66 53 62 51 64 46
200 3 80 78 77 62 51 64 46 60 44
200 3 81 80 77 58 49 62 51 60 44
200 3 79 72 78 66 53 70 42 64 46
200 3 80 79 78 62 51 66 53 64 46
200 3 74 55 54 61 40 61 36 66 36
200 3 75 74 54 65 41 61 40 66 36
200 3 72 54 57 70 42 66 36 70 28
200 3 72 75 54 70 42 65 41 66 36
200 3 74 56 55 61 40 66 36 61 36
200 3 74 73 56 61 40 65 41 66 36
200 3 72 57 56 70 42 70 28 66 36
200 3 73 72 56 65 41 70 42 66 36
200 3 69 68 71 72 73 70 68 75 68
200 3 70 69 71 77 73 72 73 75 68
200 3 70 65 66 55 4 62 13 58 15
200 3 70 71 65 55 4 57 3 62 13
200 3 68 61 65 61 3 66 13 62 14
200 3 71 68 65 58 4 61 3 62 14
200 3 70 66 67 55 4 58 15 62 13
200 3 69 70 67 57 3 55 4 62 13
200 3 68 67 61 61 3 62 14 66 13
200 3 68 69 67 61 3 58 4 62 14
200 3 63 58 59 60 23 65 29 61 30
200 3 63 64 58 60 23 64 22 65 29
200 3 64 57 58 64 22 70 28 65 29
200 3 64 61 57 64 22 66 13 70 28
200 3 63 59 60 60 23 61 30 65 29
200 3 62 63 60 64 22 60 23 65 29
200 3 62 60 57 64 22 65 29 70 28
200 3 61 62 57 66 13 64 22 70 28
200 3 45 52 46 32 41 24 32 33 32
200 3 45 51 52 32 41 16 45 24 32
200 3 49 50 47 38 23 55 24 42 36
200 3 46 49 47 33 32 38 23 42 36
200 3 47 25 26 61 55 66 53 62 51
200 3 47 48 25 61 55 71 59 66 53
200 3 47 26 27 61 55 62 51 58 49
200 3 46 47 27 50 54 61 55 58 49
200 3 45 28 25 61 55 62 51 66 53
200 3 48 45 25 71 59 61 55 66 53
200 3 45 27 28 61 55 58 49 62 51
200 3 45 46 27 61 55 50 54 58 49
200 3 42 37 38 27 65 16 60 15 64
200 3 43 42 38 27 67 27 65 15 64
200 3 40 5 37 43 61 48 71 45 71
200 3 42 40 37 40 61 43 61 45 71
200 3 39 33 32 27 65 15 64 16 60
200 3 39 41 33 27 65 27 67 15 64
200 3 40 32 5 43 61 50 68 48 71
200 3 40 39 32 43 61 44 58 50 68
200 3 38 4 0 15 64 11 60 10 64
200 3 38 37 4 15 64 16 60 11 60
200 3 36 11 10 60 14 62 14 64 22
200 3 35 36 10 57 23 60 14 64 22
200 3 33 2 6 15 64 10 64 11 60
200 3 32 33 6 16 60 15 64 11 60
200 3 31 8 13 60 14 64 22 62 14
200 3 31 30 8 60 14 57 23 64 22
200 3 27 23 22 58 49 60 44 64 45
200 3 28 27 22 62 51 58 49 64 45
200 3 25 22 18 66 53 64 45 70 41
200 3 25 28 22 66 53 62 51 64 45
200 3 26 24 23 62 51 64 45 60 44
200 3 27 26 23 58 49 62 51 60 44
200 3 25 18 24 66 53 70 41 64 45
200 3 26 25 24 62 51 66 53 64 45
200 3 20 1 0 61 40 61 35 66 35
200 3 21 20 0 65 41 61 40 66 35
200 3 18 0 3 70 41 66 35 70 28
200 3 18 21 0 70 41 65 41 66 35
200 3 20 2 1 61 40 66 35 61 35
200 3 20 19 2 61 40 65 41 66 35
200 3 18 3 2 70 41 70 28 66 35
200 3 19 18 2 65 41 70 41 66 35
200 3 15 14 17 75 68 77 73 72 73
200 3 16 15 17 70 68 75 68 72 73
200 3 16 11 12 55 4 62 13 58 15
200 3 16 17 11 55 4 58 3 62 13
200 3 14 7 11 61 3 66 13 62 14
200 3 17 14 11 58 4 61 3 62 14
200 3 16 12 13 55 4 58 15 62 13
200 3 15 16 13 58 3 55 4 62 13
200 3 14 13 7 61 3 62 14 66 13
200 3 14 15 13 61 3 58 4 62 14
200 3 9 4 5 60 23 65 29 61 29
200 3 9 10 4 60 23 64 22 65 29
200 3 10 3 4 64 22 70 28 65 29
200 3 10 7 3 64 22 66 13 70 28
200 3 9 5 6 60 23 61 29 65 29
200 3 8 9 6 64 22 60 23 65 29
200 3 8 6 3 64 22 65 29 70 28
200 3 7 8 3 66 13 64 22 70 28
200 3 7 8 3 66 13 64 22 70 28
PIE 3
TYPE 0
TEXTURE 0 page-59-more-weapons.png 256 256
LEVELS 1
LEVEL 1
POINTS 161
5.820343 18.497525 -13.643049
5.929425 18.497525 -10.677424
8.552274 18.497525 -12.065769
8.323437 22.407208 -14.823975
5.713160 22.052595 -13.457386
5.832816 21.732785 -10.510089
8.445075 22.052595 -11.880117
7.170735 30.633949 -12.827434
8.046700 25.971537 -11.343854
5.586686 25.457425 -10.083777
5.447934 25.971537 -12.844257
5.010649 29.987306 -11.730067
5.159731 29.353489 -9.344271
7.300430 29.987306 -10.408061
5.800132 36.283125 -10.453487
5.948721 35.586265 -8.604748
4.273375 34.889399 -7.809058
4.124786 35.586265 -9.657796
8.309192 15.265798 -14.799305
8.445092 15.782316 -11.880130
5.849064 16.298829 -10.538236
5.713165 15.782316 -13.457408
5.433493 13.118195 -12.973003
5.644869 14.111539 -10.184560
8.165420 13.118195 -11.395721
7.345890 9.297363 -13.130813
7.557267 10.290703 -10.342369
5.036715 11.284048 -9.131205
4.825341 10.290703 -11.919647
7.259029 16.233589 -7.913737
6.910462 25.227168 -7.617735
8.496007 29.909973 -8.204626
7.238285 21.669838 -7.892726
7.339394 18.432285 -8.052928
3.003687 16.243354 -10.455759
2.914981 25.250464 -10.004781
2.619673 29.926527 -11.667338
2.995730 21.682228 -10.427088
3.084048 18.442050 -10.594947
2.355653 17.338720 0.049326
1.089071 17.368020 -2.306256
2.442071 15.785081 0.049326
-1.484565 17.338720 -2.270318
-1.527775 15.785081 -2.345160
1.175490 15.814383 -2.455939
2.534493 8.196775 -12.202170
3.030678 8.291923 -5.656645
8.947358 8.196775 -8.499700
8.451172 5.865025 -15.045226
6.358185 8.291923 0.050650
17.834401 5.742517 -0.154783
-8.450366 5.742517 -14.827387
-3.529970 8.291923 -5.758087
-0.234080 8.256072 -0.001921
8.552274 18.497525 12.061931
5.929426 18.497525 10.673584
5.820345 18.497525 13.639211
8.323441 22.407208 14.820138
8.445077 22.052595 11.876275
5.832814 21.732785 10.506248
5.713162 22.052595 13.453547
7.170734 30.633949 12.823592
5.447934 25.971537 12.840416
5.586682 25.457425 10.079936
8.046704 25.971537 11.340015
7.300431 29.987306 10.404220
5.159728 29.353489 9.340430
5.010648 29.987306 11.726227
5.800135 36.283125 10.449643
4.124789 35.586265 9.653958
4.273371 34.889399 7.805213
5.948721 35.586265 8.600906
8.309194 15.265798 14.795461
5.713164 15.782316 13.453567
5.849065 16.298829 10.534395
8.445092 15.782316 11.876287
8.165420 13.118195 11.391880
5.644870 14.111539 10.180719
5.433492 13.118195 12.969160
7.345889 9.297363 13.126967
4.825338 10.290703 11.915807
5.036716 11.284048 9.127366
7.557266 10.290703 10.338526
2.871201 16.233589 10.443212
2.789140 25.227168 9.993343
2.504630 29.909973 11.659909
2.863376 21.669838 10.414735
2.951563 18.432285 10.582402
7.200325 16.243354 8.028983
6.854122 25.250464 7.726675
8.441594 29.926527 8.302211
7.179477 21.682228 8.007762
7.280685 18.442050 8.168170
-1.573328 17.338720 2.215229
1.099958 17.368020 2.296129
-1.616537 15.785081 2.290071
1.186377 15.814383 2.445810
8.947359 8.196775 8.495860
3.030675 8.291923 5.652803
2.534496 8.196775 12.198330
8.451180 5.865025 15.041385
-3.575739 8.291923 5.680862
-8.667389 5.742517 14.902377
-15.074855 18.497525 1.575357
-12.561094 18.497525 -0.001924
-15.074855 18.497525 -1.579198
-17.349113 22.407208 -0.001921
-14.860479 22.052595 1.575350
-12.367866 21.732785 -0.001923
-14.860477 22.052595 -1.579194
-15.043706 30.633949 -0.001923
-14.196876 25.971537 -1.502323
-11.875606 25.457425 -0.001924
-14.196875 25.971537 1.498479
-13.013320 29.987306 1.320085
-11.021698 29.353489 -0.001921
-13.013320 29.987306 -1.323927
-12.302510 36.283125 -0.001921
-10.775746 35.586265 -1.054970
-9.248985 34.889399 -0.001923
-10.775745 35.586265 1.051127
-17.320622 15.265798 -0.001921
-14.860498 15.782316 -1.579200
-12.400370 16.298829 -0.001922
-14.860499 15.782316 1.575359
-14.301153 13.118195 1.575358
-11.991981 14.111539 -0.001922
-14.301156 13.118195 -1.579201
-15.394015 9.297363 -0.001921
-13.084846 10.223236 -1.579201
-10.775672 11.284048 -0.001921
-13.084846 10.223236 1.575359
-10.832471 16.233589 -2.535236
-10.401843 25.227168 -2.381370
-11.702877 29.909973 -3.461043
-10.803902 21.669838 -2.527773
-10.993192 18.432285 -2.535237
-10.906252 16.243354 2.421010
-10.471340 25.250464 2.272343
-11.763504 29.926527 3.359365
-10.877446 21.682228 2.413565
-11.066972 18.442050 2.421010
-2.891268 17.368020 0.004365
-3.064107 15.814383 0.004365
-12.184094 8.196775 3.700548
-6.763593 8.291923 -0.001923
-12.184094 8.196775 -3.704389
-17.604589 5.865025 -0.001921
1.296871 18.987048 0.028375
0.548116 19.004366 -1.364157
-0.973319 18.987048 -1.342912
-1.025792 18.987048 1.308774
0.554553 19.004366 1.356599
-1.804909 19.004366 0.001795
-0.234080 19.773658 -0.001921
-1.386067 14.472895 1.907972
-2.592312 14.497315 0.003317
0.949573 14.497315 2.037749
1.995929 14.472895 0.040782
0.940500 14.497315 -2.046829
-1.312103 14.472895 -1.954518
POLYGONS 288
200 3 3 6 2 0.275764 0.112263 0.257743 0.114831 0.259296 0.140573
200 3 3 0 4 0.275764 0.112263 0.259296 0.140573 0.257743 0.114831
200 3 8 6 3 0.252938 0.086454 0.257743 0.114831 0.275764 0.112263
200 3 7 8 3 0.259070 0.052694 0.252938 0.086454 0.275764 0.112263
200 3 9 5 6 0.236130 0.090177 0.239694 0.117147 0.257743 0.114831
200 3 8 9 6 0.252938 0.086454 0.236130 0.090177 0.257743 0.114831
200 3 7 3 4 0.259070 0.052694 0.275764 0.112263 0.257743 0.114831
200 3 10 7 4 0.252938 0.086454 0.259070 0.052694 0.257743 0.114831
200 3 10 4 5 0.252938 0.086454 0.257743 0.114831 0.239694 0.117147
200 3 9 10 5 0.236130 0.090177 0.252938 0.086454 0.239694 0.117147
200 3 11 7 10 0.244368 0.057376 0.259070 0.052694 0.252938 0.086454
200 3 13 8 7 0.244368 0.057376 0.252938 0.086454 0.259070 0.052694
200 3 15 13 7 0.228166 0.016834 0.244368 0.057376 0.259070 0.052694
200 3 14 15 7 0.239221 0.011788 0.228166 0.016834 0.259070 0.052694
200 3 16 12 13 0.215511 0.018680 0.228347 0.058766 0.242768 0.054176
200 3 15 16 13 0.226566 0.013634 0.215511 0.018680 0.242768 0.054176
200 3 14 7 11 0.239221 0.011788 0.259070 0.052694 0.244368 0.057376
200 3 17 14 11 0.228166 0.016834 0.239221 0.011788 0.244368 0.057376
200 3 17 11 12 0.226566 0.013634 0.242768 0.054176 0.228347 0.058766
200 3 16 17 12 0.215511 0.018680 0.226566 0.013634 0.228347 0.058766
200 3 15 14 17 0.293186 0.269216 0.301487 0.286693 0.282140 0.286564
200 3 16 15 17 0.273839 0.269088 0.293186 0.269216 0.282140 0.286564
200 3 18 3 2 0.275557 0.163974 0.275764 0.112263 0.259296 0.140573
200 3 19 18 2 0.257744 0.160234 0.275557 0.163974 0.259296 0.140573
200 3 19 2 1 0.257744 0.160234 0.259296 0.140573 0.241094 0.140573
200 3 20 19 1 0.239930 0.156494 0.257744 0.160234 0.241094 0.140573
200 3 21 0 3 0.257744 0.160234 0.259296 0.140573 0.275764 0.112263
200 3 18 21 3 0.275557 0.163974 0.257744 0.160234 0.275764 0.112263
200 3 20 1 0 0.239930 0.156494 0.241094 0.140573 0.259296 0.140573
200 3 21 20 0 0.257744 0.160234 0.239930 0.156494 0.259296 0.140573
200 3 22 21 18 0.253693 0.179525 0.257744 0.160234 0.275557 0.163974
200 3 24 18 19 0.253693 0.179525 0.275557 0.163974 0.257744 0.160234
200 3 25 18 24 0.261607 0.207192 0.275557 0.163974 0.253693 0.179525
200 3 26 25 24 0.244886 0.199999 0.261607 0.207192 0.253693 0.179525
200 3 26 24 23 0.244886 0.199999 0.253693 0.179525 0.236973 0.172332
200 3 27 26 23 0.228165 0.192806 0.244886 0.199999 0.236973 0.172332
200 3 28 22 18 0.244886 0.199999 0.253693 0.179525 0.275557 0.163974
200 3 25 28 18 0.261607 0.207192 0.244886 0.199999 0.275557 0.163974
200 3 27 23 22 0.228165 0.192806 0.236973 0.172332 0.253693 0.179525
200 3 28 27 22 0.244886 0.199999 0.228165 0.192806 0.253693 0.179525
200 3 29 24 19 0.228577 0.156967 0.253693 0.179525 0.257744 0.160234
200 3 29 20 23 0.011164 0.173826 0.030490 0.171542 0.030479 0.186072
200 3 29 19 20 0.011164 0.173826 0.027841 0.152344 0.030490 0.171542
200 3 30 8 13 0.225459 0.091844 0.252938 0.086454 0.244368 0.057376
200 3 31 30 13 0.234879 0.057936 0.225459 0.091844 0.244368 0.057376
200 3 31 13 12 0.242693 0.293848 0.257041 0.280071 0.271001 0.293848
200 3 32 6 5 0.197412 0.266652 0.202943 0.284927 0.190970 0.278648
200 3 33 2 6 0.062167 0.252427 0.042682 0.252115 0.043706 0.235145
200 3 32 33 6 0.063070 0.236972 0.062167 0.252427 0.043706 0.235145
200 3 34 21 22 0.229111 0.156896 0.257744 0.160234 0.253693 0.179525
200 3 34 23 20 0.048956 0.173702 0.030479 0.186072 0.030490 0.171542
200 3 34 20 21 0.048956 0.173702 0.030490 0.171542 0.033139 0.152344
200 3 36 12 11 0.270332 0.280071 0.242693 0.280071 0.256957 0.266646
200 3 36 11 10 0.235318 0.057816 0.244368 0.057376 0.252938 0.086454
200 3 35 36 10 0.225962 0.091675 0.235318 0.057816 0.252938 0.086454
200 3 37 5 4 0.177967 0.278268 0.190970 0.278648 0.190422 0.292157
200 3 37 4 0 0.062719 0.236913 0.043706 0.235145 0.042682 0.252115
200 3 38 37 0 0.061814 0.252380 0.062719 0.236913 0.042682 0.252115
200 3 39 32 5 0.175033 0.230250 0.197412 0.266652 0.190970 0.278648
200 3 40 39 5 0.169228 0.241047 0.175033 0.230250 0.190970 0.278648
200 3 41 33 32 0.107351 0.265064 0.062167 0.252427 0.063070 0.236972
200 3 39 41 32 0.107557 0.257647 0.107351 0.265064 0.063070 0.236972
200 3 40 5 37 0.169228 0.241047 0.190970 0.278648 0.177967 0.278268
200 3 42 40 37 0.157432 0.240882 0.169228 0.241047 0.177967 0.278268
200 3 42 37 38 0.107133 0.257647 0.062719 0.236913 0.061814 0.252380
200 3 43 42 38 0.106927 0.265064 0.107133 0.257647 0.061814 0.252380
200 3 46 27 28 0.199114 0.214472 0.228165 0.192806 0.244886 0.199999
200 3 45 46 28 0.238364 0.215161 0.199114 0.214472 0.244886 0.199999
200 3 45 28 25 0.238364 0.215161 0.244886 0.199999 0.261607 0.207192
200 3 48 45 25 0.277613 0.232045 0.238364 0.215161 0.261607 0.207192
200 3 47 26 27 0.238364 0.215161 0.244886 0.199999 0.228165 0.192806
200 3 46 47 27 0.199114 0.214472 0.238364 0.215161 0.228165 0.192806
200 3 48 25 26 0.277613 0.232045 0.261607 0.207192 0.244886 0.199999
200 3 47 48 26 0.238364 0.215161 0.277613 0.232045 0.244886 0.199999
200 3 49 50 47 0.150584 0.092793 0.216047 0.093965 0.165353 0.141567
200 3 46 49 47 0.131602 0.125349 0.150584 0.092793 0.165353 0.141567
200 3 51 52 46 0.066111 0.177662 0.094179 0.125928 0.131602 0.125349
200 3 45 51 46 0.128772 0.162687 0.066111 0.177662 0.131602 0.125349
200 3 52 49 46 0.094179 0.125928 0.150584 0.092793 0.131602 0.125349
200 3 50 48 47 0.216047 0.093965 0.162522 0.178904 0.165353 0.141567
200 3 48 51 45 0.162522 0.178904 0.066111 0.177662 0.128772 0.162687
200 3 52 53 49 0.094179 0.125928 0.112979 0.093093 0.150584 0.092793
200 3 57 60 56 0.275228 0.112747 0.257207 0.115315 0.258760 0.141057
200 3 57 54 58 0.275228 0.112747 0.258760 0.141057 0.257207 0.115315
200 3 62 60 57 0.252402 0.086938 0.257207 0.115315 0.275228 0.112747
200 3 61 62 57 0.258534 0.053177 0.252402 0.086938 0.275228 0.112747
200 3 63 59 60 0.235594 0.090660 0.239158 0.117630 0.257207 0.115315
200 3 62 63 60 0.252402 0.086938 0.235594 0.090660 0.257207 0.115315
200 3 61 57 58 0.258534 0.053177 0.275228 0.112747 0.257207 0.115315
200 3 64 61 58 0.252402 0.086938 0.258534 0.053177 0.257207 0.115315
200 3 64 58 59 0.252402 0.086938 0.257207 0.115315 0.239158 0.117630
200 3 63 64 59 0.235594 0.090660 0.252402 0.086938 0.239158 0.117630
200 3 65 61 64 0.243832 0.057860 0.258534 0.053177 0.252402 0.086938
200 3 67 62 61 0.243832 0.057860 0.252402 0.086938 0.258534 0.053177
200 3 69 67 61 0.227630 0.017318 0.243832 0.057860 0.258534 0.053177
200 3 68 69 61 0.238685 0.012272 0.227630 0.017318 0.258534 0.053177
200 3 70 66 67 0.214975 0.019164 0.227811 0.059249 0.242232 0.054660
200 3 69 70 67 0.226030 0.014118 0.214975 0.019164 0.242232 0.054660
200 3 68 61 65 0.238685 0.012272 0.258534 0.053177 0.243832 0.057860
200 3 71 68 65 0.227630 0.017318 0.238685 0.012272 0.243832 0.057860
200 3 71 65 66 0.226030 0.014118 0.242232 0.054660 0.227811 0.059249
200 3 70 71 66 0.214975 0.019164 0.226030 0.014118 0.227811 0.059249
200 3 69 68 71 0.281983 0.286552 0.273467 0.268926 0.293042 0.268925
200 3 70 69 71 0.301558 0.286552 0.281983 0.286552 0.293042 0.268925
200 3 72 57 56 0.275021 0.164458 0.275228 0.112747 0.258760 0.141057
200 3 73 72 56 0.257208 0.160718 0.275021 0.164458 0.258760 0.141057
200 3 73 56 55 0.257208 0.160718 0.258760 0.141057 0.240558 0.141057
200 3 74 73 55 0.239394 0.156977 0.257208 0.160718 0.240558 0.141057
200 3 75 54 57 0.257208 0.160718 0.258760 0.141057 0.275228 0.112747
200 3 72 75 57 0.275021 0.164458 0.257208 0.160718 0.275228 0.112747
200 3 74 55 54 0.239394 0.156977 0.240558 0.141057 0.258760 0.141057
200 3 75 74 54 0.257208 0.160718 0.239394 0.156977 0.258760 0.141057
200 3 76 75 72 0.253157 0.180008 0.257208 0.160718 0.275021 0.164458
200 3 78 72 73 0.253157 0.180008 0.275021 0.164458 0.257208 0.160718
200 3 79 72 78 0.261071 0.207675 0.275021 0.164458 0.253157 0.180008
200 3 80 79 78 0.244350 0.200482 0.261071 0.207675 0.253157 0.180008
200 3 80 78 77 0.244350 0.200482 0.253157 0.180008 0.236437 0.172816
200 3 81 80 77 0.227629 0.193289 0.244350 0.200482 0.236437 0.172816
200 3 82 76 72 0.244350 0.200482 0.253157 0.180008 0.275021 0.164458
200 3 79 82 72 0.261071 0.207675 0.244350 0.200482 0.275021 0.164458
200 3 81 77 76 0.227629 0.193289 0.236437 0.172816 0.253157 0.180008
200 3 82 81 76 0.244350 0.200482 0.227629 0.193289 0.253157 0.180008
200 3 83 78 73 0.228041 0.157450 0.253157 0.180008 0.257208 0.160718
200 3 83 74 77 0.010896 0.173826 0.030221 0.171542 0.030211 0.186072
200 3 83 73 74 0.010896 0.173826 0.027572 0.152344 0.030221 0.171542
200 3 84 62 67 0.224922 0.092328 0.252402 0.086938 0.243832 0.057860
200 3 85 84 67 0.234343 0.058419 0.224922 0.092328 0.243832 0.057860
200 3 85 67 66 0.242693 0.293848 0.257041 0.280071 0.271001 0.293848
200 3 86 60 59 0.177360 0.182742 0.190422 0.168813 0.190970 0.182322
200 3 87 56 60 0.077976 0.278416 0.058492 0.278105 0.059515 0.261134
200 3 86 87 60 0.078880 0.262961 0.077976 0.278416 0.059515 0.261134
200 3 88 75 76 0.228575 0.157379 0.257208 0.160718 0.253157 0.180008
200 3 88 77 74 0.048687 0.173702 0.030211 0.186072 0.030221 0.171542
200 3 88 74 75 0.048687 0.173702 0.030221 0.171542 0.032870 0.152344
200 3 90 66 65 0.270332 0.280071 0.242693 0.280071 0.256957 0.266646
200 3 90 65 64 0.234782 0.058300 0.243832 0.057860 0.252402 0.086938
200 3 89 90 64 0.225426 0.092159 0.234782 0.058300 0.252402 0.086938
200 3 91 59 58 0.197143 0.193774 0.190970 0.182322 0.202943 0.176043
200 3 91 58 54 0.078529 0.262902 0.059515 0.261134 0.058492 0.278105
200 3 92 91 54 0.077624 0.278369 0.078529 0.262902 0.058492 0.278105
200 3 93 86 59 0.157025 0.220323 0.177360 0.182742 0.190970 0.182322
200 3 94 93 59 0.169278 0.219952 0.157025 0.220323 0.190970 0.182322
200 3 95 87 86 0.123160 0.291053 0.077976 0.278416 0.078880 0.262961
200 3 93 95 86 0.123367 0.283636 0.123160 0.291053 0.078880 0.262961
200 3 94 59 91 0.169278 0.219952 0.190970 0.182322 0.197143 0.193774
200 3 39 94 91 0.175033 0.230250 0.169278 0.219952 0.197143 0.193774
200 3 39 91 92 0.122943 0.283636 0.078529 0.262902 0.077624 0.278369
200 3 41 39 92 0.122737 0.291053 0.122943 0.283636 0.077624 0.278369
200 3 98 81 82 0.198578 0.214955 0.227629 0.193289 0.244350 0.200482
200 3 97 98 82 0.237828 0.215644 0.198578 0.214955 0.244350 0.200482
200 3 97 82 79 0.237828 0.215644 0.244350 0.200482 0.261071 0.207675
200 3 100 97 79 0.277077 0.232528 0.237828 0.215644 0.261071 0.207675
200 3 99 80 81 0.237828 0.215644 0.244350 0.200482 0.227629 0.193289
200 3 98 99 81 0.198578 0.214955 0.237828 0.215644 0.227629 0.193289
200 3 100 79 80 0.277077 0.232528 0.261071 0.207675 0.244350 0.200482
200 3 99 100 80 0.237828 0.215644 0.277077 0.232528 0.244350 0.200482
200 3 101 102 99 0.093918 0.060677 0.064873 0.008074 0.128772 0.023499
200 3 98 101 99 0.131602 0.060837 0.093918 0.060677 0.128772 0.023499
200 3 50 49 98 0.216047 0.093965 0.150584 0.092793 0.131602 0.060837
200 3 97 50 98 0.165353 0.044619 0.216047 0.093965 0.131602 0.060837
200 3 49 101 98 0.150584 0.092793 0.093918 0.060677 0.131602 0.060837
200 3 102 100 99 0.064873 0.008074 0.162523 0.007282 0.128772 0.023499
200 3 100 50 97 0.162523 0.007282 0.216047 0.093965 0.165353 0.044619
200 3 49 53 101 0.150584 0.092793 0.112979 0.093093 0.093918 0.060677
200 3 106 109 105 0.276038 0.111820 0.258018 0.114388 0.259570 0.140130
200 3 106 103 107 0.276038 0.111820 0.259570 0.140130 0.258018 0.114388
200 3 111 109 106 0.253212 0.086011 0.258018 0.114388 0.276038 0.111820
200 3 110 111 106 0.259344 0.052251 0.253212 0.086011 0.276038 0.111820
200 3 112 108 109 0.236404 0.089734 0.239969 0.116704 0.258018 0.114388
200 3 111 112 109 0.253212 0.086011 0.236404 0.089734 0.258018 0.114388
200 3 110 106 107 0.259344 0.052251 0.276038 0.111820 0.258018 0.114388
200 3 113 110 107 0.253212 0.086011 0.259344 0.052251 0.258018 0.114388
200 3 113 107 108 0.253212 0.086011 0.258018 0.114388 0.239969 0.116704
200 3 112 113 108 0.236404 0.089734 0.253212 0.086011 0.239969 0.116704
200 3 114 110 113 0.244642 0.056933 0.259344 0.052251 0.253212 0.086011
200 3 116 111 110 0.244642 0.056933 0.253212 0.086011 0.259344 0.052251
200 3 118 116 110 0.228440 0.016391 0.244642 0.056933 0.259344 0.052251
200 3 117 118 110 0.239495 0.011345 0.228440 0.016391 0.259344 0.052251
200 3 119 115 116 0.215785 0.018237 0.228621 0.058323 0.243042 0.053733
200 3 118 119 116 0.226840 0.013191 0.215785 0.018237 0.243042 0.053733
200 3 117 110 114 0.239495 0.011345 0.259344 0.052251 0.244642 0.056933
200 3 120 117 114 0.228440 0.016391 0.239495 0.011345 0.244642 0.056933
200 3 120 114 115 0.226840 0.013191 0.243042 0.053733 0.228621 0.058323
200 3 119 120 115 0.215785 0.018237 0.226840 0.013191 0.228621 0.058323
200 3 118 117 120 0.281998 0.286363 0.273507 0.268912 0.292915 0.268858
200 3 119 118 120 0.301405 0.286310 0.281998 0.286363 0.292915 0.268858
200 3 121 106 105 0.275831 0.163531 0.276038 0.111820 0.259570 0.140130
200 3 122 121 105 0.258018 0.159791 0.275831 0.163531 0.259570 0.140130
200 3 122 105 104 0.258018 0.159791 0.259570 0.140130 0.241368 0.140130
200 3 123 122 104 0.240204 0.156051 0.258018 0.159791 0.241368 0.140130
200 3 124 103 106 0.258018 0.159791 0.259570 0.140130 0.276038 0.111820
200 3 121 124 106 0.275831 0.163531 0.258018 0.159791 0.276038 0.111820
200 3 123 104 103 0.240204 0.156051 0.241368 0.140130 0.259570 0.140130
200 3 124 123 103 0.258018 0.159791 0.240204 0.156051 0.259570 0.140130
200 3 125 124 121 0.253968 0.179082 0.258018 0.159791 0.275831 0.163531
200 3 127 121 122 0.253968 0.179082 0.275831 0.163531 0.258018 0.159791
200 3 128 121 127 0.261881 0.206749 0.275831 0.163531 0.253968 0.179082
200 3 129 128 127 0.245160 0.200044 0.261881 0.206749 0.253968 0.179082
200 3 129 127 126 0.245160 0.200044 0.253968 0.179082 0.237247 0.171889
200 3 130 129 126 0.228440 0.192363 0.245160 0.200044 0.237247 0.171889
200 3 131 125 121 0.245160 0.200044 0.253968 0.179082 0.275831 0.163531
200 3 128 131 121 0.261881 0.206749 0.245160 0.200044 0.275831 0.163531
200 3 130 126 125 0.228440 0.192363 0.237247 0.171889 0.253968 0.179082
200 3 131 130 125 0.245160 0.200044 0.228440 0.192363 0.253968 0.179082
200 3 132 127 122 0.228851 0.156523 0.253968 0.179082 0.258018 0.159791
200 3 132 123 126 0.011312 0.173640 0.030637 0.171355 0.030627 0.185885
200 3 132 122 123 0.011312 0.173640 0.027988 0.152158 0.030637 0.171355
200 3 133 111 116 0.225733 0.091401 0.253212 0.086011 0.244642 0.056933
200 3 134 133 116 0.235153 0.057493 0.225733 0.091401 0.244642 0.056933
200 3 134 116 115 0.242050 0.280102 0.256397 0.266324 0.270357 0.280102
200 3 135 109 108 0.114718 0.242062 0.096125 0.237714 0.107549 0.230485
200 3 136 105 109 0.043887 0.224199 0.024403 0.223887 0.025426 0.206917
200 3 135 136 109 0.044791 0.208744 0.043887 0.224199 0.025426 0.206917
200 3 137 124 125 0.229385 0.156453 0.258018 0.159791 0.253968 0.179082
200 3 137 126 123 0.049103 0.173515 0.030627 0.185885 0.030637 0.171355
200 3 137 123 124 0.049103 0.173515 0.030637 0.171355 0.033285 0.152158
200 3 139 115 114 0.270357 0.293527 0.242719 0.293527 0.256983 0.280102
200 3 139 114 113 0.235592 0.057373 0.244642 0.056933 0.253212 0.086011
200 3 138 139 113 0.226236 0.091233 0.235592 0.057373 0.253212 0.086011
200 3 140 108 107 0.114381 0.219414 0.107549 0.230485 0.096125 0.223256
200 3 140 107 103 0.044440 0.208685 0.025426 0.206917 0.024403 0.223887
200 3 141 140 103 0.043535 0.224152 0.044440 0.208685 0.024403 0.223887
200 3 42 135 108 0.157432 0.240882 0.114718 0.242062 0.107549 0.230485
200 3 142 42 108 0.150984 0.230456 0.157432 0.240882 0.107549 0.230485
200 3 43 136 135 0.089072 0.236835 0.043887 0.224199 0.044791 0.208744
200 3 42 43 135 0.089278 0.229419 0.089072 0.236835 0.044791 0.208744
200 3 142 108 140 0.150984 0.230456 0.107549 0.230485 0.114381 0.219414
200 3 93 142 140 0.157025 0.220323 0.150984 0.230456 0.114381 0.219414
200 3 93 140 141 0.088854 0.229419 0.044440 0.208685 0.043535 0.224152
200 3 95 93 141 0.088648 0.236835 0.088854 0.229419 0.043535 0.224152
200 3 145 130 131 0.199388 0.214029 0.228440 0.192363 0.245160 0.200044
200 3 144 145 131 0.238638 0.214718 0.199388 0.214029 0.245160 0.200044
200 3 144 131 128 0.238638 0.214718 0.245160 0.200044 0.261881 0.206749
200 3 147 144 128 0.277888 0.231602 0.238638 0.214718 0.261881 0.206749
200 3 146 129 130 0.238638 0.214718 0.245160 0.200044 0.228440 0.192363
200 3 145 146 130 0.199388 0.214029 0.238638 0.214718 0.228440 0.192363
200 3 147 128 129 0.277888 0.231602 0.261881 0.206749 0.245160 0.200044
200 3 146 147 129 0.238638 0.214718 0.277888 0.231602 0.245160 0.200044
200 3 52 51 146 0.094179 0.125928 0.066111 0.177662 0.044813 0.114213
200 3 145 52 146 0.075733 0.093093 0.094179 0.125928 0.044813 0.114213
200 3 102 101 145 0.064873 0.008074 0.093918 0.060677 0.075733 0.093093
200 3 144 102 145 0.044813 0.071973 0.064873 0.008074 0.075733 0.093093
200 3 101 52 145 0.093918 0.060677 0.094179 0.125928 0.075733 0.093093
200 3 51 147 146 0.066111 0.177662 0.013893 0.093093 0.044813 0.114213
200 3 147 102 144 0.013893 0.093093 0.064873 0.008074 0.044813 0.071973
200 3 101 53 52 0.093918 0.060677 0.112979 0.093093 0.094179 0.125928
200 3 133 115 112 0.212919 0.294286 0.224687 0.277917 0.224700 0.294657
200 3 115 138 112 0.224687 0.277917 0.235944 0.294236 0.224700 0.294657
200 3 30 12 9 0.212919 0.294217 0.224687 0.277848 0.224700 0.294589
200 3 12 35 9 0.224687 0.277848 0.235944 0.294167 0.224700 0.294589
200 3 66 89 63 0.224667 0.277958 0.235923 0.294276 0.224679 0.294698
200 3 139 138 115 0.238666 0.273548 0.235944 0.294236 0.224687 0.277917
200 3 133 134 115 0.212919 0.294286 0.210358 0.273548 0.224687 0.277917
200 3 30 31 12 0.212919 0.294217 0.210358 0.273479 0.224687 0.277848
200 3 36 35 12 0.238666 0.273479 0.235944 0.294167 0.224687 0.277848
200 3 84 66 63 0.212898 0.294327 0.224667 0.277958 0.224679 0.294698
200 3 84 85 66 0.212898 0.294327 0.210338 0.273588 0.224667 0.277958
200 3 90 89 66 0.238645 0.273588 0.235923 0.294276 0.224667 0.277958
200 3 149 148 39 0.166748 0.236729 0.170180 0.230346 0.175033 0.230250
200 3 40 149 39 0.169228 0.241047 0.166748 0.236729 0.175033 0.230250
200 3 150 149 40 0.159775 0.236631 0.166748 0.236729 0.169228 0.241047
200 3 42 150 40 0.157432 0.240882 0.159775 0.236631 0.169228 0.241047
200 3 152 151 93 0.166778 0.224258 0.159535 0.224478 0.157025 0.220323
200 3 94 152 93 0.169278 0.219952 0.166778 0.224258 0.157025 0.220323
200 3 151 153 142 0.159535 0.224478 0.155964 0.230468 0.150984 0.230456
200 3 93 151 142 0.157025 0.220323 0.159535 0.224478 0.150984 0.230456
200 3 148 152 94 0.170175 0.230312 0.166776 0.224298 0.169328 0.219924
200 3 39 148 94 0.175059 0.230249 0.170175 0.230312 0.169328 0.219924
200 3 153 150 42 0.155964 0.230468 0.159775 0.236631 0.157432 0.240882
200 3 142 153 42 0.150984 0.230456 0.155964 0.230468 0.157432 0.240882
200 3 149 154 148 0.166748 0.236729 0.163163 0.230485 0.170180 0.230346
200 3 150 154 149 0.159775 0.236631 0.163163 0.230485 0.166748 0.236729
200 3 152 154 151 0.166778 0.224258 0.163163 0.230485 0.159535 0.224478
200 3 151 154 153 0.159535 0.224478 0.163163 0.230485 0.155964 0.230468
200 3 148 154 152 0.170180 0.230346 0.163163 0.230485 0.166778 0.224258
200 3 153 154 150 0.155964 0.230468 0.163163 0.230485 0.159775 0.236631
200 3 156 155 95 0.227125 0.251646 0.221165 0.252256 0.218204 0.247186
200 3 143 156 95 0.229722 0.247186 0.227125 0.251646 0.218204 0.247186
200 3 155 157 96 0.221165 0.252256 0.217468 0.257553 0.212188 0.257609
200 3 95 155 96 0.218204 0.247186 0.221165 0.252256 0.212188 0.257609
200 3 157 158 41 0.217468 0.257553 0.221105 0.262626 0.218145 0.267702
200 3 96 157 41 0.212188 0.257609 0.217468 0.257553 0.218145 0.267702
200 3 158 159 44 0.221105 0.262626 0.227288 0.263166 0.229981 0.267568
200 3 41 158 44 0.218145 0.267702 0.221105 0.262626 0.229981 0.267568
200 3 160 156 143 0.229586 0.257489 0.227125 0.251646 0.229722 0.247186
200 3 43 160 143 0.235341 0.257486 0.229586 0.257489 0.229722 0.247186
200 3 159 160 43 0.227288 0.263166 0.229586 0.257489 0.235341 0.257486
200 3 44 159 43 0.229981 0.267568 0.227288 0.263166 0.235341 0.257486

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 44 KiB

View File

@ -2,15 +2,13 @@ stamp:
touch stamp
%.wz: $(srcdir)/% stamp
(cd $(srcdir)/$(notdir $<) && zip -ru0 $(abs_builddir)/$@ $(filter-out stamp,$(filter-out $<,$(^:$</%=%))) -x '*svn*' || [ $$? -eq 12 ] && true) # zip returns 12 on "nothing to do"
zip -T $@
(cd $(srcdir)/$(notdir $<) && $(ZIP) -ru0 $(abs_builddir)/$@ $(filter-out stamp,$(filter-out $<,$(^:$</%=%))) -x '*svn*' || [ $$? -eq 12 ] && true) # zip returns 12 on "nothing to do"
$(ZIP) -T $@
rm -f stamp
DYDOAILIST = \
multiplay \
images \
messages \
stats
images
DYDOAIARCHIVE = dydo-ai.wz
@ -41,16 +39,21 @@ NTWLIST = \
NTWARCHIVE = ntw.wz
CLEANFILES = $(DYDOAIARCHIVE) $(OLD110ARCHIVE) $(NTWARCHIVE)
SEMPERFILIST = multiplay
SEMPERFIARCHIVE = semperfi.wz
CLEANFILES = $(DYDOAIARCHIVE) $(OLD110ARCHIVE) $(NTWARCHIVE) $(SEMPERFIARCHIVE)
$(DYDOAIARCHIVE): $(DYDOAILIST:%=$(basename $(DYDOAIARCHIVE))/%)
$(OLD110ARCHIVE): $(OLD110LIST:%=$(basename $(OLD110ARCHIVE))/%)
$(NTWARCHIVE): $(NTWLIST:%=$(basename $(NTWARCHIVE))/%)
$(SEMPERFIARCHIVE): $(SEMPERFILIST:%=$(basename $(SEMPERFIARCHIVE))/%)
multiplaymodsdir = $(pkgdatadir)/mods/multiplay
nodist_multiplaymods_DATA = $(DYDOAIARCHIVE) $(OLD110ARCHIVE) $(NTWARCHIVE)
nodist_multiplaymods_DATA = $(DYDOAIARCHIVE) $(OLD110ARCHIVE) $(NTWARCHIVE) $(SEMPERFIARCHIVE)
dist-hook: $(DYDOAIARCHIVE) $(OLD110ARCHIVE) $(NTWARCHIVE)
unzip -u $(DYDOAIARCHIVE) -d $(DESTDIR)$(distdir)/$(basename $(DYDOAIARCHIVE))
unzip -u $(OLD110ARCHIVE) -d $(DESTDIR)$(distdir)/$(basename $(OLD110ARCHIVE))
unzip -u $(NTWARCHIVE) -d $(DESTDIR)$(distdir)/$(basename $(NTWARCHIVE))
dist-hook: $(DYDOAIARCHIVE) $(OLD110ARCHIVE) $(NTWARCHIVE) $(SEMPERFIARCHIVE)
$(UNZIP) -u $(DYDOAIARCHIVE) -d $(DESTDIR)$(distdir)/$(basename $(DYDOAIARCHIVE))
$(UNZIP) -u $(OLD110ARCHIVE) -d $(DESTDIR)$(distdir)/$(basename $(OLD110ARCHIVE))
$(UNZIP) -u $(NTWARCHIVE) -d $(DESTDIR)$(distdir)/$(basename $(NTWARCHIVE))
$(UNZIP) -u $(SEMPERFIARCHIVE) -d $(DESTDIR)$(distdir)/$(basename $(SEMPERFIARCHIVE))

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.7 KiB

After

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 288 KiB

After

Width:  |  Height:  |  Size: 286 KiB

View File

@ -1,2 +0,0 @@
END,0,1,1,end.ogg,0,0,0000
WIN,0,1,1,victory.ogg,0,0,0000

File diff suppressed because it is too large Load Diff

View File

@ -3,12 +3,12 @@
// Generic vlo for each computer player - skirmish games
/////////////////////////////////////////////////////////////////////
script "player0.slo"
script "ai.slo"
run
{
player INT 0
// Version 2.0.01
// Version 2.1
// the version of the .vlo files is not related to the one of the .slo files
//
//
@ -121,7 +121,10 @@ AIstrenght - CHANGE DYDO STRENGHT, it affects game difficulty in 4 and 8 players
RippleRockets WEAPON "Rocket-IDF"
ScourgeMissle WEAPON "Missile-A-T"
SeraphMissile WEAPON "Missile-MdArt"
ArchangelMissile WEAPON "Missile-HvyArt"
ArchangelMissile WEAPON "Missile-HvyArt"
FlashLight WEAPON "Laser3BEAMMk1"
PulseLaser WEAPON "Laser2PULSEMk1"
HeavyLaser WEAPON "HeavyLaser"
HoverProp PROPULSION "hover01"
@ -179,7 +182,7 @@ AIstrenght - CHANGE DYDO STRENGHT, it affects game difficulty in 4 and 8 players
CyborgLegs RESEARCHSTAT "R-Cyborg-Legs01"
VTOLPadRes RESEARCHSTAT "R-Struc-VTOLPad"
AASite RESEARCHSTAT "R-Defense-AASite-QuadBof"//Cyclone AA Site
HurricaneAASite RESEARCHSTAT "R-Defense-AASite-QuadMg1"
HurricaneAASite RESEARCHSTAT "R-Defense-AASite-QuadMg1" //Hurricane AA Site
CycloneAASite RESEARCHSTAT "R-Defense-AASite-QuadBof"
WhirlwindAASite RESEARCHSTAT "R-Defense-AASite-QuadRotMg"
@ -270,16 +273,16 @@ AIstrenght - CHANGE DYDO STRENGHT, it affects game difficulty in 4 and 8 players
structs[3] STRUCTURESTAT "A0VTolFactory1"
// General 1
structsLimits[0][0] INT 3
structsLimits[0][1] INT 4
structsLimits[0][2] INT 3
structsLimits[0][3] INT 3
structsLimits[0][0] INT 3 //FACT
structsLimits[0][1] INT 4 //RES
structsLimits[0][2] INT 3 //CYB
structsLimits[0][3] INT 2 //VTOL
// General 2 VTOL
structsLimits[1][0] INT 3
structsLimits[1][1] INT 3
structsLimits[1][1] INT 2
structsLimits[1][2] INT 3
structsLimits[1][3] INT 3
structsLimits[1][3] INT 4
// General 3 Turtle
structsLimits[2][0] INT 2
@ -293,7 +296,7 @@ AIstrenght - CHANGE DYDO STRENGHT, it affects game difficulty in 4 and 8 players
structsLimits[3][2] INT 5
structsLimits[3][3] INT 1
numDefStructs INT 13
numDefStructs INT 11
defStructs[0] STRUCTURESTAT "GuardTower1"//*MG3Mk1 $Machinegun Guard Tower
defStructs[1] STRUCTURESTAT "PillBox1"//Machinegun Bunker
defStructs[2] STRUCTURESTAT "PillBox5"//Flamer Bunker
@ -301,12 +304,10 @@ AIstrenght - CHANGE DYDO STRENGHT, it affects game difficulty in 4 and 8 players
defStructs[4] STRUCTURESTAT "GuardTower5"//Lancer Tower
defStructs[5] STRUCTURESTAT "PillBox6"//Lancer Bunker
defStructs[6] STRUCTURESTAT "PillBox4"//Light Cannon Bunker
defStructs[7] STRUCTURESTAT "Emplacement-MortarPit02"
defStructs[8] STRUCTURESTAT "Emplacement-HeavyLaser" //Heavy Laser Emplacement
defStructs[9] STRUCTURESTAT "Emplacement-Howitzer105"
defStructs[10] STRUCTURESTAT "Emplacement-HvyATrocket"
defStructs[11] STRUCTURESTAT "Emplacement-PulseLaser"
defStructs[12] STRUCTURESTAT "Emplacement-Rail2"
defStructs[7] STRUCTURESTAT "Emplacement-RotMor" //*Pepperpot Pit [range 9-18]
defStructs[8] STRUCTURESTAT "Emplacement-HvyATrocket"
defStructs[9] STRUCTURESTAT "Emplacement-PulseLaser"
defStructs[10] STRUCTURESTAT "Emplacement-Rail2"
// wall structs - NOT BUILT YET
@ -363,24 +364,33 @@ AIstrenght - CHANGE DYDO STRENGHT, it affects game difficulty in 4 and 8 players
// cyborg templates
numSuperCyb INT 17
superCyb[0] TEMPLATE "Cyb-Hvy-A-T"//Super Scourge Cyborg $235
superCyb[1] TEMPLATE "Cyb-Hvy-RailGunner"//Super Rail-Gunner $240
superCyb[2] TEMPLATE "Cyb-Hvy-PulseLsr"//Super Pulse Laser Cyborg $150
superCyb[3] TEMPLATE "Cyb-Hvy-TK"//Super Tank-Killer Cyborg $250
superCyb[4] TEMPLATE "Cyb-Hvy-HPV"//Super HPV Cyborg $150
superCyb[5] TEMPLATE "Cyb-Hvy-Acannon"//Super Auto-Cannon Cyborg $125
superCyb[6] TEMPLATE "Cyb-Hvy-Mcannon"//Super Heavy-Gunner $125
//normal cyborgs
superCyb[7] TEMPLATE "MP-Cyb-ATmiss-GRD"//Scourge $250
superCyb[8] TEMPLATE "MP-Cyb-Needle-GRD" //Needle Gunner $160
superCyb[9] TEMPLATE "CyborgRkt01Ground"//lancer $125
superCyb[10] TEMPLATE "MP-Cyb-Laser1-GRD"// Flashlight Gunner $100
superCyb[11] TEMPLATE "CyborgRotMgGround" //Assault Gunner $90
superCyb[12] TEMPLATE "Cyb-Thermite"//Thermite Flamer $80 (370 hitPoints)
superCyb[13] TEMPLATE "Cyb-Gren"//Grenadier $80 (370 hitPoints)
superCyb[14] TEMPLATE "CyborgCannon01Grd"//heavy Gunner $70 (380 hitPoints)
superCyb[15] TEMPLATE "CyborgFlamer01Grd"//flamer
superCyb[16] TEMPLATE "CyborgChain01Ground"//Machinegunner(235 hitPoints)
//Anti tank
superCyb[0] TEMPLATE "Cyb-Hvy-A-T" //[1][36]Super Scourge Cyborg
superCyb[3] TEMPLATE "Cyb-Hvy-TK" //[1][0]Super Tank-Killer Cyborg
superCyb[7] TEMPLATE "MP-Cyb-ATmiss-GRD"//[1][21]Scourge
superCyb[9] TEMPLATE "CyborgRkt01Ground"//[0][24]Lancer
//All Rounder
superCyb[1] TEMPLATE "Cyb-Hvy-RailGunner" //[1][2] Super Rail-Gunner
superCyb[4] TEMPLATE "Cyb-Hvy-HPV" //[0][51] Super HPV Cyborg
superCyb[5] TEMPLATE "Cyb-Hvy-Acannon" //[0][50] Super Auto-Cannon Cyborg
superCyb[6] TEMPLATE "Cyb-Hvy-Mcannon" //[0][49] Super Heavy-Gunner
//Anti Personnel
//Flamers-Lasers
superCyb[2] TEMPLATE "Cyb-Hvy-PulseLsr" //[1][1]Super Pulse Laser Cyborg
superCyb[10] TEMPLATE "MP-Cyb-Laser1-GRD" //[0][59] Flashlight Gunner
superCyb[12] TEMPLATE "Cyb-Thermite" //Thermite Flamer
superCyb[15] TEMPLATE "CyborgFlamer01Grd" //flamer
//Guns
superCyb[11] TEMPLATE "CyborgRotMgGround" //[0][25] Assault Gunner
superCyb[14] TEMPLATE "CyborgCannon01Grd" //heavy Gunner
superCyb[16] TEMPLATE "CyborgChain01Ground" //Machinegunner
//Kinetic
superCyb[8] TEMPLATE "MP-Cyb-Needle-GRD" //[0][58]Needle Gunner
superCyb[13] TEMPLATE "Cyb-Gren" //Grenadier
/////////////////////////////////////////////////////////////////////
// VTOL TEMPLATES
@ -552,22 +562,22 @@ AIstrenght - CHANGE DYDO STRENGHT, it affects game difficulty in 4 and 8 players
researchCheap[0][0] RESEARCHSTAT "R-Sys-MobileRepairTurret01" //$18 repair turret, pre-researched
researchCheap[0][1] RESEARCHSTAT "R-Struc-Research-Module" //$37
researchCheap[0][2] RESEARCHSTAT "R-Struc-Research-Upgrade02" //160%
researchCheap[0][3] RESEARCHSTAT "R-Struc-RepairFacility" //$75 - repair facility {powMod - factModule-RepTurret}
researchCheap[0][4] RESEARCHSTAT "R-Defense-Tower06" //$75 - Mini-Rocket Tower
researchCheap[0][5] RESEARCHSTAT "R-Wpn-MG-Damage01" //$18 - 125% - Hardened MG Bullets
researchCheap[0][6] RESEARCHSTAT "R-Struc-Materials01" //$37 - 135% - Reinforced Base Structure Materials
researchCheap[0][7] RESEARCHSTAT "R-Cyborg-Metals01" //$37 - 135% - Cyborg Composite Alloys
researchCheap[0][8] RESEARCHSTAT "R-Struc-Factory-Upgrade01" //$75 - 160% - Automated Manufacturing {factMod-powMod}
researchCheap[0][9] RESEARCHSTAT "R-Wpn-Cannon-Damage01" //$37 - 125% - HEAT Cannon Shells
researchCheap[0][10] RESEARCHSTAT "R-Vehicle-Engine01" //$37 - 105% - Fuel Injection Engine
researchCheap[0][11] RESEARCHSTAT "R-Defense-WallUpgrade01"//$37 - 135% - Improved Hardcrete
researchCheap[0][12] RESEARCHSTAT "R-Vehicle-Body11" //$37 - Phyton , Cobra {facMod, powMod}
researchCheap[0][13] RESEARCHSTAT "R-Defense-WallTower01" //$37 - Heavy Machinegun Hardpoint
researchCheap[0][14] RESEARCHSTAT "R-Defense-WallTower02" //$46 - "Light Cannon HardPoint" {Light Cannon, HardCrete}
researchCheap[0][15] RESEARCHSTAT "R-Wpn-Rocket02-MRL" //$75 - {POD, HE Mini-Rockets Mk2}
researchCheap[0][16] RESEARCHSTAT "R-Defense-Pillbox06" //$46 - Lancer Tower {MRL, Lancer AT Rocket, Stabilized Mini-Rockets}
researchCheap[0][17] RESEARCHSTAT "R-Vehicle-Prop-Tracks" //$75 - Tracked Propulsion - {Composite Alloys Mk2, FactMod, ResearchMod}
researchCheap[0][18] RESEARCHSTAT "R-Defense-AASite-QuadMg1"//Hurricane AA site
researchCheap[0][3] RESEARCHSTAT "R-Struc-RepairFacility" //repair facility {powMod - factModule-RepTurret}
researchCheap[0][4] RESEARCHSTAT "R-Defense-Tower06" //Mini-Rocket Tower
researchCheap[0][5] RESEARCHSTAT "R-Wpn-MG-Damage01" //Hardened MG Bullets
researchCheap[0][6] RESEARCHSTAT "R-Struc-Materials01" //Reinforced Base Structure Materials
researchCheap[0][7] RESEARCHSTAT "R-Cyborg-Metals01" //Cyborg Composite Alloys
researchCheap[0][8] RESEARCHSTAT "R-Struc-Factory-Upgrade01" //Automated Manufacturing {factMod-powMod}
researchCheap[0][9] RESEARCHSTAT "R-Wpn-Cannon-Damage01" //HEAT Cannon Shells
researchCheap[0][10] RESEARCHSTAT "R-Vehicle-Engine01" //Fuel Injection Engine
researchCheap[0][11] RESEARCHSTAT "R-Defense-WallUpgrade01"//Improved Hardcrete
researchCheap[0][12] RESEARCHSTAT "R-Defense-AASite-QuadBof"//Cyclone AA site
researchCheap[0][13] RESEARCHSTAT "R-Vehicle-Body11" //$37 - Phyton , Cobra {facMod, powMod}
researchCheap[0][14] RESEARCHSTAT "R-Defense-WallTower01" //$37 - Heavy Machinegun Hardpoint
researchCheap[0][15] RESEARCHSTAT "R-Defense-WallTower02" //$46 - "Light Cannon HardPoint" {Light Cannon, HardCrete}
researchCheap[0][16] RESEARCHSTAT "R-Wpn-Rocket02-MRL" //$75 - {POD, HE Mini-Rockets Mk2}
researchCheap[0][17] RESEARCHSTAT "R-Defense-Pillbox06" //$46 - Lancer Tower {MRL, Lancer AT Rocket, Stabilized Mini-Rockets}
researchCheap[0][18] RESEARCHSTAT "R-Vehicle-Prop-Tracks" //$75 - Tracked Propulsion - {Composite Alloys Mk2, FactMod, ResearchMod}
researchCheap[0][19] RESEARCHSTAT "R-Defense-MortarPit" //$37 - Mortar Pit {hardcrete,facMod}
researchCheap[0][20] RESEARCHSTAT "R-Sys-CBSensor-Tower01" //CB Tower

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,273 +0,0 @@
//
// Skirmish Base Script.
//
// contains the rules for starting and ending a game.
// as well as warning messages.
// alex lee. pumpkin studios 99.
//
public STRUCTURESTAT command;
public STRUCTURESTAT factory;
public STRUCTURESTAT wall;
public STRUCTURESTAT cornerWall;
public STRUCTURESTAT oilDerrick;
public STRUCTURESTAT powerGen;
public STRUCTURESTAT research;
public STRUCTURESTAT commandrelay;
public STRUCTURESTAT cybfac;
public STRUCTURESTAT vtolfac;
////////
// starting technologies.
public int numCleanTech, numBaseTech, numDefTech, numBaseComp;
public RESEARCHSTAT defTech[50];
// research topics
public int numBaseRes;
public RESEARCHSTAT baseRes[10];
// Other Stuff
private int count;
private int playnum;
private bool gamewon,gameLost;
// Base Under Attack
private STRUCTURE hitStruc;
private BASEOBJ attackerObj;
private int t;
public SOUND attackSnd1;
public INTMESSAGE endMsg, winMsg;
public CONSTRUCT CyborgSpade;
public REPAIR CyborgRepair;
// /////////////////////////////////////////////////////////////////
trigger endConditions(every, 100);
// /////////////////////////////////////////////////////////////////
//this event is called once the game has initialised itself
event initialisedEvent(CALL_GAMEINIT)
{
//set up the reticule buttons
addReticuleButton(OPTIONS);
addReticuleButton(CANCEL);
addReticuleButton(BUILD);
addReticuleButton(MANUFACTURE);
addReticuleButton(RESEARCH);
addReticuleButton(INTELMAP);
addReticuleButton(DESIGN);
playnum = 0;
while (playnum < 8)
{
enableStructure(command ,playnum); //make structures available to build
enableStructure(factory ,playnum);
// enableStructure(wall ,playnum);
// enableStructure(cornerWall ,playnum);
enableStructure(oilDerrick ,playnum);
enableStructure(powerGen ,playnum);
enableStructure(research ,playnum);
setStructureLimits(factory, 5, playnum); // set structure limits
setStructureLimits(powerGen,8, playnum);
setStructureLimits(research,5, playnum);
setStructureLimits(command, 1, playnum);
setStructureLimits(commandrelay,1, playnum);
setStructureLimits(cybfac, 5, playnum);
setStructureLimits(vtolfac, 5, playnum);
playnum = playnum+ 1;
}
applyLimitSet(); // set limit options
}
event initialisedEventTwo(CALL_GAMEINIT)
{
playnum = 0;
while (playnum < 8)
{
count = 0;
while (count < numBaseRes)
{
enableResearch(baseRes[count], playnum);
count = count +1;
}
// enable cyborgs components that can't be enabled with research
// making cyborg templates stay unavailable for AI
makeComponentAvailable(CyborgSpade, playnum);
makeComponentAvailable(CyborgRepair, playnum);
if(multiPlayerBaseType == CAMP_CLEAN)
{
setPowerLevel(1300,playnum);
count = 0;
while (count < numCleanTech)
{
completeResearch(defTech[count], playnum);
count = count +1;
}
}
else if(multiPlayerBaseType == CAMP_BASE)
{
setPowerLevel(2500,playnum);
count = 0;
while (count < numBaseTech)
{
completeResearch(defTech[count], playnum);
count = count +1;
}
}
else
{
setPowerLevel(2500,playnum);
count = 0;
while (count < numDefTech)
{
completeResearch(defTech[count], playnum);
count = count +1;
}
}
playnum = playnum+ 1;
}
}
// /////////////////////////////////////////////////////////////////
// END CONDITIONS
event checkEndConditions (endConditions)
{
// Losing Conditions
if( ( not anyDroidsLeft(selectedPlayer))
and ( not anyFactoriesLeft(selectedPlayer))
)
{
gameLost = TRUE;
/* If teams enabled check if all team members have lost */
if(multiPlayerGameType == SKIRMISH and multiPlayerAlliancesType == ALLIANCES_TEAMS)
{
playnum = 0;
while (playnum < multiPlayerMaxPlayers)
{
if((playnum != selectedPlayer)
and allianceExistsBetween(selectedPlayer , playnum))
{
if(anyDroidsLeft(playnum) or anyFactoriesLeft(playnum))
{
gameLost = FALSE; //someone from our team still alive
playnum = multiPlayerMaxPlayers; //jump out
}
}
playnum = playnum + 1;
}
}
if(gameLost)
{
gameOverMessage(endMsg, MISS_MSG, 0, FALSE);
setEventTrigger(checkEndConditions, inactive);
}
}
// Winning Conditions
gamewon = TRUE;
/* Skirmish */
if(multiPlayerGameType == SKIRMISH)
{
// check if all enemies defeated
playnum = 0;
while (playnum < multiPlayerMaxPlayers)
{
if((playnum != selectedPlayer)
and (not allianceExistsBetween(selectedPlayer , playnum)) //checking enemy player
)
{
if(anyDroidsLeft(playnum) or anyFactoriesLeft(playnum))
{
gamewon = FALSE; //one of the enemies still alive
playnum = multiPlayerMaxPlayers; //jump out
}
}
playnum = playnum + 1;
}
}
else /* All other game types */
{
// Check if all AIs were defeated
count = 0;
while (count < multiPlayerMaxPlayers)
{
if ( (count != selectedPlayer) and not(isHumanPlayer(count)) )
{
if( anyDroidsLeft(count) or anyFactoriesLeft(count) )
{
gamewon = FALSE; //some of the AIs still alive
}
}
count = count + 1;
}
if(gamewon == TRUE)
{
gamewon = FALSE;
if(dominatingAlliance()) //if all humans are allied
{
gamewon = TRUE;
}
}
}
if(gamewon == TRUE)
{
gameOverMessage(winMsg, MISS_MSG, 0, TRUE);
setEventTrigger(checkEndConditions, inactive);
}
}
// /////////////////////////////////////////////////////////////////
// WARNING MESSAGES
// Base Under Attack
event baseHit(CALL_STRUCT_ATTACKED, selectedPlayer, ref hitStruc, ref attackerObj)
{
if (t >= 10)
{
t=0;
if (hitStruc != NULLOBJECT)
{
playSoundPos(attackSnd1, selectedPlayer, hitStruc.x, hitStruc.y, hitStruc.z); //show position if still alive
}
else
{
playSound(attackSnd1, selectedPlayer);
}
}
}
event everySec(every, 10)
{
t=t+1;
}
//go to where the structure being attacked is on CTRL B
event seeBaseHit(CALL_MISSION_END)
{
if (hitStruc!=NULLOBJECT)
{
centreView(hitStruc);
t=0; //flag known about!
}
}

View File

@ -1,95 +0,0 @@
//
// variable value file for skirmish games.
// contains the basic requirements for sk game.
// alex lee. pumpkin 99.
//
script "rules.slo"
run
{
endMsg INTMESSAGE "END"
winMsg INTMESSAGE "WIN"
//structures
command STRUCTURESTAT "A0CommandCentre"
factory STRUCTURESTAT "A0LightFactory"
wall STRUCTURESTAT "A0HardcreteMk1Wall"
cornerWall STRUCTURESTAT "A0HardcreteMk1CWall"
oilDerrick STRUCTURESTAT "A0ResourceExtractor"
powerGen STRUCTURESTAT "A0PowerGenerator"
research STRUCTURESTAT "A0ResearchFacility"
commandrelay STRUCTURESTAT "A0ComDroidControl"
cybfac STRUCTURESTAT "A0CyborgFactory"
vtolfac STRUCTURESTAT "A0VTolFactory1"
// Technologies
numCleanTech int 5 // do x for clean
numBaseTech int 20 // do x for base
numDefTech int 42 // do x for defensive
defTech[0] RESEARCHSTAT "R-Vehicle-Prop-Wheels"
defTech[1] RESEARCHSTAT "R-Sys-Spade1Mk1"
defTech[2] RESEARCHSTAT "R-Vehicle-Body01"
defTech[3] RESEARCHSTAT "R-Comp-SynapticLink"
defTech[4] RESEARCHSTAT "R-Cyborg-Legs01"
defTech[5] RESEARCHSTAT "R-Wpn-MG1Mk1"
defTech[6] RESEARCHSTAT "R-Defense-HardcreteWall"
defTech[7] RESEARCHSTAT "R-Vehicle-Prop-Wheels"
defTech[8] RESEARCHSTAT "R-Sys-Spade1Mk1"
defTech[9] RESEARCHSTAT "R-Struc-Factory-Cyborg"
defTech[10] RESEARCHSTAT "R-Cyborg-Wpn-MG"
defTech[11] RESEARCHSTAT "R-Defense-Pillbox01"
defTech[12] RESEARCHSTAT "R-Defense-Tower01"
defTech[13] RESEARCHSTAT "R-Vehicle-Body01"
defTech[14] RESEARCHSTAT "R-Sys-Engineering01"
defTech[15] RESEARCHSTAT "R-Struc-CommandRelay"
defTech[16] RESEARCHSTAT "R-Vehicle-Prop-Halftracks"
defTech[17] RESEARCHSTAT "R-Comp-CommandTurret01"
defTech[18] RESEARCHSTAT "R-Sys-Sensor-Turret01"
defTech[19] RESEARCHSTAT "R-Wpn-Flamer01Mk1"
defTech[20] RESEARCHSTAT "R-Vehicle-Body05"
defTech[21] RESEARCHSTAT "R-Struc-Research-Module"
defTech[22] RESEARCHSTAT "R-Struc-PowerModuleMk1"
defTech[23] RESEARCHSTAT "R-Struc-Factory-Module"
defTech[24] RESEARCHSTAT "R-Struc-RepairFacility"
defTech[25] RESEARCHSTAT "R-Sys-MobileRepairTurret01"
defTech[26] RESEARCHSTAT "R-Vehicle-Engine01"
defTech[27] RESEARCHSTAT "R-Cyborg-Wpn-Cannon"
defTech[28] RESEARCHSTAT "R-Cyborg-Wpn-Flamer"
defTech[29] RESEARCHSTAT "R-Wpn-MG3Mk1"
defTech[30] RESEARCHSTAT "R-Wpn-Cannon1Mk1"
defTech[31] RESEARCHSTAT "R-Wpn-Mortar01Lt"
defTech[32] RESEARCHSTAT "R-Defense-Pillbox05"
defTech[33] RESEARCHSTAT "R-Defense-TankTrap01"
defTech[34] RESEARCHSTAT "R-Defense-WallTower02"
defTech[35] RESEARCHSTAT "R-Sys-Sensor-Tower01"
defTech[36] RESEARCHSTAT "R-Defense-Pillbox04"
defTech[37] RESEARCHSTAT "R-Wpn-MG2Mk1"
defTech[38] RESEARCHSTAT "R-Wpn-Rocket05-MiniPod"
defTech[39] RESEARCHSTAT "R-Wpn-MG-Damage01"
defTech[40] RESEARCHSTAT "R-Wpn-Rocket-Damage01"
defTech[41] RESEARCHSTAT "R-Defense-WallTower01"
/////////////////////////////////////////////////////////////////////////
// Available Research Topics.
numBaseRes int 3 // do x for base
baseRes[0] RESEARCHSTAT "R-Sys-Sensor-Turret01"
baseRes[1] RESEARCHSTAT "R-Wpn-MG1Mk1"
baseRes[2] RESEARCHSTAT "R-Sys-Engineering01"
CyborgSpade CONSTRUCT "CyborgSpade" //cyborg construction component
CyborgRepair REPAIR "CyborgRepair" //cyborg repair component
/////////////////////////////////////////////////////////////////////////
// Other Guff.
/* Base Under Attack */
attackSnd1 SOUND "pcv337.ogg"
}

View File

@ -1,132 +0,0 @@
script "skTech.slo"
run
{
//ALWAYS MAKE THIS THE SAME AS THE INDEX OF THE LAST ENTRY IN THE camTech[] array
numCamTech int 115
initialPowerCl int 1000
initialPowerBa int 2000
initialPowerDe int 3000
camTech [0] RESEARCHSTAT "R-Comp-CommandTurret01"
camTech [1] RESEARCHSTAT "R-Comp-SynapticLink"
camTech [2] RESEARCHSTAT "R-Cyborg-Legs01"
camTech [3] RESEARCHSTAT "R-Cyborg-Metals01"
camTech [4] RESEARCHSTAT "R-Cyborg-Metals02"
camTech [5] RESEARCHSTAT "R-Cyborg-Metals03"
camTech [6] RESEARCHSTAT "R-Cyborg-Wpn-Cannon"
camTech [7] RESEARCHSTAT "R-Cyborg-Wpn-Flamer"
camTech [8] RESEARCHSTAT "R-Cyborg-Wpn-MG"
camTech [9] RESEARCHSTAT "R-Cyborg-Wpn-Rocket"
camTech [10] RESEARCHSTAT "R-Defense-HardcreteWall"
camTech [11] RESEARCHSTAT "R-Defense-MortarPit"
camTech [12] RESEARCHSTAT "R-Defense-MRL"
camTech [13] RESEARCHSTAT "R-Defense-Pillbox01"
camTech [14] RESEARCHSTAT "R-Defense-Pillbox04"
camTech [15] RESEARCHSTAT "R-Defense-Pillbox05"
camTech [16] RESEARCHSTAT "R-Defense-Pillbox06"
camTech [17] RESEARCHSTAT "R-Defense-TankTrap01"
camTech [18] RESEARCHSTAT "R-Defense-Tower01"
camTech [19] RESEARCHSTAT "R-Defense-Tower06"
camTech [20] RESEARCHSTAT "R-Defense-WallTower01"
camTech [21] RESEARCHSTAT "R-Defense-WallTower02"
camTech [22] RESEARCHSTAT "R-Defense-WallTower03"
camTech [23] RESEARCHSTAT "R-Defense-WallTower04"
camTech [24] RESEARCHSTAT "R-Defense-WallTower06"
camTech [25] RESEARCHSTAT "R-Defense-WallUpgrade01"
camTech [26] RESEARCHSTAT "R-Defense-WallUpgrade02"
camTech [27] RESEARCHSTAT "R-Defense-WallUpgrade03"
camTech [28] RESEARCHSTAT "R-Struc-CommandRelay"
camTech [29] RESEARCHSTAT "R-Struc-Factory-Cyborg"
camTech [30] RESEARCHSTAT "R-Struc-Factory-Cyborg-Upgrade01"
camTech [31] RESEARCHSTAT "R-Struc-Factory-Cyborg-Upgrade02"
camTech [32] RESEARCHSTAT "R-Struc-Factory-Cyborg-Upgrade03"
camTech [33] RESEARCHSTAT "R-Struc-Factory-Module"
camTech [34] RESEARCHSTAT "R-Struc-Factory-Upgrade01"
camTech [35] RESEARCHSTAT "R-Struc-Factory-Upgrade02"
camTech [36] RESEARCHSTAT "R-Struc-Factory-Upgrade03"
camTech [37] RESEARCHSTAT "R-Struc-Materials01"
camTech [38] RESEARCHSTAT "R-Struc-Materials02"
camTech [39] RESEARCHSTAT "R-Struc-Materials03"
camTech [40] RESEARCHSTAT "R-Struc-PowerModuleMk1"
camTech [41] RESEARCHSTAT "R-Struc-RepairFacility"
camTech [42] RESEARCHSTAT "R-Struc-Research-Module"
camTech [43] RESEARCHSTAT "R-Struc-Research-Upgrade01"
camTech [44] RESEARCHSTAT "R-Struc-Research-Upgrade02"
camTech [45] RESEARCHSTAT "R-Struc-Research-Upgrade03"
camTech [46] RESEARCHSTAT "R-Struc-RprFac-Upgrade01"
camTech [47] RESEARCHSTAT "R-Struc-RprFac-Upgrade02"
camTech [48] RESEARCHSTAT "R-Struc-RprFac-Upgrade03"
camTech [49] RESEARCHSTAT "R-Sys-CBSensor-Tower01"
camTech [50] RESEARCHSTAT "R-Sys-Engineering01"
camTech [51] RESEARCHSTAT "R-Sys-MobileRepairTurret01"
camTech [52] RESEARCHSTAT "R-Sys-Sensor-Tower01"
camTech [53] RESEARCHSTAT "R-Sys-Sensor-Turret01"
camTech [54] RESEARCHSTAT "R-Sys-Sensor-Upgrade01"
camTech [55] RESEARCHSTAT "R-Sys-Spade1Mk1"
camTech [56] RESEARCHSTAT "R-Vehicle-Body01"
camTech [57] RESEARCHSTAT "R-Vehicle-Body05"
camTech [58] RESEARCHSTAT "R-Vehicle-Body11"
camTech [59] RESEARCHSTAT "R-Vehicle-Engine01"
camTech [60] RESEARCHSTAT "R-Vehicle-Engine02"
camTech [61] RESEARCHSTAT "R-Vehicle-Engine03"
camTech [62] RESEARCHSTAT "R-Vehicle-Metals01"
camTech [63] RESEARCHSTAT "R-Vehicle-Metals02"
camTech [64] RESEARCHSTAT "R-Vehicle-Metals03"
camTech [65] RESEARCHSTAT "R-Vehicle-Prop-Halftracks"
camTech [66] RESEARCHSTAT "R-Vehicle-Prop-Hover"
camTech [67] RESEARCHSTAT "R-Vehicle-Prop-Tracks"
camTech [68] RESEARCHSTAT "R-Vehicle-Prop-Wheels"
camTech [69] RESEARCHSTAT "R-Wpn-Cannon-Damage01"
camTech [70] RESEARCHSTAT "R-Wpn-Cannon-Damage02"
camTech [71] RESEARCHSTAT "R-Wpn-Cannon-Damage03"
camTech [72] RESEARCHSTAT "R-Wpn-Cannon1Mk1"
camTech [73] RESEARCHSTAT "R-Wpn-Cannon2Mk1"
camTech [74] RESEARCHSTAT "R-Wpn-Cannon3Mk1"
camTech [75] RESEARCHSTAT "R-Wpn-Flamer-Damage01"
camTech [76] RESEARCHSTAT "R-Wpn-Flamer-Damage02"
camTech [77] RESEARCHSTAT "R-Wpn-Flamer-Damage03"
camTech [78] RESEARCHSTAT "R-Wpn-Flamer-ROF01"
camTech [79] RESEARCHSTAT "R-Wpn-Flamer01Mk1"
camTech [80] RESEARCHSTAT "R-Wpn-MG-Damage01"
camTech [81] RESEARCHSTAT "R-Wpn-MG-Damage02"
camTech [82] RESEARCHSTAT "R-Wpn-MG-Damage03"
//camTech [83] RESEARCHSTAT "R-Wpn-MG-Damage04"
camTech [83] RESEARCHSTAT "R-Defense-HvyMor"
camTech [84] RESEARCHSTAT "R-Wpn-MG-ROF01"
camTech [85] RESEARCHSTAT "R-Wpn-MG1Mk1"
camTech [86] RESEARCHSTAT "R-Wpn-MG2Mk1"
camTech [87] RESEARCHSTAT "R-Wpn-MG3Mk1"
camTech [88] RESEARCHSTAT "R-Wpn-Mortar-Damage01"
camTech [89] RESEARCHSTAT "R-Wpn-Mortar-Damage02"
camTech [90] RESEARCHSTAT "R-Wpn-Mortar-Damage03"
camTech [91] RESEARCHSTAT "R-Wpn-Mortar01Lt"
camTech [92] RESEARCHSTAT "R-Wpn-Rocket-Damage01"
camTech [93] RESEARCHSTAT "R-Wpn-Rocket-Damage02"
camTech [94] RESEARCHSTAT "R-Wpn-Rocket-Damage03"
camTech [95] RESEARCHSTAT "R-Wpn-Rocket-ROF01"
camTech [96] RESEARCHSTAT "R-Wpn-Rocket-ROF02"
camTech [97] RESEARCHSTAT "R-Wpn-Rocket01-LtAT"
camTech [98] RESEARCHSTAT "R-Wpn-Rocket02-MRL"
camTech [99] RESEARCHSTAT "R-Wpn-Rocket05-MiniPod"
camTech [100] RESEARCHSTAT "R-Wpn-RocketSlow-Damage01"
camTech [101] RESEARCHSTAT "R-Wpn-RocketSlow-Damage02"
camTech [102] RESEARCHSTAT "R-Wpn-RocketSlow-Damage03"
//additional completed research
camTech [103] RESEARCHSTAT "R-Vehicle-Body04"
camTech [104] RESEARCHSTAT "R-Vehicle-Body08"
camTech [105] RESEARCHSTAT "R-Wpn-Mortar02Hvy"
//camTech [106] RESEARCHSTAT "R-Wpn-Rocket06-IDF"
camTech [106] RESEARCHSTAT "R-Wpn-AAGun03"
camTech [107] RESEARCHSTAT "R-Sys-Sensor-Tower02"
camTech [108] RESEARCHSTAT "R-Vehicle-Prop-VTOL"
camTech [109] RESEARCHSTAT "R-Struc-VTOLFactory"
camTech [110] RESEARCHSTAT "R-Struc-VTOLPad"
camTech [111] RESEARCHSTAT "R-Wpn-Bomb01"
camTech [112] RESEARCHSTAT "R-Defense-AASite-QuadMg1"
camTech [113] RESEARCHSTAT "R-Cyborg-Sys-ComEng"
camTech [114] RESEARCHSTAT "R-Cyborg-Sys-Mechanic"
camTech [115] RESEARCHSTAT "R-Comp-CommandTurret02"
}

View File

@ -1,292 +0,0 @@
script "skTech.slo"
run
{
//ALWAYS MAKE THIS THE SAME AS THE INDEX OF THE LAST ENTRY IN THE camTech[] array
numCamTech int 253
//ALWAYS MAKE THIS THE ONE MORE THAN THE INDEX OF THE LAST ENTRY IN THE camTech[] array
numCamTechB int 17
initialPowerCl int 2000
initialPowerBa int 3000
initialPowerDe int 4000
// tech level three
camTech [0] RESEARCHSTAT "R-Wpn-RocketSlow-ROF03"
// tech level all
camTech [1] RESEARCHSTAT "R-Defense-HardcreteWall"
camTech [2] RESEARCHSTAT "R-Sys-MobileRepairTurret01"
camTech [3] RESEARCHSTAT "R-Sys-Sensor-Tower01"
camTech [4] RESEARCHSTAT "R-Sys-Sensor-Turret01"
camTech [5] RESEARCHSTAT "R-Sys-Sensor-Upgrade01"
camTech [6] RESEARCHSTAT "R-Sys-Sensor-Upgrade02"
camTech [7] RESEARCHSTAT "R-Vehicle-Body09"
camTech [8] RESEARCHSTAT "R-Vehicle-Prop-VTOL"
camTech [9] RESEARCHSTAT "R-Wpn-Cannon-Accuracy02"
camTech [10] RESEARCHSTAT "R-Wpn-Rocket01-LtAT"
camTech [11] RESEARCHSTAT "R-Wpn-Rocket03-HvAT"
camTech [12] RESEARCHSTAT "R-Wpn-Rocket-Accuracy02"
camTech [13] RESEARCHSTAT "R-Wpn-Rocket-ROF03"
camTech [14] RESEARCHSTAT "R-Wpn-RocketSlow-Accuracy03"
//tech level one
camTech [15] RESEARCHSTAT "R-Comp-CommandTurret01"
camTech [16] RESEARCHSTAT "R-Comp-SynapticLink"
camTech [17] RESEARCHSTAT "R-Cyborg-Metals01"
camTech [18] RESEARCHSTAT "R-Cyborg-Metals02"
camTech [19] RESEARCHSTAT "R-Cyborg-Wpn-Cannon"
camTech [20] RESEARCHSTAT "R-Cyborg-Wpn-Flamer"
camTech [21] RESEARCHSTAT "R-Cyborg-Wpn-MG"
camTech [22] RESEARCHSTAT "R-Cyborg-Wpn-Rocket"
camTech [23] RESEARCHSTAT "R-Defense-Pillbox01"
camTech [24] RESEARCHSTAT "R-Defense-Pillbox04"
camTech [25] RESEARCHSTAT "R-Defense-Pillbox05"
camTech [26] RESEARCHSTAT "R-Defense-Pillbox06"
camTech [27] RESEARCHSTAT "R-Defense-TankTrap01"
camTech [28] RESEARCHSTAT "R-Defense-Tower01"
camTech [29] RESEARCHSTAT "R-Defense-Tower06"
camTech [30] RESEARCHSTAT "R-Defense-WallTower02"
camTech [31] RESEARCHSTAT "R-Defense-WallTower03"
camTech [32] RESEARCHSTAT "R-Defense-WallTower04"
camTech [33] RESEARCHSTAT "R-Defense-WallUpgrade01"
camTech [34] RESEARCHSTAT "R-Struc-CommandRelay"
camTech [35] RESEARCHSTAT "R-Struc-Factory-Cyborg"
camTech [36] RESEARCHSTAT "R-Struc-Factory-Cyborg-Upgrade01"
camTech [37] RESEARCHSTAT "R-Struc-Factory-Cyborg-Upgrade02"
camTech [38] RESEARCHSTAT "R-Struc-Factory-Module"
camTech [39] RESEARCHSTAT "R-Struc-Factory-Upgrade01"
camTech [40] RESEARCHSTAT "R-Struc-Factory-Upgrade02"
camTech [41] RESEARCHSTAT "R-Struc-Materials01"
camTech [42] RESEARCHSTAT "R-Struc-Materials02"
camTech [43] RESEARCHSTAT "R-Struc-PowerModuleMk1"
camTech [44] RESEARCHSTAT "R-Struc-RepairFacility"
camTech [45] RESEARCHSTAT "R-Struc-Research-Module"
camTech [46] RESEARCHSTAT "R-Struc-Research-Upgrade01"
camTech [47] RESEARCHSTAT "R-Struc-Research-Upgrade02"
camTech [48] RESEARCHSTAT "R-Struc-RprFac-Upgrade01"
camTech [49] RESEARCHSTAT "R-Struc-RprFac-Upgrade02"
camTech [50] RESEARCHSTAT "R-Sys-Spade1Mk1"
camTech [51] RESEARCHSTAT "R-Vehicle-Body01"
camTech [52] RESEARCHSTAT "R-Vehicle-Body04"
camTech [53] RESEARCHSTAT "R-Vehicle-Body05"
camTech [54] RESEARCHSTAT "R-Vehicle-Body08"
camTech [55] RESEARCHSTAT "R-Vehicle-Body11"
camTech [56] RESEARCHSTAT "R-Vehicle-Body12"
camTech [57] RESEARCHSTAT "R-Vehicle-Engine01"
camTech [58] RESEARCHSTAT "R-Vehicle-Engine02"
camTech [59] RESEARCHSTAT "R-Vehicle-Metals01"
camTech [60] RESEARCHSTAT "R-Vehicle-Metals02"
camTech [61] RESEARCHSTAT "R-Vehicle-Prop-Halftracks"
camTech [62] RESEARCHSTAT "R-Vehicle-Prop-Hover"
camTech [63] RESEARCHSTAT "R-Vehicle-Prop-Tracks"
camTech [64] RESEARCHSTAT "R-Vehicle-Prop-Wheels"
camTech [65] RESEARCHSTAT "R-Wpn-Cannon1Mk1"
camTech [66] RESEARCHSTAT "R-Wpn-Cannon2Mk1"
camTech [67] RESEARCHSTAT "R-Wpn-Cannon3Mk1"
camTech [68] RESEARCHSTAT "R-Wpn-Cannon-Damage01"
camTech [69] RESEARCHSTAT "R-Wpn-Cannon-Damage02"
camTech [70] RESEARCHSTAT "R-Wpn-Flamer01Mk1"
camTech [71] RESEARCHSTAT "R-Wpn-Flamer-Damage01"
camTech [72] RESEARCHSTAT "R-Wpn-MG1Mk1"
camTech [73] RESEARCHSTAT "R-Wpn-MG-Damage01"
camTech [74] RESEARCHSTAT "R-Wpn-MG-Damage02"
camTech [75] RESEARCHSTAT "R-Wpn-MG-Damage03"
camTech [76] RESEARCHSTAT "R-Wpn-Mortar01Lt"
camTech [77] RESEARCHSTAT "R-Wpn-Mortar-Damage01"
camTech [78] RESEARCHSTAT "R-Wpn-Mortar-Damage02"
camTech [79] RESEARCHSTAT "R-Wpn-Rocket05-MiniPod"
camTech [80] RESEARCHSTAT "R-Wpn-Rocket-Accuracy01"
camTech [81] RESEARCHSTAT "R-Wpn-Rocket-Damage01"
camTech [82] RESEARCHSTAT "R-Wpn-Rocket-Damage02"
camTech [83] RESEARCHSTAT "R-Wpn-Rocket-ROF01"
camTech [84] RESEARCHSTAT "R-Wpn-RocketSlow-Accuracy01"
camTech [85] RESEARCHSTAT "R-Wpn-RocketSlow-Damage01"
camTech [86] RESEARCHSTAT "R-Wpn-RocketSlow-Damage02"
// tech level one-two
camTech [87] RESEARCHSTAT "R-Cyborg-Legs01"
camTech [88] RESEARCHSTAT "R-Cyborg-Metals03"
camTech [89] RESEARCHSTAT "R-Defense-MortarPit"
camTech [90] RESEARCHSTAT "R-Defense-MRL"
camTech [91] RESEARCHSTAT "R-Defense-WallTower01"
camTech [92] RESEARCHSTAT "R-Defense-WallTower06"
camTech [93] RESEARCHSTAT "R-Defense-WallUpgrade02"
camTech [94] RESEARCHSTAT "R-Defense-WallUpgrade03"
camTech [95] RESEARCHSTAT "R-Struc-Factory-Cyborg-Upgrade03"
camTech [96] RESEARCHSTAT "R-Struc-Factory-Upgrade03"
camTech [97] RESEARCHSTAT "R-Struc-Materials03"
camTech [98] RESEARCHSTAT "R-Struc-Research-Upgrade03"
camTech [99] RESEARCHSTAT "R-Struc-RprFac-Upgrade03"
camTech [100] RESEARCHSTAT "R-Sys-Engineering01"
camTech [101] RESEARCHSTAT "R-Vehicle-Engine03"
camTech [102] RESEARCHSTAT "R-Vehicle-Metals03"
camTech [103] RESEARCHSTAT "R-Wpn-AAGun03"
camTech [104] RESEARCHSTAT "R-Wpn-Cannon-Accuracy01"
camTech [105] RESEARCHSTAT "R-Wpn-Cannon-Damage03"
camTech [106] RESEARCHSTAT "R-Wpn-Flamer-Damage02"
camTech [107] RESEARCHSTAT "R-Wpn-Flamer-Damage03"
camTech [108] RESEARCHSTAT "R-Wpn-Flamer-ROF01"
camTech [109] RESEARCHSTAT "R-Wpn-MG2Mk1"
camTech [110] RESEARCHSTAT "R-Wpn-MG3Mk1"
camTech [111] RESEARCHSTAT "R-Wpn-MG-ROF01"
camTech [112] RESEARCHSTAT "R-Wpn-Mortar02Hvy"
camTech [113] RESEARCHSTAT "R-Wpn-Mortar-Acc01"
camTech [114] RESEARCHSTAT "R-Wpn-Mortar-Damage03"
camTech [115] RESEARCHSTAT "R-Wpn-Mortar-ROF01"
camTech [116] RESEARCHSTAT "R-Wpn-Rocket02-MRL"
camTech [117] RESEARCHSTAT "R-Wpn-Rocket-Damage03"
camTech [118] RESEARCHSTAT "R-Wpn-Rocket-ROF02"
camTech [119] RESEARCHSTAT "R-Wpn-RocketSlow-Accuracy02"
camTech [120] RESEARCHSTAT "R-Wpn-RocketSlow-Damage03"
// tech level two
camTech [121] RESEARCHSTAT "R-Cyborg-Armor-Heat01"
camTech [122] RESEARCHSTAT "R-Cyborg-Metals04"
camTech [123] RESEARCHSTAT "R-Cyborg-Metals05"
camTech [124] RESEARCHSTAT "R-Cyborg-Wpn-RotMG-Grd"
camTech [125] RESEARCHSTAT "R-Defense-AASite-QuadBof"
camTech [126] RESEARCHSTAT "R-Defense-AASite-QuadMg1"
camTech [127] RESEARCHSTAT "R-Defense-AASite-QuadRotMg"
camTech [128] RESEARCHSTAT "R-Defense-Emplacement-HPVcannon"
camTech [129] RESEARCHSTAT "R-Defense-Howitzer"
camTech [130] RESEARCHSTAT "R-Defense-HvyHowitzer"
camTech [131] RESEARCHSTAT "R-Defense-HvyMor"
camTech [132] RESEARCHSTAT "R-Defense-IDFRocket"
camTech [133] RESEARCHSTAT "R-Defense-RotCannon"
camTech [134] RESEARCHSTAT "R-Defense-RotMG"
camTech [135] RESEARCHSTAT "R-Defense-RotMor"
camTech [136] RESEARCHSTAT "R-Defense-Wall-RotMg"
camTech [137] RESEARCHSTAT "R-Defense-WallTower-HvyFlamer"
camTech [138] RESEARCHSTAT "R-Defense-WallUpgrade04"
camTech [139] RESEARCHSTAT "R-Defense-WallUpgrade05"
camTech [140] RESEARCHSTAT "R-Defense-Wall-VulcanCan"
camTech [141] RESEARCHSTAT "R-Struc-Factory-Cyborg-Upgrade04"
camTech [142] RESEARCHSTAT "R-Struc-Factory-Cyborg-Upgrade05"
camTech [143] RESEARCHSTAT "R-Struc-Factory-Upgrade04"
camTech [144] RESEARCHSTAT "R-Struc-Factory-Upgrade05"
camTech [145] RESEARCHSTAT "R-Struc-Materials04"
camTech [146] RESEARCHSTAT "R-Struc-Materials05"
camTech [147] RESEARCHSTAT "R-Struc-Research-Upgrade04"
camTech [148] RESEARCHSTAT "R-Struc-Research-Upgrade05"
camTech [149] RESEARCHSTAT "R-Struc-RprFac-Upgrade04"
camTech [150] RESEARCHSTAT "R-Struc-RprFac-Upgrade05"
camTech [151] RESEARCHSTAT "R-Struc-VTOLFactory"
camTech [152] RESEARCHSTAT "R-Struc-VTOLFactory-Upgrade01"
camTech [153] RESEARCHSTAT "R-Struc-VTOLFactory-Upgrade02"
camTech [154] RESEARCHSTAT "R-Struc-VTOLPad"
camTech [155] RESEARCHSTAT "R-Struc-VTOLPad-Upgrade01"
camTech [156] RESEARCHSTAT "R-Struc-VTOLPad-Upgrade02"
camTech [157] RESEARCHSTAT "R-Sys-Sensor-Tower02"
camTech [158] RESEARCHSTAT "R-Sys-VTOLCBS-Turret01"
camTech [159] RESEARCHSTAT "R-Vehicle-Armor-Heat01"
camTech [160] RESEARCHSTAT "R-Vehicle-Body02"
camTech [161] RESEARCHSTAT "R-Vehicle-Body06"
camTech [162] RESEARCHSTAT "R-Vehicle-Engine04"
camTech [163] RESEARCHSTAT "R-Vehicle-Engine05"
camTech [164] RESEARCHSTAT "R-Vehicle-Metals04"
camTech [165] RESEARCHSTAT "R-Vehicle-Metals05"
camTech [166] RESEARCHSTAT "R-Wpn-AAGun02"
camTech [167] RESEARCHSTAT "R-Wpn-AAGun04"
camTech [168] RESEARCHSTAT "R-Wpn-AAGun-Accuracy01"
camTech [169] RESEARCHSTAT "R-Wpn-AAGun-Damage01"
camTech [170] RESEARCHSTAT "R-Wpn-AAGun-Damage02"
camTech [171] RESEARCHSTAT "R-Wpn-AAGun-ROF01"
camTech [172] RESEARCHSTAT "R-Wpn-AAGun-ROF02"
camTech [173] RESEARCHSTAT "R-Wpn-Bomb01"
camTech [174] RESEARCHSTAT "R-Wpn-Bomb02"
camTech [175] RESEARCHSTAT "R-Wpn-Bomb-Accuracy01"
camTech [176] RESEARCHSTAT "R-Wpn-Cannon4AMk1"
camTech [177] RESEARCHSTAT "R-Wpn-Cannon5"
camTech [178] RESEARCHSTAT "R-Wpn-Cannon-Damage04"
camTech [179] RESEARCHSTAT "R-Wpn-Cannon-Damage05"
camTech [180] RESEARCHSTAT "R-Wpn-Cannon-ROF01"
camTech [181] RESEARCHSTAT "R-Wpn-Cannon-ROF02"
camTech [182] RESEARCHSTAT "R-Wpn-Flame2"
camTech [183] RESEARCHSTAT "R-Wpn-Flamer-Damage04"
camTech [184] RESEARCHSTAT "R-Wpn-Flamer-ROF02"
camTech [185] RESEARCHSTAT "R-Wpn-Howitzer-Accuracy01"
camTech [186] RESEARCHSTAT "R-Wpn-Howitzer-Damage01"
camTech [187] RESEARCHSTAT "R-Wpn-Howitzer-Damage02"
camTech [188] RESEARCHSTAT "R-Wpn-HowitzerMk1"
camTech [189] RESEARCHSTAT "R-Wpn-Howitzer-ROF01"
camTech [190] RESEARCHSTAT "R-Wpn-Howitzer-ROF02"
camTech [191] RESEARCHSTAT "R-Wpn-HvyHowitzer"
camTech [192] RESEARCHSTAT "R-Wpn-MG-ROF02"
camTech [193] RESEARCHSTAT "R-Wpn-Mortar3"
camTech [194] RESEARCHSTAT "R-Wpn-Mortar-Damage04"
camTech [195] RESEARCHSTAT "R-Wpn-Mortar-Damage05"
camTech [196] RESEARCHSTAT "R-Wpn-Mortar-ROF02"
camTech [197] RESEARCHSTAT "R-Wpn-Rocket06-IDF"
camTech [198] RESEARCHSTAT "R-Wpn-Rocket-Damage04"
camTech [199] RESEARCHSTAT "R-Wpn-Rocket-Damage05"
camTech [200] RESEARCHSTAT "R-Wpn-RocketSlow-Damage04"
camTech [201] RESEARCHSTAT "R-Wpn-RocketSlow-Damage05"
camTech [202] RESEARCHSTAT "R-Wpn-RocketSlow-ROF01"
camTech [203] RESEARCHSTAT "R-Wpn-RocketSlow-ROF02"
//tech level two-three
camTech [204] RESEARCHSTAT "R-Cyborg-Armor-Heat02"
camTech [205] RESEARCHSTAT "R-Cyborg-Armor-Heat03"
camTech [206] RESEARCHSTAT "R-Cyborg-Metals06"
camTech [207] RESEARCHSTAT "R-Defense-Pillbox-RotMG"
camTech [208] RESEARCHSTAT "R-Defense-WallTower-HPVcannon"
camTech [209] RESEARCHSTAT "R-Defense-WallUpgrade06"
camTech [210] RESEARCHSTAT "R-Struc-Factory-Cyborg-Upgrade06"
camTech [211] RESEARCHSTAT "R-Struc-Factory-Upgrade06"
camTech [212] RESEARCHSTAT "R-Struc-Materials06"
camTech [213] RESEARCHSTAT "R-Struc-Power-Upgrade01"
camTech [214] RESEARCHSTAT "R-Struc-Power-Upgrade01b"
camTech [215] RESEARCHSTAT "R-Struc-Power-Upgrade01c"
camTech [216] RESEARCHSTAT "R-Struc-Research-Upgrade06"
camTech [217] RESEARCHSTAT "R-Struc-RprFac-Upgrade06"
camTech [218] RESEARCHSTAT "R-Struc-VTOLFactory-Upgrade03"
camTech [219] RESEARCHSTAT "R-Struc-VTOLPad-Upgrade03"
camTech [220] RESEARCHSTAT "R-Sys-CBSensor-Tower01"
camTech [221] RESEARCHSTAT "R-Sys-CBSensor-Turret01"
camTech [222] RESEARCHSTAT "R-Sys-Engineering02"
camTech [223] RESEARCHSTAT "R-Sys-VTOLCBS-Tower01"
camTech [224] RESEARCHSTAT "R-Sys-VTOLStrike-Tower01"
camTech [225] RESEARCHSTAT "R-Sys-VTOLStrike-Turret01"
camTech [226] RESEARCHSTAT "R-Vehicle-Armor-Heat02"
camTech [227] RESEARCHSTAT "R-Vehicle-Armor-Heat03"
camTech [228] RESEARCHSTAT "R-Vehicle-Engine06"
camTech [229] RESEARCHSTAT "R-Vehicle-Metals06"
camTech [230] RESEARCHSTAT "R-Wpn-AAGun-Accuracy02"
camTech [231] RESEARCHSTAT "R-Wpn-AAGun-Damage03"
camTech [232] RESEARCHSTAT "R-Wpn-AAGun-ROF03"
camTech [233] RESEARCHSTAT "R-Wpn-Bomb03"
camTech [234] RESEARCHSTAT "R-Wpn-Bomb-Accuracy02"
camTech [235] RESEARCHSTAT "R-Wpn-Cannon-Damage06"
camTech [236] RESEARCHSTAT "R-Wpn-Cannon-ROF03"
camTech [237] RESEARCHSTAT "R-Wpn-Flamer-Damage05"
camTech [238] RESEARCHSTAT "R-Wpn-Flamer-Damage06"
camTech [239] RESEARCHSTAT "R-Wpn-Flamer-ROF03"
camTech [240] RESEARCHSTAT "R-Wpn-Howitzer03-Rot"
camTech [241] RESEARCHSTAT "R-Wpn-Howitzer-Accuracy02"
camTech [242] RESEARCHSTAT "R-Wpn-Howitzer-Damage03"
camTech [243] RESEARCHSTAT "R-Wpn-Howitzer-ROF03"
camTech [244] RESEARCHSTAT "R-Wpn-MG4"
camTech [245] RESEARCHSTAT "R-Wpn-MG-ROF03"
camTech [246] RESEARCHSTAT "R-Wpn-Mortar-Acc02"
camTech [247] RESEARCHSTAT "R-Wpn-Mortar-Damage06"
camTech [248] RESEARCHSTAT "R-Wpn-Mortar-ROF03"
camTech [249] RESEARCHSTAT "R-Wpn-Rocket07-Tank-Killer"
camTech [250] RESEARCHSTAT "R-Wpn-Rocket-Damage06"
camTech [251] RESEARCHSTAT "R-Defense-HvyFlamer"
camTech [252] RESEARCHSTAT "R-Wpn-RocketSlow-Damage06"
camTech [253] RESEARCHSTAT "R-Cyborg-Sys-ComEng"
camTechB [0] RESEARCHSTAT "R-Cyborg-Sys-Mechanic"
camTechB [1] RESEARCHSTAT "R-Cyborg-Wpn-Grenade"
camTechB [2] RESEARCHSTAT "R-Cyborg-Wpn-Thermite"
camTechB [3] RESEARCHSTAT "R-Cyborg-Transport"
camTechB [4] RESEARCHSTAT "R-Sys-MobileRepairTurretHvy"
camTechB [5] RESEARCHSTAT "R-Defense-Cannon6"
camTechB [6] RESEARCHSTAT "R-Wpn-Cannon6TwinAslt"
camTechB [7] RESEARCHSTAT "R-Cyborg-Hvywpn-Acannon"
camTechB [8] RESEARCHSTAT "R-Cyborg-Hvywpn-HPV"
camTechB [9] RESEARCHSTAT "R-Cyborg-Hvywpn-Mcannon"
camTechB [10] RESEARCHSTAT "R-Cyborg-Hvywpn-TK"
camTechB [11] RESEARCHSTAT "R-Defense-Super-Rocket"
camTechB [12] RESEARCHSTAT "R-Defense-Super-Cannon"
camTechB [13] RESEARCHSTAT "R-Defense-WallTower-QuadRotAA"
camTechB [14] RESEARCHSTAT "R-Defense-WallTower-DoubleAAgun"
camTechB [15] RESEARCHSTAT "R-Comp-CommandTurret02"
camTechB [16] RESEARCHSTAT "R-Comp-CommandTurret03"
}

View File

@ -1,172 +0,0 @@
// technology auto enabler.
public int initialPowerCl,initialPowerBa,initialPowerDe,numCamTech,numCamTechB,count,playnum;
public RESEARCHSTAT camTech[254];
public RESEARCHSTAT camTechB[17];
event setTechPower(CALL_GAMEINIT)
{
playnum=0;
while (playnum < 8)
{
if(multiPlayerBaseType == CAMP_CLEAN)
{
setPowerLevel(initialPowerCl,playnum);
}
else if(multiPlayerBaseType == CAMP_BASE)
{
setPowerLevel(initialPowerBa,playnum);
}
else
{
setPowerLevel(initialPowerDe,playnum);
}
playnum = playnum + 1;
}
}
event tech0(CALL_GAMEINIT)
{
count = 0;
playnum = 0;
while (count <= numCamTech)
{
completeResearch(camTech[count], playnum);
count = count +1;
}
count = 0;
while (count < numCamTechB)
{
completeResearch(camTechB[count], playnum);
count = count +1;
}
}
event tech1(CALL_GAMEINIT)
{
count = 0;
playnum = 1;
while (count <= numCamTech)
{
completeResearch(camTech[count], playnum);
count = count +1;
}
count = 0;
while (count < numCamTechB)
{
completeResearch(camTechB[count], playnum);
count = count +1;
}
}
event tech2(CALL_GAMEINIT)
{
count = 0;
playnum = 2;
while (count <= numCamTech)
{
completeResearch(camTech[count], playnum);
count = count +1;
}
count = 0;
while (count < numCamTechB)
{
completeResearch(camTechB[count], playnum);
count = count +1;
}
}
event tech3(CALL_GAMEINIT)
{
count = 0;
playnum = 3;
while (count <= numCamTech)
{
completeResearch(camTech[count], playnum);
count = count +1;
}
count = 0;
while (count < numCamTechB)
{
completeResearch(camTechB[count], playnum);
count = count +1;
}
}
event tech4(CALL_GAMEINIT)
{
count = 0;
playnum = 4;
while (count <= numCamTech)
{
completeResearch(camTech[count], playnum);
count = count +1;
}
count = 0;
while (count < numCamTechB)
{
completeResearch(camTechB[count], playnum);
count = count +1;
}
}
event tech5(CALL_GAMEINIT)
{
count = 0;
playnum = 5;
while (count <= numCamTech)
{
completeResearch(camTech[count], playnum);
count = count +1;
}
count = 0;
while (count < numCamTechB)
{
completeResearch(camTechB[count], playnum);
count = count +1;
}
}
event tech6(CALL_GAMEINIT)
{
count = 0;
playnum = 6;
while (count <= numCamTech)
{
completeResearch(camTech[count], playnum);
count = count +1;
}
count = 0;
while (count < numCamTechB)
{
completeResearch(camTechB[count], playnum);
count = count +1;
}
}
event tech7(CALL_GAMEINIT)
{
count = 0;
playnum = 7;
while (count <= numCamTech)
{
completeResearch(camTech[count], playnum);
count = count +1;
}
count = 0;
while (count < numCamTechB)
{
completeResearch(camTechB[count], playnum);
count = count +1;
}
}

View File

@ -1,319 +0,0 @@
ASPOTTER,Cyb-Hvywpn-HPV,NULL,NULL,6
ATESTVEHICLE,Cannon2A-TMk1,NULL,NULL,6
ATESTVTOL,Rocket-VTOL-BB,NULL,NULL,6
BabaBusCan,BusCannon,NULL,NULL,7
BabaFireCan,BusCannon,NULL,NULL,7
BabaFireTruck,BabaFlame,NULL,NULL,7
BabaJeep,BJeepMG,NULL,NULL,7
BaBaPeople,BaBaMG,NULL,NULL,7
BabaRKJeep,BabaRocket,NULL,NULL,7
BarbarianBuggy,BuggyMG,NULL,NULL,7
BarbarianRKBuggy,BabaRocket,NULL,NULL,7
BarbarianTrike,bTrikeMG,NULL,NULL,7
CO-H-COM-H,CommandTurret1,NULL,NULL,2
CO-H-Command-Track,CommandTurret1,NULL,NULL,2
CO-H-How105-Tracks,Howitzer105Mk1,NULL,NULL,2
CO-H-How150-Tracks,Howitzer150Mk1,NULL,NULL,2
CO-H-HPVCannon-Tracks,Cannon4AUTOMk1,NULL,NULL,2
CO-H-HvyCan-Tracks,Cannon375mmMk1,NULL,NULL,2
CO-H-QuadBofAA-T,AAGun2Mk1,NULL,NULL,2
CO-H-QuadRotAA-T,QuadRotAAGun,NULL,NULL,2
CO-H-Rkt-BB-T,Rocket-BB,NULL,NULL,2
CO-H-RotCan-Track,Cannon5VulcanMk1,NULL,NULL,2
CO-H-RotHow-Track,Howitzer03-Rot,NULL,NULL,2
CO-L-Bomb1-VTOL,Bomb1-VTOL-LtHE,NULL,NULL,2
CO-L-Rocket-LtA-T-VTOL,Rocket-VTOL-LtA-T,NULL,NULL,2
CO-L-RotMG-VTOL,MG4ROTARY-VTOL,NULL,NULL,2
CO-M-Bomb1-VTOL,Bomb1-VTOL-LtHE,NULL,NULL,2
CO-M-Bomb2-VTOL,Bomb2-VTOL-HvHE,NULL,NULL,2
CO-M-HMG-T,MG3Mk1,NULL,NULL,2
CO-M-HPVCannon-Tracks,Cannon4AUTOMk1,NULL,NULL,2
CO-M-HVAT-Hover,Rocket-HvyA-T,NULL,NULL,2
CO-M-HVAT-V,Rocket-VTOL-HvyA-T,NULL,NULL,2
CO-M-HvFlame-Track,Flame2,NULL,NULL,2
CO-M-HvMortar-T,Mortar2Mk1,NULL,NULL,2
CO-M-LTAT-Hover,Rocket-LtA-T,NULL,NULL,2
CO-M-MedCan-Tracks,Cannon2A-TMk1,NULL,NULL,2
CO-M-Rocket-HvyA-T-Track,Rocket-HvyA-T,NULL,NULL,2
CO-M-Rocket-LtA-T-T,Rocket-LtA-T,NULL,NULL,2
CO-M-ROTMG-T,MG4ROTARYMk1,NULL,NULL,2
CO-M-RotMortar-T,Mortar3ROTARYMk1,NULL,NULL,2
CO-M-RR-HT,Rocket-IDF,NULL,NULL,2
CobraComHalftrack,CommandTurret1,NULL,NULL,6
CobraFlameTracks,Flame1Mk1,NULL,NULL,6
CobraHMGHalfTrack,MG3Mk1,NULL,NULL,4
CobraHvyCnTrks,Cannon375mmMk1,NULL,NULL,6
CobraHvyMortarHalftrack,Mortar2Mk1,NULL,NULL,6
CobraLtA-Thalftrack,Rocket-LtA-T,NULL,NULL,6
CobraLtCnTrks,Cannon1Mk1,NULL,NULL,4
CobraMedCnTrks,Cannon2A-TMk1,NULL,NULL,6
CobraMortarHalfTrack,Mortar1Mk1,NULL,NULL,4
CobraMRLHalftrack,Rocket-MRL,NULL,NULL,6
Cyb-Atmiss-GROUND,Cyb-Wpn-Atmiss,NULL,NULL,0
Cyb-Cannon-GROUND,CyborgCannon,NULL,NULL,0
Cyb-Chain-GROUND,CyborgChaingun,NULL,NULL,0
Cyb-Flamer-GROUND,CyborgFlamer01,NULL,NULL,0
Cyb-Gren,Cyb-Wpn-Grenade,NULL,NULL,5
Cyb-Hvy-A-T,Cyb-Hvywpn-A-T,NULL,NULL,5
Cyb-Hvy-Acannon,Cyb-Hvywpn-Acannon,NULL,NULL,5
Cyb-Hvy-HPV,Cyb-Hvywpn-HPV,NULL,NULL,5
Cyb-Hvy-Mcannon,Cyb-Hvywpn-Mcannon,NULL,NULL,5
Cyb-Hvy-PulseLsr,Cyb-Hvywpn-PulseLsr,NULL,NULL,5
Cyb-Hvy-RailGunner,Cyb-Hvywpn-RailGunner,NULL,NULL,5
Cyb-Hvy-TK,Cyb-Hvywpn-TK,NULL,NULL,5
Cyb-Laser1-GROUND,Cyb-Wpn-Laser,NULL,NULL,0
Cyb-Rail1-GROUND,Cyb-Wpn-Rail1,NULL,NULL,0
Cyb-Rocket-GROUND,CyborgRocket,NULL,NULL,0
Cyb-RotMG-GROUND,CyborgRotMG,NULL,NULL,0
Cyb-Thermite,Cyb-Wpn-Thermite,NULL,NULL,5
CyborgCannon01Grd,CyborgCannon,NULL,NULL,5
CyborgChain01Ground,CyborgChaingun,NULL,NULL,5
CyborgFlamer01Grd,CyborgFlamer01,NULL,NULL,5
CyborgRkt01Ground,CyborgRocket,NULL,NULL,5
CyborgRotMgGround,CyborgRotMG,NULL,NULL,5
MP-Cyb-ATmiss-GRD,Cyb-Wpn-Atmiss,NULL,NULL,5
MP-Cyb-Laser1-GRD,Cyb-Wpn-Laser,NULL,NULL,5
MP-Cyb-Needle-GRD,Cyb-Wpn-Rail1,NULL,NULL,5
NP-H-HvyCannon-Hover,Cannon375mmMk1,NULL,NULL,1
NP-H-HvyCannon-Tracks,Cannon375mmMk1,NULL,NULL,1
NP-H-MdCannon-Tracks,Cannon2A-TMk1,NULL,NULL,1
NP-L-HMG-Halftrack,MG3Mk1,NULL,NULL,1
NP-L-LtAT-Halftrack,Rocket-LtA-T,NULL,NULL,1
NP-L-LtCannon-Halftrack,Cannon1Mk1,NULL,NULL,1
NP-L-MRLS-Halftrack,Rocket-MRL,NULL,NULL,1
NP-L-RocketPod-Wheels,Rocket-Pod,NULL,NULL,1
NP-M-BB-Halftrack,Rocket-BB,NULL,NULL,1
NP-M-Command-Halftrack,CommandTurret1,NULL,NULL,1
NP-M-Command-Track,CommandTurret1,NULL,NULL,1
NP-M-HvyMortar-Halftrack,Mortar2Mk1,NULL,NULL,1
NP-M-LitCannon-Halftrack,Cannon1Mk1,NULL,NULL,1
NP-M-LtAT-Hover,Rocket-LtA-T,NULL,NULL,1
NP-M-LtMortar-Halftrack,Mortar1Mk1,NULL,NULL,1
NP-M-MdCannon-Halftrack,Cannon2A-TMk1,NULL,NULL,1
NP-M-MdCannon-Tracks,Cannon2A-TMk1,NULL,NULL,1
NP-M-MG3-Hover,MG3Mk1,NULL,NULL,1
NX-Cyb-Miss-JUMP,NX-CyborgMiss,NULL,NULL,3
NX-Cyb-PulseLas-JUMP,NX-CyborgPulseLas,NULL,NULL,3
NX-Cyb-Rail1-JUMP,NX-Cyb-Rail1,NULL,NULL,3
NX-H-HvMiss-Hover,Missile-HvySAM,NULL,NULL,3
NX-H-Rail2-VTOL,RailGun2-VTOL,NULL,NULL,3
NX-H-Rail3-Hover,RailGun3Mk1,NULL,NULL,3
NX-L-Flash-Hover,Laser3BEAMMk1,NULL,NULL,3
NX-L-Link-Hov,NEXUSlink,NULL,NULL,3
NX-L-Missile-A-T-VTOL,Missile-VTOL-AT,NULL,NULL,3
NX-L-Missile-MdArt-Hover,Missile-MdArt,NULL,NULL,3
NX-L-PulseLas-VTOL,Laser2PULSE-VTOL,NULL,NULL,3
NX-L-Rail1-VTOL,RailGun1-VTOL,NULL,NULL,3
NX-M-Bomb2-VTOL,Bomb2-VTOL-HvHE,NULL,NULL,3
NX-M-Bomb4-VTOL,Bomb4-VTOL-HvyINC,NULL,NULL,3
NX-M-Com-Hover,CommandTurret1,NULL,NULL,3
NX-M-HvSam-Hover,Missile-HvySAM,NULL,NULL,3
NX-M-Link-Hover,NEXUSlink,NULL,NULL,3
NX-M-Missile-A-T-Hover,Missile-A-T,NULL,NULL,3
NX-M-PulseLas-Hover,Laser2PULSEMk1,NULL,NULL,3
NX-M-Rail2-Hover,RailGun2Mk1,NULL,NULL,3
P0cam3PyAsltGnTrk,MG4ROTARYMk1,NULL,NULL,3
P0cam3PyFlakHT,AAGun2Mk1,NULL,NULL,3
P0cam3PyHPVcanTrk,Cannon4AUTOMk1,NULL,NULL,3
P0cam3PyHvyATTrk,Rocket-HvyA-T,NULL,NULL,3
P0CobraFlameTracks,Flame1Mk1,NULL,NULL,2
P0CobraHvyMGHtrack,MG3Mk1,NULL,NULL,2
P0CobraLtATRktHtrack,Rocket-LtA-T,NULL,NULL,2
P0CobraMedCnTrks,Cannon2A-TMk1,NULL,NULL,2
P0PythonComTracks,CommandTurret1,NULL,NULL,2
P0PythonHvyCnTrks,Cannon375mmMk1,Cannon375mmMk1,NULL,2
P6-L-Bomb1-V,Bomb1-VTOL-LtHE,NULL,NULL,6
P6-L-LTAT-V,Rocket-VTOL-LtA-T,NULL,NULL,6
P6-M-QMG1-HT,QuadMg1AAGun,NULL,NULL,6
PythonComTracks,CommandTurret1,NULL,NULL,6
PythonHvyCnTrks,Cannon375mmMk1,NULL,NULL,6
PythonLtCnTrks,Cannon1Mk1,NULL,NULL,6
PythonMedCnTrks,Cannon2A-TMk1,NULL,NULL,6
SK-Bug-Hover-HMG,MG3Mk1,NULL,NULL,6
SK-Bug-VTOL-BB,Rocket-VTOL-BB,NULL,NULL,6
SK-Bug-VTOL-CLBomb,Bomb1-VTOL-LtHE,NULL,NULL,6
SK-Cobra-Hover-BB,Rocket-BB,NULL,NULL,6
SK-Cobra-Hover-HMG,MG3Mk1,NULL,NULL,6
SK-Cobra-Hover-Lancer,Rocket-LtA-T,NULL,NULL,6
SK-Cobra-Track-HVC,Cannon4AUTOMk1,NULL,NULL,6
SK-Cobra-Track-TK,Rocket-HvyA-T,NULL,NULL,6
Sk-CobraBBHover,Rocket-BB,NULL,NULL,6
SK-Leopard-Hover-Needle,RailGun1Mk1,NULL,NULL,6
SK-Leopard-HTrk-ASGun,MG4ROTARYMk1,NULL,NULL,6
SK-Leopard-Htrk-Needle,RailGun1Mk1,NULL,NULL,6
SK-Leopard-Track-Lancer,Rocket-LtA-T,NULL,NULL,6
SK-Leopard-VTOL-BB,Rocket-VTOL-BB,NULL,NULL,6
SK-Leopard-VTOL-PhosBomb,Bomb3-VTOL-LtINC,NULL,NULL,6
SK-Mantis-Hover-Hcannon,Cannon375mmMk1,NULL,NULL,6
SK-Mantis-Hover-HVC,Cannon4AUTOMk1,NULL,NULL,6
SK-Mantis-VTOL-BB,Rocket-VTOL-BB,NULL,NULL,6
SK-Panther-Hover-HVC,Cannon4AUTOMk1,NULL,NULL,6
SK-Panther-Hover-TK,Rocket-HvyA-T,NULL,NULL,6
SK-Panther-Htrk-ASGun,MG4ROTARYMk1,NULL,NULL,6
SK-Panther-Htrk-BB,Rocket-BB,NULL,NULL,6
SK-Panther-Track-HVC,Cannon4AUTOMk1,NULL,NULL,6
SK-Panther-Track-RailGun,RailGun2Mk1,NULL,NULL,6
SK-Panther-Track-TK,Rocket-HvyA-T,NULL,NULL,6
SK-Panther-VTOL-BB,Rocket-VTOL-BB,NULL,NULL,6
SK-Panther-VTOL-Phosbomb,Bomb3-VTOL-LtINC,NULL,NULL,6
SK-Panther-VTOL-Thermite,Bomb4-VTOL-HvyINC,NULL,NULL,6
SK-Panther-VTOL-TK,Rocket-VTOL-HvyA-T,NULL,NULL,6
SK-Python-Hover-Hcannon,Cannon375mmMk1,NULL,NULL,6
SK-Python-Hover-Lancer,Rocket-LtA-T,NULL,NULL,6
SK-Python-Hover-Mcannon,Cannon2A-TMk1,NULL,NULL,6
SK-Python-Track-Hcannon,Cannon375mmMk1,NULL,NULL,6
Sk-PythonHvCanTrack,Cannon375mmMk1,NULL,NULL,6
SK-Retal-Track-Needle,RailGun1Mk1,NULL,NULL,6
SK-Retal-VTOL-Phosbomb,Bomb3-VTOL-LtINC,NULL,NULL,6
SK-Retre-Hover-RailGun,RailGun2Mk1,NULL,NULL,6
SK-Retre-Hover-Scourge,Missile-A-T,NULL,NULL,6
SK-Retre-Htrk-Pepper,Mortar3ROTARYMk1,NULL,NULL,6
SK-Retre-Track-FlashLight,Laser3BEAMMk1,NULL,NULL,6
SK-Retre-Track-PulseLsr,Laser2PULSEMk1,NULL,NULL,6
SK-Retre-Track-RailGun,RailGun2Mk1,NULL,NULL,6
SK-Retre-Track-Scourge,Missile-A-T,NULL,NULL,6
SK-Retre-VTOL-PulseLsr,Laser2PULSE-VTOL,NULL,NULL,6
SK-Retre-VTOL-Scourge,Missile-VTOL-AT,NULL,NULL,6
SK-Retre-VTOL-Thermite,Bomb4-VTOL-HvyINC,NULL,NULL,6
SK-Scorp-Hover-ASGUN,MG4ROTARYMk1,NULL,NULL,6
SK-Scorp-Hover-BB,Rocket-BB,NULL,NULL,6
SK-Scorp-Hover-Bombard,Mortar2Mk1,NULL,NULL,6
SK-Scorp-Hover-Lancer,Rocket-LtA-T,NULL,NULL,6
SK-Scorp-Hover-Mcannon,Cannon2A-TMk1,NULL,NULL,6
SK-Scorpion-VTOL-BB,Rocket-VTOL-BB,NULL,NULL,6
SK-Scorpion-VTOL-Hbomb,Bomb2-VTOL-HvHE,NULL,NULL,6
SK-Tiger-Hover-ASCannon,Cannon5VulcanMk1,NULL,NULL,6
SK-Tiger-Hover-Gauss,RailGun3Mk1,NULL,NULL,6
SK-Tiger-Hover-Hcannon,Cannon375mmMk1,NULL,NULL,6
SK-Tiger-Hover-HVC,Cannon4AUTOMk1,NULL,NULL,6
SK-Tiger-Hover-Scourge,Missile-A-T,NULL,NULL,6
SK-Tiger-Hover-TK,Rocket-HvyA-T,NULL,NULL,6
SK-Tiger-Track-ASCannon,Cannon5VulcanMk1,NULL,NULL,6
SK-Tiger-Track-Gauss,RailGun3Mk1,NULL,NULL,6
SK-Tiger-Track-Hcannon,Cannon375mmMk1,NULL,NULL,6
SK-Tiger-Track-HVC,Cannon4AUTOMk1,NULL,NULL,6
SK-Tiger-Track-Scourge,Missile-A-T,NULL,NULL,6
SK-Tiger-Track-TK,Rocket-HvyA-T,NULL,NULL,6
SK-Veng-Hover-Gauss,RailGun3Mk1,NULL,NULL,6
SK-Veng-Hover-PulseLsr,Laser2PULSEMk1,NULL,NULL,6
SK-Veng-Hover-Scourge,Missile-A-T,NULL,NULL,6
SK-Veng-Track-C6TwinAslt,Cannon6TwinAslt,NULL,NULL,6
SK-Veng-Track-Gauss,RailGun3Mk1,NULL,NULL,6
SK-Veng-Track-HvyLaser,HeavyLaser,NULL,NULL,6
SK-Veng-Track-PulseLsr,Laser2PULSEMk1,NULL,NULL,6
SK-Veng-Track-Scourge,Missile-A-T,NULL,NULL,6
SuperTank,Superweapon,NULL,NULL,6
SuperTank2,Superweapon2,NULL,NULL,6
Transporter,MG3-VTOL,NULL,NULL,5
ViperBBWheels,Rocket-BB,NULL,NULL,6
ViperFlameWheels,Flame1Mk1,NULL,NULL,4
ViperHMGHalftrack,MG3Mk1,NULL,NULL,6
ViperHMGTracks,MG3Mk1,NULL,NULL,6
ViperLtA-Twheels,Rocket-LtA-T,NULL,NULL,6
ViperLtCannonTracks,Cannon1Mk1,NULL,NULL,4
ViperLtCannonWheels,Cannon1Mk1,NULL,NULL,4
ViperLtCannonHTracks,Cannon1Mk1,NULL,NULL,4
ViperLtMGWheels,MG1Mk1,NULL,NULL,0
ViperMedCnTrks,Cannon2A-TMk1,NULL,NULL,6
ViperMG01Wheels,MG1Mk1,NULL,NULL,6
ViperMG02Halftrack,MG2Mk1,NULL,NULL,6
ViperMG02Wheels,MG2Mk1,NULL,NULL,6
ViperMRLWheels,Rocket-MRL,NULL,NULL,6
ViperPODWheels,Rocket-Pod,NULL,NULL,6
ViperHMGWheels,MG3Mk1,NULL,NULL,6
Scourge-Mantis-H,Missile-A-T,NULL,NULL,6
TK-Mantis-H,Rocket-HvyA-T,NULL,NULL,6
CobraHMGTracks,MG3Mk1,NULL,NULL,6
A-Viper-Wheels-MG,MG1Mk1,NULL,NULL,6
A-Viper-Wheels-TMG,MG2Mk1,NULL,NULL,6
A-Viper-Wheels-HMG,MG3Mk1,NULL,NULL,6
A-Cobra-Wheels-HMG,MG3Mk1,NULL,NULL,6
A-Cobra-Hover-HMG,MG3Mk1,NULL,NULL,6
A-Cobra-Hover-MC,Cannon2A-TMk1,NULL,NULL,6
A-Scorp-Hover-MC,Cannon2A-TMk1,NULL,NULL,6
A-Python-Hover-MC,Cannon2A-TMk1,NULL,NULL,6
A-Python-Hover-HC,Cannon375mmMk1,NULL,NULL,6
A-Python-Trk-HC,Cannon375mmMk1,NULL,NULL,6
A-Tiger-Trk-HC,Cannon375mmMk1,NULL,NULL,6
A-Tiger-Trk-Needle,RailGun1Mk1,NULL,NULL,6
A-Retrib-Trk-Needle,RailGun1Mk1,NULL,NULL,6
A-Veng-Trk-Needle,RailGun1Mk1,NULL,NULL,6
A-Veng-Trk-Rail,RailGun2Mk1,NULL,NULL,6
A-Veng-Trk-Guass,RailGun3Mk1,NULL,NULL,6
A-Veng-Trk-Scourge,Missile-A-T,NULL,NULL,6
A-Mantis-Trk-Rail,RailGun2Mk1,NULL,NULL,6
A-Mantis-Trk-Pulse,Laser2PULSEMk1,NULL,NULL,6
V-Bug-ClusterBomb,Bomb1-VTOL-LtHE,NULL,NULL,6
V-Bug-BB,Rocket-VTOL-BB,NULL,NULL,6
V-Bug-Lancer,Rocket-VTOL-LtA-T,NULL,NULL,6
V-Bug-HPV,Cannon4AUTO-VTOL,NULL,NULL,6
V-Scor-ClusterBomb,Bomb1-VTOL-LtHE,NULL,NULL,6
V-Scor-BB,Rocket-VTOL-BB,NULL,NULL,6
V-Scor-Lancer,Rocket-VTOL-LtA-T,NULL,NULL,6
V-Scor-HPV,Cannon4AUTO-VTOL,NULL,NULL,6
A-Python-Trk-Lancer,Rocket-LtA-T,NULL,NULL,6
A-Mantis-Trk-Lancer,Rocket-LtA-T,NULL,NULL,6
A-Veng-Trk-TK,Rocket-HvyA-T,NULL,NULL,6
V-Mantis-Lancer,Rocket-VTOL-LtA-T,NULL,NULL,6
V-Mantis-HPV,Cannon4AUTO-VTOL,NULL,NULL,6
A-Viper-Trk-MG,MG1Mk1,NULL,NULL,6
A-Viper-Trk-TMG,MG2Mk1,NULL,NULL,6
A-Viper-Trk-HMG,MG3Mk1,NULL,NULL,6
A-Cobra-Trk-HMG,MG3Mk1,NULL,NULL,6
A-Scorp-Trk-MC,Cannon2A-TMk1,NULL,NULL,6
Cobra-Hover-HC,Cannon375mmMk1,NULL,NULL,6
H-Scorp-Trk-Lancer,Rocket-LtA-T,NULL,NULL,6
H-Scorp-Trk-HC,Cannon375mmMk1,NULL,NULL,6
H-Scorp-VTOL-Lancer,Rocket-VTOL-LtA-T,NULL,NULL,6
H-Scorp-VTOL-BB,Rocket-VTOL-BB,NULL,NULL,6
Viper-Trk-Com,CommandTurret1,NULL,NULL,6
Cobra-Trk-Com,CommandTurret1,NULL,NULL,6
Scorp-Trk-Com,CommandTurret1,NULL,NULL,6
Mantis-Trk-Com,CommandTurret1,NULL,NULL,6
CobraTrkLancer,Rocket-LtA-T,NULL,NULL,6
MantisTrkHC,Cannon375mmMk1,NULL,NULL,6
MantisTKTracks,Rocket-HvyA-T,NULL,NULL,6
ScorpTrkHMG,MG3Mk1,NULL,NULL,6
CobraBBTracks,Rocket-BB,NULL,NULL,6
ScorpBBTracks,Rocket-BB,NULL,NULL,6
MantisBBTracks,Rocket-BB,NULL,NULL,6
MantisScourgeTracks,Missile-A-T,NULL,NULL,6
ViperTrkLancer,Rocket-LtA-T,NULL,NULL,6
CobraPODHTracks,Rocket-Pod,NULL,NULL,6
CobraPODTracks,Rocket-Pod,NULL,NULL,6
CobraMRLTracks,Rocket-MRL,NULL,NULL,6
CobraInfernoHTracks,Flame2,NULL,NULL,6
PythonHoverHVC,Cannon4AUTOMk1,NULL,NULL,6
PythonScourgeTracks,Missile-A-T,NULL,NULL,6
PythonGaussTracks,RailGun3Mk1,NULL,NULL,6
PythonPulseTracks,Laser2PULSEMk1,NULL,NULL,6
TigerPulseTracks,Laser2PULSEMk1,NULL,NULL,6
TigerHvLaserTracks,HeavyLaser,NULL,NULL,6
WyvernGaussTracks,RailGun3Mk1,NULL,NULL,6
WyvernPulseTracks,Laser2PULSEMk1,NULL,NULL,6
WyvernHvLaserTracks,HeavyLaser,NULL,NULL,6
ViperLtMGHalfTracks,MG1Mk1,NULL,NULL,6
ViperFlameHalfTracks,Flame1Mk1,NULL,NULL,6
PythonMedCanTracks,Cannon2A-TMk1,NULL,NULL,6
PythonTKTracks,Rocket-HvyA-T,NULL,NULL,6
CobraInfernoHover,Flame2,NULL,NULL,6
CobraMedCnHTrks,Cannon2A-TMk1,NULL,NULL,6
PythonHoverInferno,Flame2,NULL,NULL,6
PhytonHoverAssGun,MG4ROTARYMk1,NULL,NULL,6
PhytonHTrackAssGun,MG4ROTARYMk1,NULL,NULL,6
ScorpHTrackHMG,MG1Mk1,NULL,NULL,6
MantisHoverAC,Cannon5VulcanMk1,NULL,NULL,6
LeopardHoverPulseLas,Laser2PULSEMk1,NULL,NULL,6
PantherHoverPulseLas,Laser2PULSEMk1,NULL,NULL,6
TigerHoverPulseLas,Laser2PULSEMk1,NULL,NULL,6
TigerHoverRailGun,RailGun2Mk1,NULL,NULL,6
WyvernScourgeTracks,Missile-A-T,NULL,NULL,6
WyvernPlasmaCTracks,Laser4-PlasmaCannon,NULL,NULL,6
RetreHoverFlashLight,Laser3BEAMMk1,NULL,NULL,6
ViperPODHalfTracks,Rocket-Pod,NULL,NULL,6
ViperMRLHalfTracks,Rocket-MRL,NULL,NULL,6
SK-Mantis-VTOL-PBB,Bomb3-VTOL-LtINC,NULL,NULL,6
SK-Mantis-VTOL-HBB,Bomb2-VTOL-HvHE,NULL,NULL,6
SK-Retre-VTOL-HBB,Bomb2-VTOL-HvHE,NULL,NULL,6
SK-Retal-VTOL-Scourge,Missile-VTOL-AT,NULL,NULL,6
ZNULLDESIGN,ZNULLWEAPON,ZNULLWEAPON,ZNULLWEAPON,0

View File

@ -1,49 +0,0 @@
Body key,Unused,Size,Build power,Build points,Weight,Body points,Body model,Unused,Weapon slots,Engine power,AFRK,AFRH,AREK,AREH,ALEK,ALEH,ARIK,ARIH,ATOK,ATOH,ABOK,ABOH,Flame model,Designable
ZNULLBODY,Level All,LIGHT,0,0,0,0,MIBNKBOD.PIE,20,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
TransporterBody,Level All,MEDIUM,325,637,250,200,drcytran.pie,100,1,2000,20,9,20,9,20,9,20,9,20,9,20,9,0,0
Superbody,Level All,HEAVY,10,10,2700,9000,DRHBOD11.PIE,500,1,40000,999,999,999,999,999,999,999,999,999,999,999,999,0,0
FireBody,Level One,LIGHT,4,75,3000,200,EXFIRE.PIE,50,1,4000,4,1,4,1,4,1,4,1,4,1,4,1,0,0
CybRotMgGrd,Level All,LIGHT,21,75,150,200,cybd_std.pie,100,1,600,12,6,12,6,12,6,12,6,12,6,12,6,0,0
CyborgRkt1Ground,Level All,LIGHT,25,95,150,200,cybd_std.pie,100,1,500,12,6,12,6,12,6,12,6,12,6,12,6,0,0
CyborgFlamerGrd,Level All,LIGHT,25,95,150,200,cybd_std.pie,100,1,500,12,6,12,6,12,6,12,6,12,6,12,6,0,0
CyborgChain1Ground,Level All,LIGHT,25,95,150,200,cybd_std.pie,100,1,500,12,6,12,6,12,6,12,6,12,6,12,6,0,0
CyborgCannonGrd,Level All,LIGHT,25,95,150,200,cybd_std.pie,100,1,500,12,6,12,6,12,6,12,6,12,6,12,6,0,0
CybNXRail1Jmp,Level All,LIGHT,25,95,150,370,cybd_std.pie,100,1,675,18,15,18,15,18,15,18,15,18,15,18,15,0,0
CybNXPulseLasJmp,Level All,LIGHT,25,95,150,370,cybd_std.pie,100,1,675,18,15,18,15,18,15,18,15,18,15,18,15,0,0
CybNXMissJmp,Level All,LIGHT,25,95,150,370,cybd_std.pie,100,1,675,18,15,18,15,18,15,18,15,18,15,18,15,0,0
CybFlamer01CGrd,Level All,LIGHT,21,75,150,200,cybd_std.pie,100,1,600,12,6,12,6,12,6,12,6,12,6,12,6,0,0
Cyb-Hvybod-TK,Level Two,LIGHT,50,205,250,300,scbd_std.pie,100,1,500,15,8,15,8,15,8,15,8,15,8,15,8,0,0
Cyb-Hvybod-RailGunner,Level Three,LIGHT,50,205,250,300,scbd_std.pie,100,1,500,15,8,15,8,15,8,15,8,15,8,15,8,0,0
Cyb-Hvybod-PulseLsr,Level Three,LIGHT,50,205,250,300,scbd_std.pie,100,1,500,15,8,15,8,15,8,15,8,15,8,15,8,0,0
Cyb-Hvybod-Mcannon,Level Two,LIGHT,50,205,250,300,scbd_std.pie,100,1,500,15,8,15,8,15,8,15,8,15,8,15,8,0,0
Cyb-Hvybod-HPV,Level Two,LIGHT,50,205,250,300,scbd_std.pie,100,1,500,15,8,15,8,15,8,15,8,15,8,15,8,0,0
Cyb-Hvybod-Acannon,Level Two,LIGHT,50,205,250,300,scbd_std.pie,100,1,500,15,8,15,8,15,8,15,8,15,8,15,8,0,0
Cyb-Hvybod-A-T,Level Three,LIGHT,50,205,250,300,scbd_std.pie,100,1,500,15,8,15,8,15,8,15,8,15,8,15,8,0,0
Cyb-Bod-Thermite,Level All,LIGHT,25,95,150,200,cybd_std.pie,100,1,500,12,6,12,6,12,6,12,6,12,6,12,6,0,0
Cyb-Bod-Rail1,Level All,LIGHT,25,95,150,200,cybd_std.pie,100,1,500,12,6,12,6,12,6,12,6,12,6,12,6,0,0
Cyb-Bod-Mechanic,Level All,LIGHT,25,95,150,200,cybd_std.pie,100,1,500,12,6,12,6,12,6,12,6,12,6,12,6,0,0
Cyb-Bod-Las1,Level All,LIGHT,25,95,150,200,cybd_std.pie,100,1,500,12,6,12,6,12,6,12,6,12,6,12,6,0,0
Cyb-Bod-Grenade,Level All,LIGHT,25,95,150,200,cybd_std.pie,100,1,500,12,6,12,6,12,6,12,6,12,6,12,6,0,0
Cyb-Bod-ComEng,Level All,LIGHT,25,95,150,200,cybd_std.pie,100,1,500,12,6,12,6,12,6,12,6,12,6,12,6,0,0
Cyb-Bod-Atmiss,Level All,LIGHT,25,95,150,200,cybd_std.pie,100,1,500,12,6,12,6,12,6,12,6,12,6,12,6,0,0
BusBody,Level One,LIGHT,4,75,2000,200,EXSCHOOL.PIE,50,1,4000,4,1,4,1,4,1,4,1,4,1,4,1,0,0
Body9REC,Level All,HEAVY,71,420,3300,225,DRHBOD09.PIE,500,1,18000,22,15,22,15,22,15,22,15,22,15,22,15,fxvtl09.pie,1
Body8MBT,Level All,MEDIUM,39,250,1500,125,DRMBOD08.PIE,250,1,15000,12,12,12,12,12,12,12,12,12,12,12,12,fxvtl5to8.pie,1
Body7ABT,Level Three,MEDIUM,100,600,1500,200,DRMBOD07.PIE,250,1,15000,24,20,24,20,24,20,24,20,24,20,24,20,fxvtl5to8.pie,1
Body6SUPP,Level Two-Three,MEDIUM,57,300,2500,145,DRMBOD06.PIE,250,1,13000,18,9,18,9,18,9,18,9,18,9,18,9,fxvtl5to8.pie,1
Body5REC,Level All,MEDIUM,46,250,2000,130,DRMBOD05.PIE,250,1,15000,15,6,15,6,15,6,15,6,15,6,15,6,fxvtl5to8.pie,1
Body4ABT,Level All,LIGHT,25,100,450,55,DRLBOD04.PIE,100,1,5000,8,8,8,8,8,8,8,8,8,8,8,8,fxvtl04.pie,1
Body3MBT,Level Three,LIGHT,68,400,450,100,DRLBOD03.PIE,100,1,5000,20,15,20,15,20,15,20,15,20,15,20,15,fxvtl2and3.pie,1
Body2SUP,Level All,LIGHT,41,220,750,85,DRLBOD02.PIE,100,1,4000,12,6,12,6,12,6,12,6,12,6,12,6,fxvtl2and3.pie,1
Body1REC,Level All,LIGHT,30,150,600,65,DRLBOD01.PIE,100,1,5000,10,4,10,4,10,4,10,4,10,4,10,4,fxvtl01.pie,1
Body14SUP,Level Three,HEAVY,182,1000,6000,350,DRHBOD14.PIE,500,2,30000,30,30,30,30,30,30,30,30,30,30,30,30,fxvtl12.pie,1
Body13SUP,Level Three,HEAVY,156,900,5000,350,DRMBOD13.PIE,500,1,25000,28,28,28,28,28,28,28,28,28,28,28,28,fxvtl12.pie,1
Body12SUP,Level All,HEAVY,52,350,2100,180,DRHBOD12.PIE,500,1,20000,18,18,18,18,18,18,18,18,18,18,18,18,fxvtl12.pie,1
Body11ABT,Level All,HEAVY,60,350,2700,200,DRHBOD11.PIE,500,1,20000,20,9,20,9,20,9,20,9,20,9,20,9,fxvtl11.pie,1
Body10MBT,Level Three,HEAVY,130,800,2500,300,DRHBOD10.PIE,500,1,23000,28,25,28,25,28,25,28,25,28,25,28,25,fxvtl10.pie,1
B4body-sml-trike01,Level One,LIGHT,2,65,675,80,extrike.PIE,35,1,2100,1,1,1,1,1,1,1,1,1,1,1,1,0,0
B3bodyRKbuggy01,Level One,LIGHT,3,80,900,100,exbugRK.PIE,50,1,2200,3,1,3,1,3,1,3,1,3,1,3,1,0,0
B3body-sml-buggy01,Level One,LIGHT,3,80,900,100,exbuggy.PIE,50,1,2200,3,1,3,1,3,1,3,1,3,1,3,1,0,0
B2RKJeepBody,Level One,LIGHT,4,75,900,120,EXjeepRK.PIE,50,1,2200,4,1,4,1,4,1,4,1,4,1,4,1,0,0
B2JeepBody,Level One,LIGHT,4,75,900,120,EXjeep.PIE,50,1,2200,4,1,4,1,4,1,4,1,4,1,4,1,0,0
B1BaBaPerson01,Level All,HEAVY,1,20,100,29,EXBLOKE.PIE,50,1,125,1,1,1,1,1,1,1,1,1,1,1,1,0,0

View File

@ -1,365 +0,0 @@
ConstructionDroid,140,Body1REC,ZNULLBRAIN,Spade1Mk1,ZNULLECM,0,wheeled01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,0
BarbarianTrike,139,B4body-sml-trike01,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,7,BaBaProp,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
BarbarianBuggy,150,B3body-sml-buggy01,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,7,BaBaProp,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
BaBaPeople,158,B1BaBaPerson01,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,7,BaBaLegs,ZNULLREPAIR,PERSON,DefaultSensor1Mk1,1
ViperLtCannonWheels,177,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,4,wheeled01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
ViperLtCannonHTracks,178,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,4,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
BabaJeep,194,B2JeepBody,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,7,BaBaProp,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
ConstructorDroid,249,Body1REC,ZNULLBRAIN,Spade1Mk1,ZNULLECM,5,wheeled01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,0
ViperLtCannonTracks,257,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,4,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
ViperMedCnTrks,263,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CobraLtCnTrks,266,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,4,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CobraMedCnTrks,267,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CobraHvyCnTrks,268,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
PythonLtCnTrks,269,Body11ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
PythonHvyCnTrks,271,Body11ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
ViperFlameWheels,274,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,4,wheeled01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
ViperSensorWheels,275,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,4,wheeled01,ZNULLREPAIR,DROID,SensorTurret1Mk1,0
BabaRKJeep,276,B2RKJeepBody,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,7,BaBaProp,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
BarbarianRKBuggy,277,B3bodyRKbuggy01,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,7,BaBaProp,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
Transporter,278,TransporterBody,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,0,V-Tol,ZNULLREPAIR,TRANSPORTER,DefaultSensor1Mk1,1
BabaBusCan,289,BusBody,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,7,BaBaProp,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
BabaFireCan,290,FireBody,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,7,BaBaProp,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
NP-L-RocketPod-Wheels,311,Body4ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,1,wheeled01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
NP-L-MRLS-Halftrack,312,Body4ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,1,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
NP-L-HMG-Halftrack,313,Body4ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,1,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
NP-L-LtAT-Halftrack,314,Body4ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,1,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
NP-L-Sensor-Wheels,315,Body4ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,1,wheeled01,ZNULLREPAIR,DROID,SensorTurret1Mk1,0
NP-M-Command-Halftrack,316,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,1,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
NP-M-Sensor-Wheels,317,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,1,wheeled01,ZNULLREPAIR,DROID,SensorTurret1Mk1,0
NP-M-MdCannon-Halftrack,318,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,1,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
NP-M-MdCannon-Tracks,319,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,1,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
NP-M-LtMortar-Halftrack,320,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,1,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
NP-M-HvyMortar-Halftrack,321,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,1,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
NP-M-BB-Halftrack,322,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,1,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
NP-H-MdCannon-Tracks,323,Body12SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,1,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
NP-H-HvyCannon-Tracks,324,Body12SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,1,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
Cyb-Chain-GROUND,325,CyborgChain1Ground,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,0,CyborgLegs,ZNULLREPAIR,CYBORG,DefaultSensor1Mk1,1
CO-H-How105-Tracks,328,Body9REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-H-How150-Tracks,329,Body9REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-H-HvyCan-Tracks,330,Body9REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-M-MedCan-Tracks,336,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-M-Sensor-T,337,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,tracked01,ZNULLREPAIR,DROID,SensorTurret1Mk1,0
CyborgFlamer01Grd,341,CyborgFlamerGrd,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,5,CyborgLegs,ZNULLREPAIR,CYBORG,DefaultSensor1Mk1,1
CyborgRkt01Ground,342,CyborgRkt1Ground,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,5,CyborgLegs,ZNULLREPAIR,CYBORG,DefaultSensor1Mk1,1
CyborgCannon01Grd,343,CyborgCannonGrd,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,5,CyborgLegs,ZNULLREPAIR,CYBORG,DefaultSensor1Mk1,1
CyborgChain01Ground,344,CyborgChain1Ground,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,5,CyborgLegs,ZNULLREPAIR,CYBORG,DefaultSensor1Mk1,1
CobraMortarHalfTrack,346,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,4,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CobraHMGHalfTrack,347,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,4,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-M-Con-T,350,Body6SUPP,ZNULLBRAIN,Spade1Mk1,ZNULLECM,2,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,0
BabaFireTruck,354,FireBody,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,7,BaBaProp,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
BabaPickUp,355,B2RKJeepBody,ZNULLBRAIN,Spade1Mk1,ZNULLECM,7,ZNULLPROP,ZNULLREPAIR,DROID,DefaultSensor1Mk1,0
NX-M-Rail2-Hover,363,Body7ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,3,hover01,ZNULLREPAIR,DROID,NavGunSensor,1
NX-L-PulseLas-VTOL,365,Body3MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,3,V-Tol,ZNULLREPAIR,DROID,NavGunSensor,1
NX-L-Missile-A-T-VTOL,366,Body3MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,3,V-Tol,ZNULLREPAIR,DROID,NavGunSensor,1
NX-L-Sens-Hov,369,Body3MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,3,hover01,ZNULLREPAIR,DROID,SensorTurret1Mk1,0
NX-M-Missile-A-T-Hover,371,Body7ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,3,hover01,ZNULLREPAIR,DROID,NavGunSensor,1
NX-M-Com-Hover,376,Body7ABT,CommandBrain01,ZNULLCONSTRUCT,ZNULLECM,3,hover01,ZNULLREPAIR,DROID,NavGunSensor,1
NX-Cyb-Rail1-JUMP,377,CybNXRail1Jmp,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,3,CyborgLegs,ZNULLREPAIR,CYBORG,NavGunSensor,1
NX-Cyb-PulseLas-JUMP,378,CybNXPulseLasJmp,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,3,CyborgLegs,ZNULLREPAIR,CYBORG,NavGunSensor,1
NX-Cyb-Miss-JUMP,379,CybNXMissJmp,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,3,CyborgLegs,ZNULLREPAIR,CYBORG,NavGunSensor,1
SuperTank,380,Superbody,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
NP-M-LitCannon-Halftrack,381,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,1,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
NX-M-Con-Hover,382,Body7ABT,ZNULLBRAIN,Spade1Mk1,ZNULLECM,3,hover01,ZNULLREPAIR,DROID,NavGunSensor,0
SuperTank2,383,Superbody,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
NX-L-Repair-Hover,384,Body3MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,3,hover01,LightRepair1,DROID,NavGunSensor,0
ATESTVEHICLE,387,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
ZNULLDESIGN,389,ZNULLBODY,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,0,ZNULLPROP,ZNULLREPAIR,ZNULLDROID,ZNULLSENSOR,0
NP-M-LtAT-Hover,391,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,1,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
NP-H-HvyCannon-Hover,392,Body12SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,1,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
NP-M-MG3-Hover,393,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,1,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
ATESTVTOL,394,Body7ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
ASPOTTER,395,Cyb-Hvybod-HPV,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,CyborgLegs,ZNULLREPAIR,CYBORG_SUPER,DefaultSensor1Mk1,1
NP-M-CON-HalfTrack,397,Body8MBT,ZNULLBRAIN,Spade1Mk1,ZNULLECM,1,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,0
NP-M-CON-Track,398,Body8MBT,ZNULLBRAIN,Spade1Mk1,ZNULLECM,1,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,0
NP-M-Repair-HalfTrack,399,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,1,tracked01,LightRepair1,DROID,DefaultSensor1Mk1,0
NP-M-Command-Track,400,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,1,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
NP-M-CBS-Halftrack,402,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,1,HalfTrack,ZNULLREPAIR,DROID,Sys-CBTurret01,0
NP-L-LtCannon-Halftrack,403,Body4ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,1,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-M-Repair-T,405,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,tracked01,LightRepair1,DROID,DefaultSensor1Mk1,0
CO-M-Vstrike-T,407,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,tracked01,ZNULLREPAIR,DROID,Sys-VstrikeTurret01,0
CO-M-VTOLCBS-T,408,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,tracked01,ZNULLREPAIR,DROID,Sys-VTOLCBTurret01,0
CO-H-Command-Track,410,Body9REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-M-HMG-T,411,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-M-LTAT-Hover,412,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-M-HPVCannon-Tracks,413,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-M-Rocket-LtA-T-T,415,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-M-Rocket-HvyA-T-Track,417,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-H-RotCan-Track,418,Body9REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-H-HPVCannon-Tracks,419,Body9REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-H-Rkt-BB-T,420,Body9REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-M-HvMortar-T,421,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-M-RotMortar-T,422,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-H-RotHow-Track,423,Body9REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-L-Rocket-LtA-T-VTOL,424,Body2SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-H-COM-H,425,Body9REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-L-RotMG-VTOL,426,Body2SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-M-Bomb1-VTOL,427,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-M-Bomb2-VTOL,428,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-H-QuadBofAA-T,429,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-H-QuadRotAA-T,430,Body9REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
NX-M-Link-Hover,431,Body7ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,3,hover01,ZNULLREPAIR,DROID,NavGunSensor,1
NX-H-CBS-Hover,432,Body10MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,3,hover01,ZNULLREPAIR,DROID,Sys-CBTurret01,0
NX-M-Strike-Hover,433,Body7ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,3,hover01,ZNULLREPAIR,DROID,Sys-VstrikeTurret01,0
NX-M-VTOLCBS-Hover,434,Body7ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,3,hover01,ZNULLREPAIR,DROID,Sys-VTOLCBTurret01,0
NX-M-PulseLas-Hover,437,Body7ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,3,hover01,ZNULLREPAIR,DROID,NavGunSensor,1
NX-H-Rail3-Hover,438,Body10MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,3,hover01,ZNULLREPAIR,DROID,NavGunSensor,1
NX-L-Flash-Hover,439,Body3MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,3,hover01,ZNULLREPAIR,DROID,NavGunSensor,1
NX-L-Missile-MdArt-Hover,440,Body3MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,3,hover01,ZNULLREPAIR,DROID,NavGunSensor,1
NX-H-HvMiss-Hover,441,Body10MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,3,hover01,ZNULLREPAIR,DROID,NavGunSensor,1
NX-L-Rail1-VTOL,443,Body3MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,3,V-Tol,ZNULLREPAIR,DROID,NavGunSensor,1
NX-H-Rail2-VTOL,444,Body7ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,3,V-Tol,ZNULLREPAIR,DROID,NavGunSensor,1
Cyb-Flamer-GROUND,446,CyborgFlamerGrd,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,0,CyborgLegs,ZNULLREPAIR,CYBORG,DefaultSensor1Mk1,1
Cyb-Cannon-GROUND,447,CyborgCannonGrd,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,0,CyborgLegs,ZNULLREPAIR,CYBORG,DefaultSensor1Mk1,1
Cyb-Rocket-GROUND,448,CyborgRkt1Ground,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,0,CyborgLegs,ZNULLREPAIR,CYBORG,DefaultSensor1Mk1,1
Cyb-RotMG-GROUND,449,CybRotMgGrd,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,0,CyborgLegs,ZNULLREPAIR,CYBORG,DefaultSensor1Mk1,1
BaBaCivilian,451,B1BaBaPerson01,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,7,BaBaLegs,ZNULLREPAIR,PERSON,DefaultSensor1Mk1,0
ViperRepairWheels,452,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,wheeled01,LightRepair1,DROID,DefaultSensor1Mk1,0
ViperRepairHalftrack,453,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,HalfTrack,LightRepair1,DROID,DefaultSensor1Mk1,0
ViperMG01Wheels,454,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,wheeled01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
ViperMG02Wheels,455,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,wheeled01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
ViperMG02Halftrack,456,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
ViperHMGHalftrack,457,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
ViperHMGTracks,458,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
ViperLtA-Twheels,459,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,wheeled01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
ViperPODWheels,460,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,wheeled01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
ViperMRLWheels,461,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,wheeled01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
ViperBBWheels,462,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,wheeled01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CobraSpadeTracks,463,Body5REC,ZNULLBRAIN,Spade1Mk1,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,0
CobraSensorHalftrack,464,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,HalfTrack,ZNULLREPAIR,DROID,SensorTurret1Mk1,0
CobraFlameTracks,466,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CobraHvyMortarHalftrack,467,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CobraComHalftrack,468,Body5REC,CommandBrain01,ZNULLCONSTRUCT,ZNULLECM,6,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CobraLtA-Thalftrack,469,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CobraMRLHalftrack,470,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
PythonComTracks,471,Body11ABT,CommandBrain01,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
PythonMedCnTrks,472,Body11ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
P0PythonHvyCnTrks,481,Body11ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
P0CobraSpadeTracks,482,Body5REC,ZNULLBRAIN,Spade1Mk1,ZNULLECM,2,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,0
P0CobraFlameTracks,483,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
P0CobraMedCnTrks,484,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-M-HvFlame-Track,495,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-M-RR-HT,496,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-M-CBS-T,497,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,tracked01,ZNULLREPAIR,DROID,Sys-CBTurret01,0
CO-M-ROTMG-T,498,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-M-HVAT-V,499,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
P0CobraLtATRktHtrack,500,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
P0CobraHvyMGHtrack,501,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
P0PythonComTracks,502,Body11ABT,CommandBrain01,ZNULLCONSTRUCT,ZNULLECM,2,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CO-M-HVAT-Hover,503,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
P0CobraRepairTrks,504,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,tracked01,LightRepair1,DROID,DefaultSensor1Mk1,0
CO-L-Bomb1-VTOL,505,Body2SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,2,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
Cyb-Atmiss-GROUND,506,Cyb-Bod-Atmiss,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,0,CyborgLegs,ZNULLREPAIR,CYBORG,DefaultSensor1Mk1,1
Cyb-Laser1-GROUND,508,Cyb-Bod-Las1,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,0,CyborgLegs,ZNULLREPAIR,CYBORG,DefaultSensor1Mk1,1
Cyb-Rail1-GROUND,509,Cyb-Bod-Rail1,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,0,CyborgLegs,ZNULLREPAIR,CYBORG,DefaultSensor1Mk1,1
P6-L-LTAT-V,510,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
P6-L-Bomb1-V,511,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
P6-M-QMG1-HT,512,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
P0cam3CobCONTrk,513,Body5REC,ZNULLBRAIN,Spade1Mk1,ZNULLECM,3,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,0
P0cam3PyHvyATTrk,514,Body11ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,3,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
P0cam3PyHPVcanTrk,515,Body11ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,3,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
P0cam3PyFlakHT,516,Body11ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,3,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
P0cam3PyAsltGnTrk,517,Body11ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,3,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
NX-M-Bomb4-VTOL,518,Body7ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,3,V-Tol,ZNULLREPAIR,DROID,NavGunSensor,1
NX-M-HvSam-Hover,519,Body7ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,3,hover01,ZNULLREPAIR,DROID,NavGunSensor,1
NX-L-Link-Hov,520,Body3MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,3,hover01,ZNULLREPAIR,DROID,NavGunSensor,1
NX-M-Bomb2-VTOL,521,Body7ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,3,V-Tol,ZNULLREPAIR,DROID,NavGunSensor,1
CyborgRotMgGround,522,CybRotMgGrd,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,5,CyborgLegs,ZNULLREPAIR,CYBORG,DefaultSensor1Mk1,1
Sk-PythonHvCanTrack,523,Body11ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
Sk-CobraBBHover,524,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
MP-Cyb-Laser1-GRD,525,Cyb-Bod-Las1,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,5,CyborgLegs,ZNULLREPAIR,CYBORG,DefaultSensor1Mk1,1
MP-Cyb-ATmiss-GRD,526,Cyb-Bod-Atmiss,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,5,CyborgLegs,ZNULLREPAIR,CYBORG,DefaultSensor1Mk1,1
SK-Cobra-Hover-HMG,527,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Cobra-Hover-BB,528,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Cobra-Hover-Lancer,529,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Python-Hover-Mcannon,530,Body11ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Python-Hover-Hcannon,531,Body11ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Python-Hover-Lancer,532,Body11ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Python-Track-Hcannon,533,Body11ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Cobra-Track-HVC,534,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Cobra-Track-TK,535,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Bug-Hover-HMG,536,Body4ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Scorp-Hover-ASGUN,537,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Scorp-Hover-Mcannon,538,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Scorp-Hover-Bombard,539,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Scorp-Hover-Lancer,540,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Scorp-Hover-BB,541,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Mantis-Hover-Hcannon,542,Body12SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Mantis-Hover-HVC,543,Body12SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Leopard-Track-Lancer,544,Body2SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Leopard-HTrk-ASGun,545,Body2SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Panther-Track-HVC,546,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Panther-Hover-HVC,547,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Panther-Track-TK,548,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Panther-Hover-TK,549,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Panther-Htrk-ASGun,550,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Panther-Htrk-BB,551,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Tiger-Track-Hcannon,552,Body9REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Tiger-Hover-Hcannon,553,Body9REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Tiger-Track-HVC,554,Body9REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Tiger-Hover-HVC,555,Body9REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Tiger-Track-TK,556,Body9REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Tiger-Hover-TK,557,Body9REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Tiger-Track-ASCannon,558,Body9REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Tiger-Hover-ASCannon,559,Body9REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Leopard-Htrk-Needle,561,Body2SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Leopard-Hover-Needle,562,Body2SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Panther-Track-RailGun,564,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Tiger-Track-Scourge,565,Body9REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Tiger-Hover-Scourge,566,Body9REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Tiger-Track-Gauss,567,Body9REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Tiger-Hover-Gauss,568,Body9REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Retal-Track-Needle,569,Body3MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Retre-Track-PulseLsr,570,Body7ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Retre-Track-FlashLight,571,Body7ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Retre-Htrk-Pepper,572,Body7ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Retre-Track-RailGun,573,Body7ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Retre-Hover-RailGun,574,Body7ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Retre-Track-Scourge,575,Body7ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Retre-Hover-Scourge,576,Body7ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Veng-Track-Gauss,577,Body10MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Veng-Hover-Gauss,578,Body10MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Veng-Track-PulseLsr,579,Body10MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Veng-Hover-PulseLsr,580,Body10MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Veng-Track-Scourge,581,Body10MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Veng-Hover-Scourge,582,Body10MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Bug-Hover-Sensor,583,Body4ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,SensorTurret1Mk1,0
SK-Bug-Hover-Repair,584,Body4ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,LightRepair1,DROID,DefaultSensor1Mk1,0
SK-Leopard-Hover-Sensor,585,Body2SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,SensorTurret1Mk1,0
SK-Leopard-Hover-Repair,586,Body2SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,LightRepair1,DROID,DefaultSensor1Mk1,0
SK-Panther-Track-Repair,587,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,LightRepair1,DROID,DefaultSensor1Mk1,0
SK-Retal-Hover-Repair,588,Body3MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,LightRepair1,DROID,DefaultSensor1Mk1,0
SK-Retal-Hover-Sensor,589,Body3MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,SensorTurret1Mk1,0
SK-Bug-VTOL-CLBomb,590,Body4ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Bug-VTOL-BB,591,Body4ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Scorpion-VTOL-BB,592,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Scorpion-VTOL-Hbomb,593,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Mantis-VTOL-BB,594,Body12SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Leopard-VTOL-BB,595,Body2SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Leopard-VTOL-PhosBomb,596,Body2SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Panther-VTOL-Thermite,597,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Panther-VTOL-BB,598,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Panther-VTOL-Phosbomb,599,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Panther-VTOL-TK,600,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Retal-VTOL-Phosbomb,601,Body3MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Retre-VTOL-Thermite,602,Body7ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Retre-VTOL-PulseLsr,603,Body7ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Retre-VTOL-Scourge,604,Body7ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
MP-Cyb-Needle-GRD,608,Cyb-Bod-Rail1,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,5,CyborgLegs,ZNULLREPAIR,CYBORG,DefaultSensor1Mk1,1
Cyb-Thermite,609,Cyb-Bod-Thermite,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,0,CyborgLegs,ZNULLREPAIR,CYBORG,DefaultSensor1Mk1,1
Cyb-Gren,610,Cyb-Bod-Grenade,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,0,CyborgLegs,ZNULLREPAIR,CYBORG,DefaultSensor1Mk1,1
Cyb-ComEng,611,Cyb-Bod-ComEng,ZNULLBRAIN,CyborgSpade,ZNULLECM,0,CyborgLegs,ZNULLREPAIR,CYBORG_CONSTRUCT,DefaultSensor1Mk1,0
Cyb-Mechanic,612,Cyb-Bod-Mechanic,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,0,CyborgLegs,CyborgRepair,CYBORG_REPAIR,DefaultSensor1Mk1,0
Cyb-Hvy-Mcannon,613,Cyb-Hvybod-Mcannon,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,0,CyborgLegs,ZNULLREPAIR,CYBORG_SUPER,DefaultSensor1Mk1,1
Cyb-Hvy-Acannon,614,Cyb-Hvybod-Acannon,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,0,CyborgLegs,ZNULLREPAIR,CYBORG_SUPER,DefaultSensor1Mk1,1
Cyb-Hvy-PulseLsr,619,Cyb-Hvybod-PulseLsr,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,0,CyborgLegs,ZNULLREPAIR,CYBORG_SUPER,DefaultSensor1Mk1,1
Cyb-Hvy-TK,617,Cyb-Hvybod-TK,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,0,CyborgLegs,ZNULLREPAIR,CYBORG_SUPER,DefaultSensor1Mk1,1
Cyb-Hvy-HPV,618,Cyb-Hvybod-HPV,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,0,CyborgLegs,ZNULLREPAIR,CYBORG_SUPER,DefaultSensor1Mk1,1
Cyb-Hvy-RailGunner,620,Cyb-Hvybod-RailGunner,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,0,CyborgLegs,ZNULLREPAIR,CYBORG_SUPER,DefaultSensor1Mk1,1
Cyb-Hvy-A-T,621,Cyb-Hvybod-A-T,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,0,CyborgLegs,ZNULLREPAIR,CYBORG_SUPER,DefaultSensor1Mk1,1
SK-Veng-Track-C6TwinAslt,622,Body10MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Veng-Track-HvyLaser,623,Body10MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CobraHRepairHover,625,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,HeavyRepair,DROID,DefaultSensor1Mk1,0
ViperHMGWheels,626,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,wheeled01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
Scourge-Mantis-H,627,Body12SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CobraHMGTracks,628,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
A-Viper-Wheels-MG,629,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,wheeled01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
A-Viper-Wheels-TMG,630,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,wheeled01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
A-Viper-Wheels-HMG,631,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,wheeled01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
A-Cobra-Wheels-HMG,632,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,wheeled01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
A-Cobra-Hover-HMG,633,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
A-Cobra-Hover-MC,634,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
A-Scorp-Hover-MC,635,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
A-Python-Hover-MC,636,Body11ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
A-Python-Hover-HC,637,Body11ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
A-Python-Trk-HC,638,Body11ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
A-Tiger-Trk-HC,639,Body9REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
A-Tiger-Trk-Needle,640,Body9REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
A-Retrib-Trk-Needle,641,Body7ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
A-Veng-Trk-Needle,642,Body10MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
A-Veng-Trk-Rail,643,Body10MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
A-Veng-Trk-Guass,644,Body10MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
A-Veng-Trk-Scourge,645,Body10MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
A-Mantis-Trk-Pulse,646,Body12SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
A-Mantis-Trk-Rail,647,Body12SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
V-Bug-ClusterBomb,648,Body4ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
V-Bug-BB,649,Body4ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
V-Bug-Lancer,650,Body4ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
V-Bug-HPV,651,Body4ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
V-Scor-ClusterBomb,652,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
V-Scor-BB,653,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
V-Scor-Lancer,654,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
V-Scor-HPV,655,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
A-Python-Trk-Lancer,656,Body11ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
A-Mantis-Trk-Lancer,657,Body12SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
A-Veng-Trk-TK,658,Body10MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
V-Mantis-Lancer,659,Body12SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
V-Mantis-HPV,660,Body12SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
A-Rep-Cobra-Trk,661,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,LightRepair1,DROID,DefaultSensor1Mk1,0
A-Rep-Mantis-Trk,662,Body12SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,HeavyRepair,DROID,DefaultSensor1Mk1,0
A-Viper-Trk-MG,663,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
A-Viper-Trk-TMG,664,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
A-Viper-Trk-HMG,665,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
A-Cobra-Trk-HMG,666,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
A-Scorp-Trk-MC,667,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
TK-Mantis-H,684,Body12SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
Cobra-Hover-HC,685,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
H-Scorp-Trk-Lancer,687,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
H-Scorp-Trk-HC,688,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
H-Scorp-VTOL-Lancer,689,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
H-Scorp-VTOL-BB,689,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
Viper-Trk-Com,690,Body1REC,CommandBrain01,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
Cobra-Trk-Com,691,Body5REC,CommandBrain01,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
Scorp-Trk-Com,692,Body8MBT,CommandBrain01,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CobraTrkLancer,693,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
MantisTrkHC,694,Body12SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
MantisTKTracks,695,Body12SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
ScorpTrkHMG,696,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
ScorpRepairTrk,697,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,LightRepair1,DROID,DefaultSensor1Mk1,0
ScorpHRepairHover,698,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,HeavyRepair,DROID,DefaultSensor1Mk1,0
CobraHoverTruck,699,Body5REC,ZNULLBRAIN,Spade1Mk1,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,0
ScorpHoverTruck,700,Body8MBT,ZNULLBRAIN,Spade1Mk1,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,0
MantisHoverTruck,701,Body12SUP,ZNULLBRAIN,Spade1Mk1,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,0
CobraBBTracks,702,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
ScorpBBTracks,703,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
MantisBBTracks,704,Body12SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
Mantis-Trk-Com,705,Body12SUP,CommandBrain01,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
MantisScourgeTracks,706,Body12SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
ViperTrkLancer,707,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CobraPODHTracks,708,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CobraPODTracks,709,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CobraMRLTracks,710,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CobraInfernoHTracks,711,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
PythonHoverHVC,712,Body11ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
PythonScourgeTracks,713,Body11ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
PythonGaussTracks,714,Body11ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
PythonPulseTracks,715,Body11ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
TigerPulseTracks,717,Body9REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
TigerHvLaserTracks,718,Body9REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
WyvernGaussTracks,719,Body13SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
WyvernPulseTracks,720,Body13SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
WyvernHvLaserTracks,721,Body13SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
ViperLtMGHalfTracks,722,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
ViperFlameHalfTracks,723,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
PythonMedCanTracks,724,Body11ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
PythonTKTracks,725,Body11ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CobraInfernoHover,726,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
CobraMedCnHTrks,727,Body5REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
PythonHoverInferno,728,Body11ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
PhytonHoverAssGun,729,Body11ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
PhytonHTrackAssGun,730,Body11ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
ScorpHTrackHMG,731,Body8MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
MantisHoverAC,732,Body12SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
LeopardHoverPulseLas,733,Body2SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
PantherHoverPulseLas,734,Body6SUPP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
TigerHoverPulseLas,735,Body9REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
TigerHoverRailGun,736,Body9REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,hover01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
WyvernPlasmaCTracks,737,Body13SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
WyvernScourgeTracks,738,Body13SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
RetreHoverFlashLight,739,Body13SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,tracked01,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
ViperPODHalfTracks,740,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
ViperMRLHalfTracks,741,Body1REC,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,HalfTrack,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Mantis-VTOL-PBB,742,Body12SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Mantis-VTOL-HBB,743,Body12SUP,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Retre-VTOL-HBB,744,Body7ABT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1
SK-Retal-VTOL-Scourge,745,Body3MBT,ZNULLBRAIN,ZNULLCONSTRUCT,ZNULLECM,6,V-Tol,ZNULLREPAIR,DROID,DefaultSensor1Mk1,1

View File

@ -6,8 +6,7 @@ include $(top_srcdir)/makerules/common.mk
DYDOAILIST = \
multiplay \
images \
messages \
stats
messages
DYDOAIARCHIVE = dydo-ai.wz

View File

@ -0,0 +1,34 @@
PIE 3
TYPE 0
TEXTURE 0 page-17-droid-weapons.png 0 0
LEVELS 1
LEVEL 1
POINTS 17
5 1 8
-3 4 6
-5 1 8
-6 4 0
-9 1 0
-5 1 -8
-3 4 -6
5 1 -8
3 4 -6
0 4 0
9 1 0
3 4 6
6 4 0
12 1 12
12 1 -12
-12 1 -12
-12 1 12
POLYGONS 10
200 4 11 1 2 0 196 156 176 156 176 176 196 176
200 4 1 3 4 2 13 180 0 180 0 191 13 191
200 4 3 6 5 4 13 180 0 180 0 191 13 191
200 4 6 8 7 5 0 180 13 180 13 191 0 191
200 4 8 12 10 7 0 180 13 180 13 191 0 191
200 4 11 12 8 9 141 51 145 59 141 67 136 59
200 4 3 1 11 9 127 59 131 51 141 51 136 59
200 4 8 6 3 9 141 67 131 67 127 59 136 59
200 4 12 11 0 10 0 180 13 180 13 191 0 191
200 4 13 14 15 16 180 28 165 28 165 43 180 43

View File

@ -1,34 +0,0 @@
PIE 2
TYPE 200
TEXTURE 0 page-17-droid-weapons.png 256 256
LEVELS 1
LEVEL 1
POINTS 17
5 1 8
-3 4 6
-5 1 8
-6 4 0
-9 1 0
-5 1 -8
-3 4 -6
5 1 -8
3 4 -6
0 4 0
9 1 0
3 4 6
6 4 0
12 1 12
12 1 -12
-12 1 -12
-12 1 12
POLYGONS 10
200 4 11 1 2 0 196 156 176 156 176 176 196 176
200 4 1 3 4 2 13 180 0 180 0 191 13 191
200 4 3 6 5 4 13 180 0 180 0 191 13 191
200 4 6 8 7 5 0 180 13 180 13 191 0 191
200 4 8 12 10 7 0 180 13 180 13 191 0 191
200 4 11 12 8 9 141 51 145 59 141 67 136 59
200 4 3 1 11 9 127 59 131 51 141 51 136 59
200 4 8 6 3 9 141 67 131 67 127 59 136 59
200 4 12 11 0 10 0 180 13 180 13 191 0 191
200 4 13 14 15 16 180 28 165 28 165 43 180 43

View File

@ -16,49 +16,48 @@ Thanks to everyone for licensing their work GPL2+ so it could be compiled into t
=============== Credits ===============
NTW Mod:
Compiled and Made by Delphinio - jurgfrnd@aol.com
Compiled and Made by Delphinio - jurgfrnd@aol.com
New Team War Map 1 (New_TeamWar):
Made by LPC_Actinia
Idea by GOD-Lordy
Made by LPC_Actinia
Idea by GOD-Lordy
New Team War Map 2 (NTW_ver2):
Made by Delphinio - jurgfrnd@aol.com
Made by Delphinio - jurgfrnd@aol.com
Idea by GOD-Lordy
-------- Based on work by --------
Walls / Gates(.pie files):
Elric - elrictheslayer@neo.rr.com
GrimMoroe - grimandmandy@hotmail.com
Walls:
Elric - elrictheslayer@neo.rr.com
GrimMoroe - grimandmandy@hotmail.com
1.12 Patch:
Stratadrake - strata_ranger@hotmail.com and http://en.wikipedia.org/wiki/User:Stratadrake
Stratadrake - strata_ranger@hotmail.com and http://en.wikipedia.org/wiki/User:Stratadrake
Nuclear Reactor & Cooling Tower Script / Ai Boost:
Kevin - kevin@etmalec.net and irc://irc.freenode.net/ as Kevin`
Speedy - http://capszwo.de/
Nuclear Reactor & Cooling Tower Script:
Kevin - kevin@etmalec.net and irc://irc.freenode.net/ as Kevin`
LiveOrDie / LOD Mod:
RSGod - stevenpardons@msn.com
NIKER - irc://irc.gamesurge.net/#warzoneeliteforce and http://wef.warzone2100.de/
RSGod - stevenpardons@msn.com
NIKER - irc://irc.gamesurge.net/#warzoneeliteforce and http://wef.warzone2100.de/
NTW Mod Image:
Pychnight - war455@hotmail.com
Pychnight - war455@hotmail.com
AI - Aivolution:
Troman - temp@online.de or ICQ: 82378034
AI - GK:
Troman - temp@online.de or ICQ: 82378034
Fish, Dolphin, Whale Bodys (not the Textures):
Mertens - http://forums.wz2100.net
Fish, Dolphin, Whale Bodys (.pie Files, not .png):
Mertens - http://forums.wz2100.net
Factory Textures
Mysteryem - http://www.mysterymayhem.co.uk
Factory, Power & Button Textures
Mysteryem - http://www.mysterymayhem.co.uk
Camo Textures
Black Project - http://forums.wz2100.net
Black Project - http://forums.wz2100.net
The Rest is made/remade by me:
Delphinio - jurgfrnd@aol.com
Delphinio - jurgfrnd@aol.com
=============== Special Thanks to ===============
@ -72,4 +71,4 @@ For a bit more "instant" tech/game talk,
there is also an IRC-Channel called #warzone2100 on freenode.
Due the fact that the most "official" guys live in europe,
you may meet us there around late afternoon (CET) with a little luck.
But there are also some other nice guys which can may help you.
But there are also some other nice guys which can may help you.

Some files were not shown because too many files have changed in this diff Show More