-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrules.ini
5577 lines (5289 loc) · 85.9 KB
/
rules.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
; RULES.INI
; If placed in game directory, it will override built in values. Values to be used as multipliers
; or percentages can be specified as either a simple floating point number (embed ".") or as a
; conventional percentage number (append "%"). Values used as cell distances or time delays
; are specified as simple floating point number. Distance values are expressed in cells. Time
; values are expressed in minutes.
[General]
; crates
CrateMinimum=1 ; crates are normally one per human player but never below this number
CrateMaximum=255 ; crates can never exceed this quantity
CrateRadius=3.0 ; radius (cells) for area effect crate powerup bonuses
CrateRegen=3 ; average minutes between random powerup crate regeneration
UnitCrateType=none ; specifies specific unit type for unit type crate ['none' means pick randomly]
WaterCrateChance=20% ; chance that a water crate will be generated rather than land crate [multiplay only]
SoloCrateMoney=2000 ; money to give for money crate in solo play missions
SilverCrate=HealBase ; solo play silver crate bonus
WaterCrate=Money ; solo play water crate bonus
WoodCrate=Money ; solo play wood crate bonus
; special weapons
ChronoDuration=3 ; time that a unit will remain chronoshifted before returning to start location
ChronoKillCargo=yes ; Should cargo be destroyed when object is chronoshifted?
ChronoTechLevel=12 ; Tech level at which Chrono facility can create Chrono effect
GPSTechLevel=8 ; tech level at which GPS satelite becomes available
GapRadius=10 ; radius of gap generator (cells)
GapRegenInterval=.1 ; gap generators will regenerate their shroud at this time interval
IronCurtain=.75 ; minutes that Iron Curtain invulnerability lasts
ParaTech=5 ; tech level when free para-infantry appears from airstrip
ParabombTech=8 ; tech level that parabomb appears free with airfield
RadarJamRadius=15 ; cell radius distance that mobile radar jammer is effective
SpyPlaneTech=5 ; tech level when free spy plane appears from airstrip
BadgerBombCount=1 ; number of badgers used to drop parabombs
; Chrono side effects
QuakeChance=20% ; percentage chance time quake will occur with each chronoshift use
QuakeDamage=33% ; percentage damage to inflict when time quake occurs
VortexChance=20% ; percent chance that chronal vortex occurs with each chronoshift use
VortexDamage=200 ; damage inflicted by vortex discharge
VortexRange=10 ; scan for victims up to this distance away [in cells]
VortexSpeed=10 ; speed of vortex movement
; repair and refit
RefundPercent=50% ; percent of original cost to refund when building/unit is sold
ReloadRate=.04 ; minutes to reload each ammo point for aircraft or helicopters
RepairPercent=20% ; percent cost to fully repair as ratio of full cost
RepairRate=.016 ; minutes between applying repair step
RepairStep=7 ; hit points to heal per repair 'tick' for buildings
URepairPercent=20% ; [units only] percent cost to fully repair as ratio of full cost
URepairStep=10 ; [units only] hit points to heal per repair 'tick' for units
; combat and damage
TurboBoost=1.5 ; speed multiplier for turbo-boosted weapons when firing upon aircraft
APMineDamage=1000 ; damage to inflict when anti-personnel mine explodes
AVMineDamage=1200 ; damage to inflict when anti-vehicle mine explodes
AtomDamage=1000 ; damage points when nuclear bomb explodes (regardless of source)
BallisticScatter=1.0 ; maximum scatter distance (cells) for inaccurate ballistic projectiles
BridgeStrength=1000 ; strength of bridge [smaller means more easily destroyed]
C4Delay=.03 ; minutes to delay after placing C4 before building will explode
Crush=1.5 ; if this close (cells) to crushable target, then crush instead of firing upon it (computer only)
ExpSpread=.3 ; cell damage spread per 256 damage points for exploding object types [if Explodes=yes]
FireSupress=1 ; radius from target to look for friendlies and thus discourage firing upon, if found
HomingScatter=2.0 ; maximum scatter distance (cells) for inaccurate homing projectiles
MaxDamage=1000 ; maximum damage (after adjustments) per shot
MinDamage=1 ; minimum damage (after adjustments) per shot
OreExplosive=no ; Does the harvester explode big time when destroyed?
PlayerAutoCrush=no ; Will player controlled units automatically try to crush enemy infantry?
PlayerReturnFire=no ; More aggressive return fire from player controlled objects?
PlayerScatter=no ; Will player units scatter, of their own accord, from threats and damage?
ProneDamage=50% ; when infantry is prone, damage is reduced to this percentage
TreeTargeting=no ; Automatically show target cursor when over trees?
Incoming=10 ; If an incoming projectile is as slow or slower than this, then
; object in the target location will try to run away. Grenades and
; parachute bombs have this characteristic.
; income and production
BailCount=28 ; number of 'bails' carried by a harvester
BuildSpeed=.8 ; general build speed [time (in minutes) to produce a 1000 credit cost item]
BuildupTime=.06 ; average minutes that building build-up animation runs
GemValue=50 ; gem credits per 'bail' carried by a harvester
GoldValue=25 ; gold credits per 'bail' carried by a harvester
GrowthRate=2 ; minutes between ore (Tiberium) growth
OreGrows=yes ; Does ore grow denser over time?
OreSpreads=yes ; Does ore spread into adjacent areas?
OreTruckRate=1 ; speed that harvester truck manages ore [larger means slower]
SeparateAircraft=no ; Is first helicopter to be purchased separately from helipad?
SurvivorRate=.4 ; fraction of building cost to be converted to survivors when sold
; audio/visual map controls
AllyReveal=yes ; Allies automatically reveal radar maps to each other?
ConditionRed=25% ; when damaged to this percentage, health bar turns red
ConditionYellow=50% ; when damaged to this percentage, health bar turns yellow
DropZoneRadius=4 ; distance around drop zone flair that map reveals itself
EnemyHealth=yes ; Show enemy health bar graph when selected?
Gravity=3 ; gravity constant for ballistic projectiles
IdleActionFrequency=.1 ; average minutes between infantry performing idle actions
MessageDelay=.6 ; time duration of multiplayer messages displayed over map
MovieTime=.06 ; minutes that movie recorder will record when activated (debug version only)
NamedCivilians=no ; Show true names over civilians and civilian buildings?
SavourDelay=.03 ; delay between scenario end and ending movie [keep the delay short]
ShroudRate=4 ; minutes between each shroud creep process [0 means no shadow creep]
SpeakDelay=2 ; minutes between EVA repeating advice to the player
TimerWarning=2 ; if mission timer is less than this many minutes, then display in red
FlashLowPower=yes ; Flash the power bar when power is low?
; computer and movement controls
CurleyShuffle=no ; Should helicopter shuffle position between shots (as in C&C)?
BaseBias=2 ; multiplier to threat target value when enemy is close to friendly base
BaseDefenseDelay=.25 ; minutes delay between sending response teams to deal with base threat
CloseEnough=2.75 ; If distance to destination less than this, then abort movement if otherwise blocked.
DamageDelay=1 ; minutes between applying trivial structure damage when low on power
GameSpeeBias=1 ; multiplier to overall game object movement speed
LZScanRadius=16 ; maximum radius to scan for alternate landing zone if otherwise occupied
MineAware=yes ; Are friendly units smart enough to avoid friendly mines?
Stray=2.0 ; radius distance (cells) that team members may stray without causing regroup action
SubmergeDelay=.02 ; forced delay that subs will remain on surface before allowing to submerge
SuspendDelay=2 ; minutes that suspended teams will remain suspended
SuspendPriority=20 ; teams with less than this priority will suspend during base defense ops
TeamDelay=.6 ; interval between checking for and creating teams
; misc
FineDiffControl=no ; Allow 5 difficulty settings instead of only 3 settings?
MCVUndeploy=no ; Allow construction yard to undeploy back into MCV?
; ******* Theme Controls *******
; Controls when each theme becomes available in solo play. Each
; theme identifier is given a scenario and owner. The theme will
; become available at that scenario or later and for the specified
; owner only. If no owner is specified, it is presumed to be available
; for all sides.
[ThemeControl]
ROLLOUT=1
UNDER3=1
FAC1226M=1
RUN1226M=1
RADIO2=1
FAC2226M=1
DENSE_R=1
FLOAT_V2=1
SHUT_IT=1
CHAOS2=1
ARAZIOD=1
SEARCH=1
AWAIT=1
SNAKE=1
TWINMIX1=1
GRNDWIRE=1
TWIN=1
FOGGER1A=1
GLOOM=1
TRACTION=1
BACKSTAB=1
BIGF226M=1
SMSH226M=1
WORK226M=1
HELL226M=1
VECTOR1A=1
TREN226M=1
WASTELND=1
TERMINAT=1
CRUS226M=1
2ND_HAND=1
VR2=1
BOG=1
RPT=1
; ******* Multiplayer Settings *******
; These are the multiplayer dialog default settings. Does not apply to
; Westwood chat, only to the in-game dialogs.
[MultiplayerDefaults]
Money=10000
MaxMoney=20000
ShadowGrow=no
Bases=yes
OreGrows=yes
Crates=no
AIPlayers=no
CaptureTheFlag=no
; ******* Special weapon charge times *******
; The time (minutes) for recharge of these special weapons.
[Recharge]
Chrono=7 ; chronosphere
GPS=8 ; satellite radar
IronCurtain=11 ; invulnerability device
Nuke=13 ; nuclear missile
ParaBomb=14 ; parachute bombs
Paratrooper=7 ; paratroopers
Saboteur=14 ; para-saboteur
Sonar=10 ; sonar pulse
SpyPlane=3 ; recon mission
; ******* Object Heap Maximums *******
; These are the absolute maximum number of these object types
; allowed in the game (at any one time).
[Maximums]
Players=8 ; ipx layer limits this to 8 maximum
Aircraft=100
Anim=100
Building=500
Bullet=50
Factory=32 ; 32 is minimum for 8 player game
Infantry=500
Overlay=1 ; special case -- only needs one
Projectile=20 ; projectile types, not actual projectiles
Smudge=1 ; special case -- only needs one
Team=60
TeamType=60
Template=1 ; special case -- only needs one
Terrain=500 ; trees and rocks
TrigType=80 ; trigger types
Trigger=200 ; triggers themselves
Unit=500
Vessel=100
Warhead=10 ; warhead types, not actual warheads
Weapon=55 ; weapon types, not actual weapons
; ******* AI Controls *******
; Computer Skirmish-Mode behavior controls. The ratio values are based on the
; number of buildings in the computer base that should be of the type specified.
; The ratio total should exceed 100% so that the base will always try to grow as
; it vainly attempts to achieve the specified percentage composition.
; Take note: The computer AI in Red Alert is merely a warmed over version
; of the AI experiment I wrote during the unallocated time in the month
; following C&C's release. It was more than adequate at that time (even
; difficult to beat), but since Red Alert is a very different game, the skirmish
; mode AI is somewhat under-effective. In order to improve the AI
; over this initial experiment, the following controls are provided. It might
; be possible to manipulate these values to achieve a greater challenge when
; playing the computer opponent.
[AI]
AttackInterval=3 ; average delay between computer attacks
AttackDelay=5 ; average delay time before computer begins first attack
PatrolScan=.016 ; minute interval between scanning for enemys while patrolling.
CreditReserve=100 ; Structure repair will not begin if available cash falls below this amount.
PathDelay=.01 ; Delay (minutes) between retrying when path is blocked.
OreNearScan=6 ; cell radius to scan when harvesting a single patch of ore
OreFarScan=48 ; cells radius to scan when looking for a new ore patch to harvest
AutocreateTime=5 ; average minutes between creating an 'autocreate' team
InfantryReserve=3000 ; always build infantry if cash reserve is greater than this
InfantryBaseMult=1 ; build infantry if building count times this number is less than current infantry quantity
PowerSurplus=50 ; build power plants until power surplus is at least this amount
BaseSizeAdd=3 ; computer base size can be no larger than the largest human opponent, plus this quantity
RefineryRatio=.16 ; ratio of base that should be composed of refineries
RefineryLimit=4 ; never build more than this many refineries
BarracksRatio=.16 ; ratio of base that should be composed of barracks
BarracksLimit=2 ; never build more than this many barracks
WarRatio=.1 ; ratio of base that should be composed of war factories
WarLimit=2 ; never build more than this many war factories
DefenseRatio=.4 ; ratio of base that should be defensive structures
DefenseLimit=40 ; maximum number of defensive buildings to build
AARatio=.14 ; ratio of base that should be anti-aircraft defense
AALimit=10 ; maximum number of anti-aircraft buildings to build
TeslaRatio=.16 ; ratio of base that should be telsa coils
TeslaLimit=10 ; maximum number of tesla coils to build
HelipadRatio=.12 ; ratio of base that should be composed of helipads
HelipadLimit=5 ; maximum number of helipads to build
AirstripRatio=.12 ; ratio of base that should be composed of airstrips
AirstripLimit=5 ; maximum number of airstrips to build
CompEasyBonus=yes ; When more than one human in game, computer player goes to "easy" mode?
Paranoid=yes ; Will computer players ally with each other if the situation looks bleak?
PowerEmergency=75% ; sell buildings to raise power level if it falls below this percentage
; ******* IQ setting for computer activity *******
; Each player (computer controlled or otherwise) is given an IQ rating that is used
; to control what the computer is allowed to automatically control. This is
; distinct from the difficulty setting. The higher the IQ setting, the more autonomous
; and intelligent the side will behave. Each ability is given a rating that
; indicates the IQ level (or above) that the ability will be granted. Because such
; abilities are automatically performed by the computer, giving a human controlled
; country a high IQ is not recommended. Otherwise the player's units will start to
; automatically "do their own thing"! A human controlled country is presumed to have
; an IQ rating of zero. A computer controlled country has an IQ of 1 or higher.
; When in skirmish mode or when multiplayer AIs are active, the computer IQ is set to
; the maximum.
[IQ]
MaxIQLevels=5 ; the maximum number of discrete IQ levels
SuperWeapons=4 ; super weapons are automatically fired by computer
Production=5 ; building/unit production is automatically controlled by computer
GuardArea=4 ; newly produced units start in guard area mode
RepairSell=1 ; allowed to choose repair or sell of damaged buildings
AutoCrush=2 ; automatically try to crush antogonists if possible
Scatter=3 ; will scatter from incoming threats [grenades and such]
ContentScan=4 ; will consider contents of transport when picking good target
Aircraft=4 ; automatically replace aircraft or helicopters
Harvester=2 ; automatically replace lost harvesters
SellBack=2 ; allowed to sell buildings
; ******* Country Statistics *******
; Certain countries have special adjustments to their unit and building
; values. These are global values that affect ALL units and buildings owned
; by that country. This applies only to multiplayer games and skirmish mode. In
; normal game play, all values are "1.0".
; Airspeed = multiplier to speed for all air units [larger means faster] (def=1.0)
; Armor = multiplier to armor strength for all units and buildings [larger means stronger] (def=1.0)
; Cost = multiplier to cost for all units and buildings [larger means costlier] (def=1.0)
; Firepower = multiplier to firepower for all weapons [larger means more damage] (def=1.0)
; Groundspeed = multiplier to speed for all ground units [larger means faster] (def=1.0)
; ROF = multiplier to Rate Of Fire for all weapons [larger means slower ROF] (def=1.0)
; BuildTime = multiplier to general object build time [larger means longer to build] (def=1.0)
[England]
Firepower=1.0
Groundspeed=1.0
Airspeed=1.0
Armor=0.9
ROF=1.0
Cost=1.0
BuildTime=1.0
[Germany]
Firepower=1.1
Groundspeed=1.0
Airspeed=1.0
Armor=1.0
ROF=1.0
Cost=1.0
BuildTime=1.0
[France]
Firepower=1.0
Groundspeed=1.0
Airspeed=1.0
Armor=1.0
ROF=0.9
Cost=1.0
BuildTime=1.0
[Ukraine]
Firepower=1.0
Groundspeed=1.1
Airspeed=1.0
Armor=1.0
ROF=1.0
Cost=1.0
BuildTime=1.0
[USSR]
Firepower=1.0
Groundspeed=1.0
Airspeed=1.0
Armor=1.0
ROF=1.0
Cost=0.9
BuildTime=1.0
[Greece]
Firepower=1.0
Groundspeed=1.0
Airspeed=1.0
Armor=1.0
ROF=1.0
Cost=1.0
BuildTime=1.0
[Turkey]
Firepower=1.1
Groundspeed=1.0
Airspeed=1.0
Armor=1.0
ROF=1.0
Cost=1.0
BuildTime=1.0
[Spain]
Firepower=1.0
Groundspeed=1.0
Airspeed=1.0
Armor=1.0
ROF=1.0
Cost=1.0
BuildTime=1.0
; ******* Difficulty Settings *******
; Game difficulty is controlled by these factors. Some of these factors will
; only affect a computer player. The computer and the player are handicapped by
; individual settings. Thus the computer may be playing at 'difficult' level while the
; player may be playing at 'easy' level.
; Airspeed = multiplier to speed for all air units (def=1.0)
; Armor = multiplier to armor strength for all units and buildings (def=1.0)
; Cost = multiplier to cost for all units and buildings (def=1.0)
; Firepower = multiplier to firepower for all weapons (def=1.0)
; Groundspeed = multiplier to speed for all ground units (def=1.0)
; ROF = multiplier to Rate Of Fire for all weapons [larger means slower ROF] (def=1.0)
; BuildSlowdown = Should the computer build slower than the player (def=no)?
; <<< affects the computer player, not the human player >>>
; ContentScan = Should the contents of a transport be considered when picking best target (def=no)?
; RepairDelay = average delay (minutes) between initiating building repair
; BuildDelay = average delay (minutes) between initiating construction
; DestroyWalls = Allow scanning for nearby enemy walls and destroy them (def=yes)?
[Easy]
Firepower=1.2
Groundspeed=1.2
Airspeed=1.2
BuildTime=.8
Armor=1.2
ROF=.8
Cost=.8
RepairDelay=.001
BuildDelay=.001
DestroyWalls=yes
ContentScan=yes
[Normal]
Firepower=1.0
Groundspeed=1.0
Airspeed=1.0
BuildTime=1
Armor=1.0
ROF=1.0
Cost=1.0
RepairDelay=.02
BuildDelay=.03
BuildSlowdown=yes
DestroyWalls=yes
ContentScan=yes
[Difficult]
Firepower=.8
Groundspeed=.8
Airspeed=.8
BuildTime=1.0
Armor=.8
ROF=1.2
Cost=1.0
RepairDelay=.05
BuildDelay=.1
BuildSlowdown=yes
DestroyWalls=no
; ******* Unit Statistics *******
; Specifies the characteristics of the various game objects.
; Ammo = number of rounds carried between reloads [-1 means unlimited] (def=-1)
; Armor = the armor type of this object [none,wood,light,heavy,concrete] (def=none)
; Cloakable = Is it equipped with a cloaking device (def=no)?
; Cost = cost to build object (in credits)
; Explodes = Does it explode violently when destroyed [i.e., does it do collateral damage] (def=no)?
; GuardRange = distance to scan for enemies to attack (def=use weapon range)
; Image = name of graphic data to use for this object (def=same as object identifier)
; Invisible = Is completely and always invisible to enemy (def=no)?
; Owner = who can build this [Allies or Soviet] (def="allies,soviet", i.e., all)
; Points = point value for scoring purposes (def=0)
; Prerequisite = list of buildings needed before this can be manufactured (def=no requirement)
; Primary = primary weapon equipped with (def=none)
; Secondary = secondary weapon equipped with (def=none)
; ROT = Rate Of Turn for body (if present) and turret (if present) (def=0)
; Reload = time delay between reloads (def=0)
; SelfHealing = Does the object heal automatically up to half strength (def=no)?
; Sight = sight range, in cells (def=1)
; Strength = strength (hit points) of this object
; TechLevel = tech level required to build this [-1 means can't build] (def=-1)
; Sensors = Has sensors to detect nearby cloaked objects (def=no)?
; DoubleOwned = Can be built/owned by all countries in a multiplayer game (def=no)?
; <<< applies only to infantry types >>>
; C4 = Equipped with building sabotage explosives [presumes Infiltrate is true] (def=no)?
; Fraidycat = Is it inherently afraid and will panic easily (def=no)?
; Infiltrate = Can it enter a building like a spy or thief (def=no)?
; IsCanine = Should special case dog logic be applied to this?
; <<< applies only to moving units (not buildings) >>>
; Passengers = number of passengers it may carry (def=0)
; Speed = speed of this object [n/a for buildings] (def=0)
; <<< applies only to terrestrial driving vehicle types >>>
; Crushable = Can it be crushed by a heavy tracked vehicle (def=no)?
; Tracked = Is this vehicle tracked [as opposed to wheeled] (def=no)?
; NoMovingFire = The vehicle must stop before it can fire (def=no)?
; <<< applies only to building types >>>
; BaseNormal = Considered for building adjacency checks (def=yes)?
; Adjacent = distance allowed to place from other buildings (def=1)
; Bib = Should the building have an attached bib (def=no)?
; Capturable = Can this building be infiltrated by a spy/engineer (def=no)?
; Crewed = Does it contain a crew that can escape (def=no)?
; Power = power output [positive for output, negative for drain] (def=0)
; Powered = Does it require power to function (def=no)?
; Repairable = Can it be repaired (def=yes)?
; Storage = the number of credits this building can store (def=0)
; Unsellable = Cannot sell this building (even if it can be built)?
; WaterBound = Is this building placed on water only (def=no)?
; ******* terrestrial driving vehicle types *******
; SCUD launcher
[V2RL]
Prerequisite=weap,dome
Primary=SCUD
Strength=150
Armor=light
TechLevel=4
Sight=5
Speed=7
Owner=soviet
Cost=700
Points=40
ROT=5
Tracked=yes
Ammo=1
Crewed=yes
NoMovingFire=yes
DoubleOwned=no
Cloakable=no
Explodes=no
Invisible=no
Secondary=none
Reload=0
SelfHealing=no
Sensors=no
Crushable=no
Passengers=0
; light tank
[1TNK]
Prerequisite=weap
Primary=75mm
Strength=300
Armor=heavy
TechLevel=4
Sight=4
Speed=9
Owner=allies
Cost=700
Points=30
ROT=5
Tracked=yes
Crewed=yes
DoubleOwned=no
Ammo=-1
Cloakable=no
Explodes=no
Invisible=no
Secondary=none
Reload=0
SelfHealing=no
Sensors=no
Crushable=no
NoMovingFire=no
Passengers=0
; heavy tank
[3TNK]
Prerequisite=weap
Primary=105mm
Secondary=105mm
Strength=400
Armor=heavy
TechLevel=4
Sight=5
Speed=7
Owner=soviet
Cost=950
Points=50
ROT=5
Tracked=yes
Crewed=yes
DoubleOwned=no
Ammo=-1
Cloakable=no
Explodes=no
Invisible=no
Reload=0
SelfHealing=no
Sensors=no
Crushable=no
NoMovingFire=no
Passengers=0
; medium tank
[2TNK]
Prerequisite=weap
Primary=90mm
Strength=400
Armor=heavy
TechLevel=6
Sight=5
Speed=8
Owner=allies
Cost=800
Points=40
ROT=5
Tracked=yes
Crewed=yes
DoubleOwned=no
Ammo=-1
Cloakable=no
Explodes=no
Invisible=no
Secondary=none
Reload=0
SelfHealing=no
Sensors=no
Crushable=no
NoMovingFire=no
Passengers=0
; Mammoth tank
[4TNK]
Prerequisite=weap,stek
Primary=120mm
Secondary=MammothTusk
Strength=600
Armor=heavy
TechLevel=10
Sight=6
Speed=4
Owner=soviet
Cost=1700
Points=60
ROT=5
Tracked=yes
SelfHealing=yes
Crewed=yes
DoubleOwned=no
Cloakable=no
Explodes=no
Invisible=no
Reload=0
Sensors=no
Crushable=no
NoMovingFire=no
Passengers=0
; mobile radar jammer
[MRJ]
Prerequisite=weap,dome
Strength=110
Armor=light
TechLevel=12
Sight=7
Speed=9
Owner=allies
Cost=600
Points=30
ROT=5
Tracked=yes
Crewed=yes
DoubleOwned=no
Cloakable=no
Explodes=no
Invisible=no
Primary=none
Secondary=none
Reload=0
SelfHealing=no
Sensors=no
Crushable=no
Passengers=0
; mobile gap generator
[MGG]
Prerequisite=weap,atek
Strength=110
Armor=light
TechLevel=11
Sight=4
Speed=9
Owner=allies
Cost=600
Points=40
ROT=5
Crewed=yes
DoubleOwned=no
Cloakable=no
Explodes=no
Invisible=no
Primary=none
Secondary=none
Reload=0
SelfHealing=no
Sensors=no
Crushable=no
Tracked=no
Passengers=0
; mobile artillery
[ARTY]
Prerequisite=weap
Primary=155mm
Strength=75
Armor=light
TechLevel=8
Sight=5
Speed=6
Owner=allies
Cost=600
Points=35
ROT=2
Tracked=yes
Crewed=yes
NoMovingFire=yes
DoubleOwned=no
Ammo=-1
Cloakable=no
Explodes=no
Invisible=no
Secondary=none
Reload=0
SelfHealing=no
Sensors=no
Crushable=no
Passengers=0
; harvester
[HARV]
Prerequisite=weap,proc
Strength=600
Armor=heavy
TechLevel=1
Sight=4
Speed=6
Owner=allies,soviet
Cost=1400
Points=55
ROT=5
Tracked=yes
Crewed=yes
SelfHealing=yes
DoubleOwned=no
Cloakable=no
Explodes=no
Invisible=no
Primary=none
Secondary=none
Reload=0
Sensors=no
Crushable=no
Passengers=0
; Mobile Construction Vehicle
[MCV]
Prerequisite=weap,fix
Strength=600
Armor=light
TechLevel=11
Sight=4
Speed=6
Owner=allies,soviet
Cost=2500
Points=60
ROT=5
Crewed=yes
DoubleOwned=no
Ammo=-1
Cloakable=no
Explodes=no
Invisible=no
Primary=none
Secondary=none
SelfHealing=no
Sensors=no
Crushable=no
Tracked=no
Passengers=0
; Ranger (as in "Ford", not "W.W. II Commando")
[JEEP]
Prerequisite=weap
Primary=M60mg
Strength=150
Armor=light
TechLevel=3
Sight=6
Speed=10
Owner=allies
Cost=600
Points=20
ROT=10
Crewed=yes
DoubleOwned=no
Ammo=-1
Cloakable=no
Explodes=no
Invisible=no
Secondary=none
Reload=0
SelfHealing=no
Sensors=no
Crushable=no
Tracked=no
NoMovingFire=no
Passengers=0
; Armored Personnel Carrier
[APC]
Prerequisite=weap,tent
Primary=M60mg
Strength=200
Armor=heavy
TechLevel=5
Sight=5
Speed=10
Owner=allies
Cost=800
Points=25
ROT=5
Tracked=yes
Passengers=5
DoubleOwned=no
Ammo=-1
Cloakable=no
Explodes=no
Invisible=no
Secondary=none
Reload=0
SelfHealing=no
Sensors=no
Crushable=no
NoMovingFire=no
Crewed=no
; mine layer
[MNLY]
Prerequisite=weap,fix
Strength=100
Armor=heavy
TechLevel=3
Sight=5
Speed=9
Owner=allies,soviet
Cost=800
Points=50
ROT=5
Tracked=yes
Ammo=5 ; number of mines carried
Crewed=yes
DoubleOwned=no
Cloakable=no
Explodes=no
Invisible=no
Primary=none
Secondary=none
Reload=0
SelfHealing=no
Sensors=no
Crushable=no
NoMovingFire=no
Passengers=0
; convoy truck
[TRUK]
Prerequisite=hosp,fcom,iron,pdox
Strength=110
Armor=light
Owner=no
TechLevel=1
Sight=3
Speed=10
Cost=500
Points=5
ROT=5
Passengers=1
DoubleOwned=no
Cloakable=no
Explodes=no
Invisible=no
Primary=none
Secondary=none
Reload=0
SelfHealing=no
Sensors=no
Crushable=no
NoMovingFire=no
Tracked=no
; ******* ship types *******
; submarine
[SS]
Prerequisite=spen
Primary=TorpTube
Strength=120
Armor=light
TechLevel=5
Sight=6
Speed=6
Owner=soviet
Cost=950
Points=45
ROT=7
Cloakable=yes
DoubleOwned=no
Ammo=-1
Explodes=no
Invisible=no
Secondary=none
Reload=0
SelfHealing=no
Sensors=no
Crushable=no
Tracked=no
NoMovingFire=no
Passengers=0
Crewed=no
; destroyer
[DD]
Prerequisite=syrd
Primary=Stinger
Secondary=DepthCharge
Strength=400
Armor=heavy
TechLevel=7
Sight=6
Speed=6
Owner=allies
Cost=1000
Points=50
ROT=7
Sensors=Yes
DoubleOwned=no
Ammo=-1
Cloakable=no
Explodes=no
Invisible=no
Reload=0
SelfHealing=no
Crushable=no
Tracked=no
NoMovingFire=no
Passengers=0
Crewed=no
; cruiser
[CA]
Prerequisite=syrd,atek
Primary=8Inch
Secondary=8Inch
Strength=700
Armor=heavy
TechLevel=10
Sight=7
Speed=4
Owner=allies
Cost=2000
Points=60
ROT=5
Sensors=Yes
DoubleOwned=no
Ammo=-1
Cloakable=no
Explodes=no
Invisible=no
Reload=0
SelfHealing=no
Crushable=no
Tracked=no
NoMovingFire=no
Passengers=0
Crewed=no
; transport
[LST]
Strength=350
Armor=heavy
TechLevel=3
Sight=6
Speed=14
Owner=allies,soviet
Cost=700
Points=25
ROT=10
Passengers=5
DoubleOwned=no
Cloakable=no
Explodes=no
Invisible=no
Primary=none
Secondary=none
SelfHealing=no
Sensors=no
Crushable=no
Tracked=no
NoMovingFire=no
Crewed=no
; gun boat
[PT]
Prerequisite=syrd
Primary=2Inch
Secondary=DepthCharge
Strength=200
Armor=heavy
TechLevel=5
Sight=7
Speed=9
Owner=allies
Cost=500
Points=30
ROT=7
Sensors=Yes