Clean up Buildable vs Tooltip vs Valued. cnc only.

This commit is contained in:
Paul Chote
2010-08-26 18:00:48 +12:00
parent 7b7b9d3319
commit 1d7ca206f4
15 changed files with 381 additions and 261 deletions

View File

@@ -39,9 +39,9 @@ namespace OpenRA.GameRules
foreach( var b in player.World.Queries.OwnedBy[player].Where( x=>x.Info.Traits.Contains<BuildingInfo>() ) ) foreach( var b in player.World.Queries.OwnedBy[player].Where( x=>x.Info.Traits.Contains<BuildingInfo>() ) )
{ {
ret[ b.Info.Name ].Add( b ); ret[ b.Info.Name ].Add( b );
var buildable = b.Info.Traits.GetOrDefault<BuildableInfo>(); var tt = b.Info.Traits.GetOrDefault<TooltipInfo>();
if( buildable != null ) if( tt != null )
foreach( var alt in buildable.AlternateName ) foreach( var alt in tt.AlternateName )
ret[ alt ].Add( b ); ret[ alt ].Add( b );
} }
return ret; return ret;

View File

@@ -13,26 +13,34 @@ namespace OpenRA.Traits
public class ValuedInfo : ITraitInfo public class ValuedInfo : ITraitInfo
{ {
public readonly int Cost = 0; public readonly int Cost = 0;
public readonly string Description = ""; public object Create(ActorInitializer init) { return new Valued(); }
public readonly string LongDesc = "";
public readonly string[] Owner = { };
public virtual object Create(ActorInitializer init) { return new Valued(); }
} }
public class BuildableInfo : ValuedInfo public class TooltipInfo : ITraitInfo
{
public readonly string Description = "";
public readonly string Name = "";
public readonly string Icon = null;
public readonly string[] AlternateName = { };
public object Create(ActorInitializer init) { return new Tooltip(); }
}
public class BuildableInfo : ITraitInfo
{ {
[ActorReference]public readonly string[] Prerequisites = { }; [ActorReference]
[ActorReference] public readonly string[] BuiltAt = { }; public readonly string[] Prerequisites = { };
[ActorReference]
public readonly string Icon = null; public readonly string[] BuiltAt = { };
public readonly string[] AlternateName = { };
public readonly string[] Owner = { };
// todo: UI fluff; doesn't belong here
public readonly int BuildPaletteOrder = 9999; public readonly int BuildPaletteOrder = 9999;
public readonly string Hotkey = null; public readonly string Hotkey = null;
public object Create(ActorInitializer init) { return new Buildable(); }
public override object Create(ActorInitializer init) { return new Buildable(); }
} }
class Valued { } /* halfway to buildable */ class Valued { }
class Buildable { } class Buildable { }
class Tooltip { }
} }

View File

@@ -54,7 +54,7 @@ namespace OpenRA.Traits
for (var n = 0; n < order.TargetLocation.X; n++) // repeat count for (var n = 0; n < order.TargetLocation.X; n++) // repeat count
{ {
var unit = Rules.Info[order.TargetString]; var unit = Rules.Info[order.TargetString];
var ui = unit.Traits.Get<BuildableInfo>(); var cost = unit.Traits.Contains<ValuedInfo>() ? unit.Traits.Get<ValuedInfo>().Cost : 0;
var time = GetBuildTime(self, order.TargetString); var time = GetBuildTime(self, order.TargetString);
if (!Rules.TechTree.BuildableItems(order.Player, unit.Category).Contains(order.TargetString)) if (!Rules.TechTree.BuildableItems(order.Player, unit.Category).Contains(order.TargetString))
@@ -63,7 +63,7 @@ namespace OpenRA.Traits
bool hasPlayedSound = false; bool hasPlayedSound = false;
BeginProduction(unit.Category, BeginProduction(unit.Category,
new ProductionItem(order.TargetString, (int)time, ui.Cost, new ProductionItem(order.TargetString, (int)time, cost,
() => self.World.AddFrameEndTask( () => self.World.AddFrameEndTask(
_ => _ =>
{ {
@@ -102,8 +102,8 @@ namespace OpenRA.Traits
return 0; return 0;
if (Game.LobbyInfo.GlobalSettings.AllowCheats && self.Trait<DeveloperMode>().FastBuild) return 0; if (Game.LobbyInfo.GlobalSettings.AllowCheats && self.Trait<DeveloperMode>().FastBuild) return 0;
var ui = unit.Traits.Get<BuildableInfo>(); var cost = unit.Traits.Contains<ValuedInfo>() ? unit.Traits.Get<ValuedInfo>().Cost : 0;
var time = ui.Cost var time = cost
* self.Owner.PlayerActor.Info.Traits.Get<ProductionQueueInfo>().BuildSpeed /* todo: country-specific build speed bonus */ * self.Owner.PlayerActor.Info.Traits.Get<ProductionQueueInfo>().BuildSpeed /* todo: country-specific build speed bonus */
* (25 * 60) /* frames per min */ /* todo: build acceleration, if we do that */ * (25 * 60) /* frames per min */ /* todo: build acceleration, if we do that */
/ 1000; / 1000;

View File

@@ -37,7 +37,7 @@ namespace OpenRA.Traits
if (owner.Country == null) if (owner.Country == null)
return; return;
var effectivePrereq = prerequisites.Where( a => a.Traits.Get<BuildableInfo>().Owner.Contains( owner.Country.Race ) ); var effectivePrereq = prerequisites.Where( a => a.Traits.Contains<BuildableInfo>() && a.Traits.Get<BuildableInfo>().Owner.Contains( owner.Country.Race ) );
var nowHasPrerequisites = effectivePrereq.Any() && var nowHasPrerequisites = effectivePrereq.Any() &&
effectivePrereq.All( a => buildings[ a.Name ].Any( b => !b.Trait<Building>().Disabled ) ); effectivePrereq.All( a => buildings[ a.Name ].Any( b => !b.Trait<Building>().Disabled ) );

View File

@@ -96,7 +96,7 @@ namespace OpenRA.Traits
var buildings = Rules.TechTree.GatherBuildings(Owner); var buildings = Rules.TechTree.GatherBuildings(Owner);
var effectivePrereq = Info.Prerequisites var effectivePrereq = Info.Prerequisites
.Select(a => a.ToLowerInvariant()) .Select(a => a.ToLowerInvariant())
.Where(a => Rules.Info[a].Traits.Get<ValuedInfo>().Owner.Contains(Owner.Country.Race)); .Where(a => Rules.Info[a].Traits.Get<BuildableInfo>().Owner.Contains(Owner.Country.Race));
if (Info.Prerequisites.Count() == 0) if (Info.Prerequisites.Count() == 0)
return Owner.PlayerActor.Trait<PlayerResources>().GetPowerState() == PowerState.Normal; return Owner.PlayerActor.Trait<PlayerResources>().GetPowerState() == PowerState.Normal;

View File

@@ -47,8 +47,8 @@ namespace OpenRA.Widgets
if (actor == null || !actor.IsVisible(world.LocalPlayer)) if (actor == null || !actor.IsVisible(world.LocalPlayer))
return; return;
var text = actor.Info.Traits.Contains<ValuedInfo>() var text = actor.Info.Traits.Contains<TooltipInfo>()
? actor.Info.Traits.Get<ValuedInfo>().Description ? actor.Info.Traits.Get<TooltipInfo>().Name
: actor.Info.Name; : actor.Info.Name;
var text2 = (actor.Owner.NonCombatant) var text2 = (actor.Owner.NonCombatant)
? "" : "{0}".F(actor.Owner.PlayerName); ? "" : "{0}".F(actor.Owner.PlayerName);

View File

@@ -30,7 +30,7 @@ namespace OpenRA.Mods.RA.Crates
public override int GetSelectionShares(Actor collector) public override int GetSelectionShares(Actor collector)
{ {
var valuedInfo = Rules.Info[Info.Unit].Traits.Get<ValuedInfo>(); var valuedInfo = Rules.Info[Info.Unit].Traits.Get<BuildableInfo>();
return valuedInfo.Owner.Contains(collector.Owner.Country.Race) return valuedInfo.Owner.Contains(collector.Owner.Country.Race)
? base.GetSelectionShares(collector) ? base.GetSelectionShares(collector)
: 0; // this unit is not buildable by the collector's country, so : 0; // this unit is not buildable by the collector's country, so

View File

@@ -61,7 +61,7 @@ namespace OpenRA.Mods.RA.Widgets
.Where(u => u.Traits.Contains<BuildableInfo>()) .Where(u => u.Traits.Contains<BuildableInfo>())
.ToDictionary( .ToDictionary(
u => u.Name, u => u.Name,
u => SpriteSheetBuilder.LoadAllSprites(u.Traits.Get<BuildableInfo>().Icon ?? (u.Name + "icon"))[0]); u => SpriteSheetBuilder.LoadAllSprites(u.Traits.Get<TooltipInfo>().Icon ?? (u.Name + "icon"))[0]);
var groups = Rules.Categories(); var groups = Rules.Categories();
@@ -331,7 +331,7 @@ namespace OpenRA.Mods.RA.Widgets
if( a[ 0 ] == '@' ) if( a[ 0 ] == '@' )
return "any " + a.Substring( 1 ); return "any " + a.Substring( 1 );
else else
return Rules.Info[ a.ToLowerInvariant() ].Traits.Get<ValuedInfo>().Description; return Rules.Info[ a.ToLowerInvariant() ].Traits.Get<TooltipInfo>().Name;
} }
void HandleBuildPalette( World world, string item, bool isLmb ) void HandleBuildPalette( World world, string item, bool isLmb )
@@ -457,24 +457,25 @@ namespace OpenRA.Mods.RA.Widgets
var p = pos.ToFloat2() - new float2(297, -3); var p = pos.ToFloat2() - new float2(297, -3);
var info = Rules.Info[unit]; var info = Rules.Info[unit];
var tooltip = info.Traits.Get<TooltipInfo>();
var buildable = info.Traits.Get<BuildableInfo>(); var buildable = info.Traits.Get<BuildableInfo>();
var cost = info.Traits.Get<ValuedInfo>().Cost;
var buildings = Rules.TechTree.GatherBuildings( pl ); var buildings = Rules.TechTree.GatherBuildings( pl );
var canBuildThis = Rules.TechTree.CanBuild(info, pl, buildings); var canBuildThis = Rules.TechTree.CanBuild(info, pl, buildings);
var longDescSize = Game.Renderer.RegularFont.Measure(buildable.LongDesc.Replace("\\n", "\n")).Y; var longDescSize = Game.Renderer.RegularFont.Measure(tooltip.Description.Replace("\\n", "\n")).Y;
if (!canBuildThis) longDescSize += 8; if (!canBuildThis) longDescSize += 8;
WidgetUtils.DrawPanel("dialog4", new Rectangle(Game.viewport.Width - 300, pos.Y, 300, longDescSize + 65)); WidgetUtils.DrawPanel("dialog4", new Rectangle(Game.viewport.Width - 300, pos.Y, 300, longDescSize + 65));
Game.Renderer.BoldFont.DrawText( Game.Renderer.BoldFont.DrawText(
buildable.Description + ((buildable.Hotkey != null)? " ({0})".F(buildable.Hotkey.ToUpper()) : ""), tooltip.Name + ((buildable.Hotkey != null)? " ({0})".F(buildable.Hotkey.ToUpper()) : ""),
p.ToInt2() + new int2(5, 5), Color.White); p.ToInt2() + new int2(5, 5), Color.White);
var resources = pl.PlayerActor.Trait<PlayerResources>(); var resources = pl.PlayerActor.Trait<PlayerResources>();
DrawRightAligned("${0}".F(buildable.Cost), pos + new int2(-5, 5), DrawRightAligned("${0}".F(cost), pos + new int2(-5, 5),
(resources.DisplayCash + resources.DisplayOre >= buildable.Cost ? Color.White : Color.Red )); (resources.DisplayCash + resources.DisplayOre >= cost ? Color.White : Color.Red ));
var lowpower = resources.GetPowerState() != PowerState.Normal; var lowpower = resources.GetPowerState() != PowerState.Normal;
var time = ProductionQueue.GetBuildTime(pl.PlayerActor, info.Name) var time = ProductionQueue.GetBuildTime(pl.PlayerActor, info.Name)
@@ -500,7 +501,7 @@ namespace OpenRA.Mods.RA.Widgets
} }
p += new int2(0, 15); p += new int2(0, 15);
Game.Renderer.RegularFont.DrawText(buildable.LongDesc.Replace("\\n", "\n"), Game.Renderer.RegularFont.DrawText(tooltip.Description.Replace("\\n", "\n"),
p.ToInt2(), Color.White); p.ToInt2(), Color.White);
Game.Renderer.RgbaSpriteRenderer.Flush(); Game.Renderer.RgbaSpriteRenderer.Flush();

View File

@@ -6,8 +6,8 @@ V01:
Building: Building:
Footprint: xx xx Footprint: xx xx
Dimensions: 2,2 Dimensions: 2,2
Valued: Tooltip:
Description: Church Name: Church
V02: V02:
Inherits: ^CivBuilding Inherits: ^CivBuilding
@@ -147,15 +147,18 @@ BARB:
Health: Health:
HP: 100 HP: 100
Armor: none Armor: none
Valued: Tooltip:
Description: Wire Fence Name: Wire Fence
Icon: barbicnh
WOOD: WOOD:
Inherits: ^Wall Inherits: ^Wall
Health: Health:
HP: 100 HP: 100
Armor: none Armor: none
Valued: Tooltip:
Description: Wooden Fence Name: Wooden Fence
Icon: woodicnh
BRIDGE1: BRIDGE1:
Inherits: ^Bridge Inherits: ^Bridge

View File

@@ -102,7 +102,8 @@
Bounds: 12,17,0,-9 Bounds: 12,17,0,-9
Valued: Valued:
Cost: 70 Cost: 70
Description: Civilian Tooltip:
Name: Civilian
Mobile: Mobile:
Speed: 4 Speed: 4
Health: Health:
@@ -186,16 +187,16 @@
Armor: wood Armor: wood
Building: Building:
-RepairableBuilding: -RepairableBuilding:
Valued: Tooltip:
Description: Civilian Building Name: Civilian Building
^CivField: ^CivField:
Inherits: ^CivBuilding Inherits: ^CivBuilding
-Selectable: -Selectable:
DeadBuildingState: DeadBuildingState:
Zombie: true Zombie: true
Valued: Tooltip:
Description: Field Name: Field
RenderBuilding: RenderBuilding:
OverrideTheater: DESERT OverrideTheater: DESERT
OverrideImage: v23 OverrideImage: v23
@@ -227,8 +228,8 @@
^Tree: ^Tree:
Category: Building Category: Building
Valued: Tooltip:
Description: Tree Name: Tree
RenderBuilding: RenderBuilding:
Palette: terrain Palette: terrain
Building: Building:
@@ -239,8 +240,8 @@
Terrain: Tree Terrain: Tree
^Rock: ^Rock:
Category: Building Category: Building
Valued: Tooltip:
Description: Rock Name: Rock
RenderBuilding: RenderBuilding:
Palette: terrain Palette: terrain
Building: Building:
@@ -264,8 +265,8 @@
^Bridge: ^Bridge:
Category: Building Category: Building
Valued: Tooltip:
Description: Bridge Name: Bridge
Targetable: Targetable:
TargetTypes: Ground, Water TargetTypes: Ground, Water
BelowUnits: BelowUnits:

View File

@@ -1,12 +1,14 @@
E1: E1:
Inherits: ^Infantry Inherits: ^Infantry
Valued:
Cost: 100
Tooltip:
Name: Minigunner
Description: General-purpose infantry.\n Strong vs Infantry\n Weak vs Vehicles
Icon: e1icnh
Buildable: Buildable:
BuildPaletteOrder: 10 BuildPaletteOrder: 10
Owner: gdi, nod Owner: gdi, nod
Cost: 100
Description: Minigunner
LongDesc: General-purpose infantry.\n Strong vs Infantry\n Weak vs Vehicles
Icon: e1icnh
Selectable: Selectable:
Bounds: 12,17,0,-6 Bounds: 12,17,0,-6
Mobile: Mobile:
@@ -19,14 +21,16 @@ E1:
E2: E2:
Inherits: ^Infantry Inherits: ^Infantry
Valued:
Cost: 160
Tooltip:
Name: Grenadier
Description: Infantry armed with grenades. \n Strong vs Buildings, Infantry\n Weak vs Vehicles
Icon: e2icnh
Buildable: Buildable:
BuildPaletteOrder: 40 BuildPaletteOrder: 40
Prerequisites: hq Prerequisites: hq
Owner: gdi Owner: gdi
Cost: 160
Description: Grenadier
LongDesc: Infantry armed with grenades. \n Strong vs Buildings, Infantry\n Weak vs Vehicles
Icon: e2icnh
Selectable: Selectable:
Bounds: 12,17,0,-6 Bounds: 12,17,0,-6
Mobile: Mobile:
@@ -41,13 +45,15 @@ E2:
E3: E3:
Inherits: ^Infantry Inherits: ^Infantry
Valued:
Cost: 300
Tooltip:
Name: Rocket Soldier
Description: Anti-tank/Anti-aircraft infantry. \n Strong vs Tanks, Aircraft\n Weak vs Infantry
Icon: e3icnh
Buildable: Buildable:
BuildPaletteOrder: 20 BuildPaletteOrder: 20
Owner: nod, gdi Owner: nod, gdi
Cost: 300
Description: Rocket Soldier
LongDesc: Anti-tank/Anti-aircraft infantry. \n Strong vs Tanks, Aircraft\n Weak vs Infantry
Icon: e3icnh
Selectable: Selectable:
Bounds: 12,17,0,-6 Bounds: 12,17,0,-6
Mobile: Mobile:
@@ -62,14 +68,16 @@ E3:
E4: E4:
Inherits: ^Infantry Inherits: ^Infantry
Valued:
Cost: 200
Tooltip:
Name: Flamethrower
Description: Advanced Anti-infantry unit.\n Strong vs Infantry, Buildings\n Weak vs Vehicles
Icon: e4icnh
Buildable: Buildable:
BuildPaletteOrder: 40 BuildPaletteOrder: 40
Owner: nod Owner: nod
Prerequisites: hq Prerequisites: hq
Cost: 200
Description: Flamethrower
LongDesc: Advanced Anti-infantry unit.\n Strong vs Infantry, Buildings\n Weak vs Vehicles
Icon: e4icnh
Selectable: Selectable:
Bounds: 12,17,0,-6 Bounds: 12,17,0,-6
Mobile: Mobile:
@@ -87,13 +95,15 @@ E4:
E5: E5:
Inherits: ^Infantry Inherits: ^Infantry
Valued:
Cost: 300
Tooltip:
Name: Chem Warrior
Description: Advanced Anti-infantry unit.\n Strong vs Infantry\n Weak vs Vehicles
Icon: e5icnh
Buildable: Buildable:
BuildPaletteOrder: 50 BuildPaletteOrder: 50
Owner: nod Owner: nod
Cost: 300
Description: Chem Warrior
LongDesc: Advanced Anti-infantry unit.\n Strong vs Infantry\n Weak vs Vehicles
Icon: e5icnh
Prerequisites: tmpl Prerequisites: tmpl
Selectable: Selectable:
Bounds: 12,17,0,-6 Bounds: 12,17,0,-6
@@ -113,13 +123,15 @@ E5:
E6: E6:
Inherits: ^Infantry Inherits: ^Infantry
Valued:
Cost: 500
Tooltip:
Name: Engineer
Description: Infiltrates and captures enemy structures.\n Strong vs Nothing\n Weak vs Everything
Icon: e6icnh
Buildable: Buildable:
BuildPaletteOrder: 30 BuildPaletteOrder: 30
Owner: gdi,nod Owner: gdi,nod
Cost: 500
Description: Engineer
LongDesc: Infiltrates and captures enemy structures.\n Strong vs Nothing\n Weak vs Everything
Icon: e6icnh
Selectable: Selectable:
Bounds: 12,17,0,-6 Bounds: 12,17,0,-6
Mobile: Mobile:
@@ -135,14 +147,16 @@ E6:
RMBO: RMBO:
Inherits: ^Infantry Inherits: ^Infantry
Valued:
Cost: 1000
Tooltip:
Icon: rmboicnh
Name: Commando
Description: Elite sniper infantry unit.\n Strong vs Infantry, Buildings\n Weak vs Vehicles
Buildable: Buildable:
BuildPaletteOrder: 50 BuildPaletteOrder: 50
Owner: gdi Owner: gdi
Cost: 1000
Prerequisites: eye Prerequisites: eye
Icon: rmboicnh
Description: Commando
LongDesc: Elite sniper infantry unit.\n Strong vs Infantry, Buildings\n Weak vs Vehicles
Selectable: Selectable:
Bounds: 12,17,0,-6 Bounds: 12,17,0,-6
Voice: CommandoVoice Voice: CommandoVoice

View File

@@ -2,7 +2,10 @@ FACT:
Inherits: ^Building Inherits: ^Building
Valued: Valued:
Cost: 2000 Cost: 2000
Description: Construction Yard Tooltip:
Name: Construction Yard
Icon: mcvicnh
Description: Builds structures
Building: Building:
Power: 15 Power: 15
Footprint: xxx xxx xxx Footprint: xxx xxx xxx
@@ -23,13 +26,15 @@ FACT:
Facing: 108 Facing: 108
NUKE: NUKE:
Inherits: ^Building Inherits: ^Building
Buildable: Valued:
Cost: 300
Tooltip:
Name: Power Plant
Icon: nukeicnh Icon: nukeicnh
Description: Provides power for other structures
Buildable:
BuildPaletteOrder: 10 BuildPaletteOrder: 10
Owner: gdi,nod Owner: gdi,nod
Cost: 300
Description: Power Plant
LongDesc: Provides power for other structures
Building: Building:
Power: 100 Power: 100
Footprint: x_ xx Footprint: x_ xx
@@ -44,14 +49,16 @@ NUKE:
PROC.proxy: PROC.proxy:
Inherits: ^Building Inherits: ^Building
Buildable: Valued:
Cost: 2000
Tooltip:
Name: Tiberium Refinery
Icon: procicnh Icon: procicnh
Description: Processes raw Tiberium into useable resources
Buildable:
BuildPaletteOrder: 30 BuildPaletteOrder: 30
Prerequisites: nuke Prerequisites: nuke
Owner: gdi,nod Owner: gdi,nod
Cost: 2000
Description: Tiberium Refinery
LongDesc: Processes raw Tiberium into useable resources
Building: Building:
Power: -50 Power: -50
Footprint: ___xx xxxxx xxx__ xxx__ Footprint: ___xx xxxxx xxx__ xxx__
@@ -69,8 +76,10 @@ PROC:
Inherits: ^Building Inherits: ^Building
Valued: Valued:
Cost: 1700 Cost: 1700
Description: Tiberium Refinery Tooltip:
LongDesc: Processes raw Tiberium into useable resources Name: Tiberium Refinery
Icon: procicnh
Description: Processes raw Tiberium into useable resources
Building: Building:
Power: -30 Power: -30
Footprint: ___ xxx === Footprint: ___ xxx ===
@@ -106,14 +115,16 @@ PROC:
SpawnOffset: 3,1 SpawnOffset: 3,1
SILO: SILO:
Inherits: ^Building Inherits: ^Building
Buildable: Valued:
Cost: 150
Tooltip:
Name: Tiberium Silo
Icon: siloicnh Icon: siloicnh
Description: Stores processed Tiberium
Buildable:
BuildPaletteOrder: 20 BuildPaletteOrder: 20
Prerequisites: proc Prerequisites: proc
Owner: gdi,nod Owner: gdi,nod
Cost: 150
Description: Tiberium Silo
LongDesc: Stores processed Tiberium
Building: Building:
Power: -10 Power: -10
Footprint: xx Footprint: xx
@@ -134,15 +145,17 @@ SILO:
PYLE: PYLE:
Inherits: ^Building Inherits: ^Building
Buildable: Valued:
Cost: 300
Tooltip:
Name: Barracks
Icon: pyleicnh Icon: pyleicnh
Description: Trains infantry
AlternateName: @Barracks
Buildable:
BuildPaletteOrder: 40 BuildPaletteOrder: 40
Prerequisites: nuke Prerequisites: nuke
Owner: gdi Owner: gdi
Cost: 300
Description: Barracks
LongDesc: Trains infantry
AlternateName: @Barracks
Building: Building:
Power: -20 Power: -20
Footprint: xx xx Footprint: xx xx
@@ -163,15 +176,17 @@ PYLE:
HAND: HAND:
Inherits: ^Building Inherits: ^Building
Buildable: Valued:
Cost: 300
Tooltip:
Name: Hand of Nod
Icon: handicnh Icon: handicnh
Description: Trains infantry
AlternateName: @Barracks
Buildable:
BuildPaletteOrder: 40 BuildPaletteOrder: 40
Prerequisites: nuke Prerequisites: nuke
Owner: nod Owner: nod
Cost: 300
Description: Hand of Nod
LongDesc: Trains infantry
AlternateName: @Barracks
Building: Building:
Power: -20 Power: -20
Footprint: __ xx xx Footprint: __ xx xx
@@ -192,15 +207,17 @@ HAND:
AFLD: AFLD:
Inherits: ^Building Inherits: ^Building
Buildable: Valued:
Cost: 2000
Tooltip:
Name: Airstrip
Icon: afldicnh Icon: afldicnh
AlternateName: @Vehicle Production
Description: Provides a dropzone for vehicle reinforcements
Buildable:
BuildPaletteOrder: 60 BuildPaletteOrder: 60
Prerequisites: proc Prerequisites: proc
Owner: nod Owner: nod
Cost: 2000
Description: Airstrip
AlternateName: @Vehicle Production
LongDesc: Provides a dropzone for vehicle reinforcements
Building: Building:
Power: -30 Power: -30
Footprint: xxxx xxxx Footprint: xxxx xxxx
@@ -223,15 +240,17 @@ AFLD:
WEAP: WEAP:
Inherits: ^Building Inherits: ^Building
Buildable: Valued:
Cost: 2000
Tooltip:
Name: Weapons Factory
Icon: weapicnh Icon: weapicnh
AlternateName: @Vehicle Production
Description: Assembly point for vehicle reinforcements
Buildable:
BuildPaletteOrder: 60 BuildPaletteOrder: 60
Prerequisites: proc Prerequisites: proc
Owner: gdi Owner: gdi
Cost: 2000
Description: Weapons Factory
AlternateName: @Vehicle Production
LongDesc: Assembly point for vehicle reinforcements
Building: Building:
Power: -30 Power: -30
Footprint: ___ xxx === Footprint: ___ xxx ===
@@ -256,14 +275,16 @@ HQ:
RequiresPower: RequiresPower:
CanPowerDown: CanPowerDown:
Inherits: ^Building Inherits: ^Building
Buildable: Valued:
Cost: 1000
Tooltip:
Name: Communications Center
Icon: hqicnh Icon: hqicnh
Description: Provides an overview of the battlefield.\n Requires power to operate.
Buildable:
BuildPaletteOrder: 80 BuildPaletteOrder: 80
Prerequisites: proc Prerequisites: proc
Owner: gdi,nod Owner: gdi,nod
Cost: 1000
Description: Communications Center
LongDesc: Provides an overview of the battlefield.\n Requires power to operate.
Building: Building:
Power: -40 Power: -40
Footprint: __ xx Footprint: __ xx
@@ -281,14 +302,16 @@ HQ:
NUK2: NUK2:
Inherits: ^Building Inherits: ^Building
Buildable: Valued:
Cost: 500
Tooltip:
Name: Advanced Power Plant
Icon:nuk2icnh Icon:nuk2icnh
Description: Provides more power, cheaper than the \nstandard Power Plant
Buildable:
BuildPaletteOrder: 90 BuildPaletteOrder: 90
Prerequisites: hq Prerequisites: hq
Owner: gdi,nod Owner: gdi,nod
Cost: 500
Description: Advanced Power Plant
LongDesc: Provides more power, cheaper than the \nstandard Power Plant
Building: Building:
Power: 200 Power: 200
Footprint: xx xx Footprint: xx xx
@@ -303,14 +326,16 @@ NUK2:
FIX: FIX:
Inherits: ^Building Inherits: ^Building
Buildable: Valued:
Cost: 1200
Tooltip:
Name: Repair Facility
Icon: fixicnh Icon: fixicnh
Description: Repairs vehicles and allows the\nconstruction of additional bases.
Buildable:
BuildPaletteOrder: 70 BuildPaletteOrder: 70
Prerequisites: @Vehicle Production Prerequisites: @Vehicle Production
Owner: gdi,nod Owner: gdi,nod
Cost: 1200
Description: Repair Facility
LongDesc: Repairs vehicles and allows the\nconstruction of additional bases.
Building: Building:
Power: -30 Power: -30
Footprint: _x_ xxx _x_ Footprint: _x_ xxx _x_
@@ -328,14 +353,16 @@ FIX:
HPAD: HPAD:
Inherits: ^Building Inherits: ^Building
Buildable: Valued:
Cost: 1500
Tooltip:
Name: Helipad
Icon:hpadicnh Icon:hpadicnh
Description: Produces and reloads helicopters
Buildable:
BuildPaletteOrder: 50 BuildPaletteOrder: 50
Prerequisites: @Barracks Prerequisites: @Barracks
Owner: gdi,nod Owner: gdi,nod
Cost: 1500
Description: Helipad
LongDesc: Produces and reloads helicopters
Building: Building:
Power: -10 Power: -10
Footprint: xx xx Footprint: xx xx
@@ -361,15 +388,17 @@ EYE:
RequiresPower: RequiresPower:
CanPowerDown: CanPowerDown:
Inherits: ^Building Inherits: ^Building
Buildable: Valued:
Cost: 1800
Tooltip:
Name: Advanced Communications Center
Icon: eyeicnh Icon: eyeicnh
Description: Provides access to the Ion Cannon.\n Requires power to operate.
AlternateName: @Superweapon
Buildable:
BuildPaletteOrder: 100 BuildPaletteOrder: 100
Prerequisites: hq Prerequisites: hq
Owner: gdi Owner: gdi
Cost: 1800
Description: Advanced Communications Center
LongDesc: Provides access to the Ion Cannon.\n Requires power to operate.
AlternateName: @Superweapon
Building: Building:
Power: -200 Power: -200
Footprint: __ xx Footprint: __ xx
@@ -388,15 +417,17 @@ TMPL:
RequiresPower: RequiresPower:
CanPowerDown: CanPowerDown:
Inherits: ^Building Inherits: ^Building
Buildable: Valued:
Cost: 2000
Tooltip:
Name: Temple of Nod
Icon: tmplicnh Icon: tmplicnh
Description: Place of worship and secret missile silo.\nRequires power to operate.
AlternateName: @Superweapon
Buildable:
BuildPaletteOrder: 100 BuildPaletteOrder: 100
Prerequisites: hq Prerequisites: hq
Owner: nod Owner: nod
Cost: 2000
Description: Temple of Nod
LongDesc: Place of worship and secret missile silo.\nRequires power to operate.
AlternateName: @Superweapon
Building: Building:
Power: -150 Power: -150
Footprint: ___ xxx xxx Footprint: ___ xxx xxx
@@ -415,14 +446,16 @@ OBLI:
Category: Defense Category: Defense
RequiresPower: RequiresPower:
Inherits: ^Building Inherits: ^Building
Buildable: Valued:
Cost: 1500
Tooltip:
Name: Obelisk of Light
Icon:obliicnh Icon:obliicnh
Description: Advanced base defense. Requires power\nto operate.\n Strong vs Tanks, Infantry\n Weak vs Aircraft
Buildable:
BuildPaletteOrder: 60 BuildPaletteOrder: 60
Prerequisites: tmpl Prerequisites: tmpl
Owner: nod Owner: nod
Cost: 1500
Description: Obelisk of Light
LongDesc: Advanced base defense. Requires power\nto operate.\n Strong vs Tanks, Infantry\n Weak vs Aircraft
Building: Building:
Power: -150 Power: -150
Footprint: _ x Footprint: _ x
@@ -446,14 +479,16 @@ OBLI:
CYCL: CYCL:
Category: Defense Category: Defense
Inherits: ^Wall Inherits: ^Wall
Buildable: Valued:
Cost: 25
Tooltip:
Name: Chain Link Barrier
Icon:cyclicnh Icon:cyclicnh
Description: Stops infantry and blocks enemy fire.\nCan be crushed by tanks.
Buildable:
BuildPaletteOrder: 10 BuildPaletteOrder: 10
Prerequisites: fact Prerequisites: fact
Owner: nod Owner: nod
Cost: 25
Description: Chain Link Barrier
LongDesc: Stops infantry and blocks enemy fire.\nCan be crushed by tanks.
Health: Health:
HP: 300 HP: 300
Armor: none Armor: none
@@ -461,14 +496,16 @@ CYCL:
SBAG: SBAG:
Category: Defense Category: Defense
Inherits: ^Wall Inherits: ^Wall
Buildable: Valued:
Cost: 25
Tooltip:
Name: Sandbag Barrier
Icon:sbagicnh Icon:sbagicnh
Description: Stops infantry and blocks enemy fire.\nCan be crushed by tanks.
Buildable:
BuildPaletteOrder: 20 BuildPaletteOrder: 20
Prerequisites: fact Prerequisites: fact
Owner: gdi Owner: gdi
Cost: 25
Description: Sandbag Barrier
LongDesc: Stops infantry and blocks enemy fire.\nCan be crushed by tanks.
Health: Health:
HP: 250 HP: 250
Armor: none Armor: none
@@ -476,14 +513,16 @@ SBAG:
BRIK: BRIK:
Category: Defense Category: Defense
Inherits: ^Wall Inherits: ^Wall
Buildable: Valued:
Cost: 100
Tooltip:
Name: Concrete Barrier
Icon:brikicnh Icon:brikicnh
Description: Stop units and blocks enemy fire.
Buildable:
BuildPaletteOrder: 30 BuildPaletteOrder: 30
Prerequisites: fact Prerequisites: fact
Owner: gdi,nod Owner: gdi,nod
Cost: 100
Description: Concrete Barrier
LongDesc: Stop units and blocks enemy fire.
Health: Health:
HP: 1000 HP: 1000
Armor: heavy Armor: heavy
@@ -493,14 +532,16 @@ BRIK:
GUN: GUN:
Category: Defense Category: Defense
Inherits: ^Building Inherits: ^Building
Buildable: Valued:
Cost: 600
Tooltip:
Name: Turret
Icon: gunicnh Icon: gunicnh
Description: Anti-Armor base defense.\n Strong vs Tanks\n Weak vs Infantry, Aircraft
Buildable:
BuildPaletteOrder: 40 BuildPaletteOrder: 40
Prerequisites: hand Prerequisites: hand
Owner: nod Owner: nod
Cost: 600
Description: Turret
LongDesc: Anti-Armor base defense.\n Strong vs Tanks\n Weak vs Infantry, Aircraft
Building: Building:
Power: -20 Power: -20
Health: Health:
@@ -522,14 +563,16 @@ GUN:
SAM: SAM:
Category: Defense Category: Defense
Inherits: ^Building Inherits: ^Building
Buildable: Valued:
Cost: 750
Tooltip:
Name: SAM Site
Icon: samicnh Icon: samicnh
Description: Anti-Air base defense.\n Strong vs Aircraft\n Weak vs Infantry, Tanks
Buildable:
BuildPaletteOrder: 50 BuildPaletteOrder: 50
Prerequisites: hand Prerequisites: hand
Owner: nod Owner: nod
Cost: 750
Description: SAM Site
LongDesc: Anti-Air base defense.\n Strong vs Aircraft\n Weak vs Infantry, Tanks
Building: Building:
Power: -20 Power: -20
Footprint: xx Footprint: xx
@@ -553,14 +596,16 @@ SAM:
GTWR: GTWR:
Category: Defense Category: Defense
Inherits: ^Building Inherits: ^Building
Buildable: Valued:
Cost: 500
Tooltip:
Name: Guard Tower
Icon: gtwricnh Icon: gtwricnh
Description: Basic defensive structure.\n Strong vs Infantry, Light Vehicles\n Weak vs Tanks, Aircraft
Buildable:
BuildPaletteOrder: 50 BuildPaletteOrder: 50
Prerequisites: pyle Prerequisites: pyle
Owner: gdi Owner: gdi
Cost: 500
Description: Guard Tower
LongDesc: Basic defensive structure.\n Strong vs Infantry, Light Vehicles\n Weak vs Tanks, Aircraft
Building: Building:
Power: -10 Power: -10
Health: Health:
@@ -578,14 +623,16 @@ GTWR:
ATWR: ATWR:
Category: Defense Category: Defense
Inherits: ^Building Inherits: ^Building
Buildable: Valued:
Cost: 1000
Tooltip:
Name: Advanced Guard Tower
Icon: atwricnh Icon: atwricnh
Description: Anti-armor defensive structure.\n Strong vs Light Vehicles, Tanks\n Weak vs Infantry
Buildable:
BuildPaletteOrder: 60 BuildPaletteOrder: 60
Prerequisites: hq Prerequisites: hq
Owner: gdi Owner: gdi
Cost: 1000
Description: Advanced Guard Tower
LongDesc: Anti-armor defensive structure.\n Strong vs Light Vehicles, Tanks\n Weak vs Infantry
Building: Building:
Power: -20 Power: -20
Health: Health:

View File

@@ -146,9 +146,8 @@ World:
WaterChance: 0 WaterChance: 0
CRATE: CRATE:
Valued: Tooltip:
Cost: 0 Name: Crate
Description: Crate
Crate: Crate:
Lifetime: 120 Lifetime: 120
TerrainTypes: Clear, Rough, Road, Ore, Beach TerrainTypes: Clear, Rough, Road, Ore, Beach

View File

@@ -4,8 +4,8 @@ SPLIT2:
Palette: terrain Palette: terrain
SeedsResource: SeedsResource:
ResourceType:Tiberium ResourceType:Tiberium
Valued: Tooltip:
Description: Blossom Tree Name: Blossom Tree
-Selectable: -Selectable:
RadarColorFromTerrain: RadarColorFromTerrain:
Terrain: Ore Terrain: Ore
@@ -16,8 +16,8 @@ SPLIT3:
Palette: terrain Palette: terrain
SeedsResource: SeedsResource:
ResourceType:Tiberium ResourceType:Tiberium
Valued: Tooltip:
Description: Blossom Tree Name: Blossom Tree
-Selectable: -Selectable:
RadarColorFromTerrain: RadarColorFromTerrain:
Terrain: Ore Terrain: Ore

View File

@@ -1,13 +1,15 @@
MCV: MCV:
Inherits: ^Vehicle Inherits: ^Vehicle
Buildable: Valued:
Cost: 2000
Tooltip:
Name: Mobile Construction Vehicle
Icon: mcvicnh Icon: mcvicnh
Description: Deploys into another Construction Yard.\n Unarmed
Buildable:
BuildPaletteOrder: 70 BuildPaletteOrder: 70
Prerequisites: fix Prerequisites: fix
Owner: gdi,nod Owner: gdi,nod
Cost: 2000
Description: Mobile Construction Vehicle
LongDesc: Deploys into another Construction Yard.\n Unarmed
Selectable: Selectable:
Priority: 3 Priority: 3
Mobile: Mobile:
@@ -28,14 +30,16 @@ MCV:
HARV: HARV:
Inherits: ^Tank Inherits: ^Tank
Buildable: Valued:
Cost: 1400
Tooltip:
Name: Harvester
Icon: harvicnh Icon: harvicnh
Description: Collects Tiberium for processing.\n Unarmed
Buildable:
BuildPaletteOrder: 10 BuildPaletteOrder: 10
Prerequisites: proc Prerequisites: proc
Owner: gdi,nod Owner: gdi,nod
Cost: 1400
Description: Harvester
LongDesc: Collects Tiberium for processing.\n Unarmed
Selectable: Selectable:
Priority: 7 Priority: 7
Harvester: Harvester:
@@ -54,14 +58,16 @@ HARV:
APC: APC:
Inherits: ^Tank Inherits: ^Tank
Buildable: Valued:
Cost: 700
Tooltip:
Name: Armored Personnel Carrier
Icon: apcicnh Icon: apcicnh
Description: Tough infantry transport.\n Strong vs Infantry, Light Vehicles\n Weak vs Tanks, Aircraft
Buildable:
BuildPaletteOrder: 30 BuildPaletteOrder: 30
Prerequisites: pyle Prerequisites: pyle
Owner: gdi Owner: gdi
Cost: 700
Description: Armored Personnel Carrier
LongDesc: Tough infantry transport.\n Strong vs Infantry, Light Vehicles\n Weak vs Tanks, Aircraft
Mobile: Mobile:
ROT: 5 ROT: 5
Speed: 15 Speed: 15
@@ -84,14 +90,16 @@ APC:
ARTY: ARTY:
Inherits: ^Tank Inherits: ^Tank
Buildable: Valued:
Cost: 600
Tooltip:
Name: Artillery
Icon:artyicnh Icon:artyicnh
Description: Long-range artillery.\n Strong vs Infantry, Buildings\n Weak vs Tanks, Aircraft
Buildable:
BuildPaletteOrder: 40 BuildPaletteOrder: 40
Prerequisites: hq Prerequisites: hq
Owner: gdi Owner: gdi
Cost: 600
Description: Artillery
LongDesc: Long-range artillery.\n Strong vs Infantry, Buildings\n Weak vs Tanks, Aircraft
Mobile: Mobile:
ROT: 2 ROT: 2
Speed: 6 Speed: 6
@@ -108,14 +116,16 @@ ARTY:
FTNK: FTNK:
Inherits: ^Tank Inherits: ^Tank
Buildable: Valued:
Cost: 800
Tooltip:
Name: Flame Tank
Icon: ftnkicnh Icon: ftnkicnh
Description: Heavily armored flame-throwing vehicle.\n Strong vs Infantry, Buildings\n Weak vs Aircraft
Buildable:
BuildPaletteOrder: 50 BuildPaletteOrder: 50
Prerequisites: hq Prerequisites: hq
Owner: nod Owner: nod
Cost: 800
Description: Flame Tank
LongDesc: Heavily armored flame-throwing vehicle.\n Strong vs Infantry, Buildings\n Weak vs Aircraft
Mobile: Mobile:
ROT: 5 ROT: 5
Speed: 9 Speed: 9
@@ -133,14 +143,16 @@ FTNK:
BGGY: BGGY:
Inherits: ^Vehicle Inherits: ^Vehicle
Buildable: Valued:
Cost: 300
Tooltip:
Name: Nod Buggy
Icon: bggyicnh Icon: bggyicnh
Description: Fast scout & anti-infantry vehicle.\n Strong vs Infantry\n Weak vs Tanks, Aircraft
Buildable:
BuildPaletteOrder: 20 BuildPaletteOrder: 20
Prerequisites: afld Prerequisites: afld
Owner: nod Owner: nod
Cost: 300
Description: Nod Buggy
LongDesc: Fast scout & anti-infantry vehicle.\n Strong vs Infantry\n Weak vs Tanks, Aircraft
Mobile: Mobile:
ROT: 10 ROT: 10
Speed: 18 Speed: 18
@@ -160,14 +172,16 @@ BGGY:
BIKE: BIKE:
Inherits: ^Vehicle Inherits: ^Vehicle
Buildable: Valued:
Cost: 450
Tooltip:
Name: Recon Bike
Icon: bikeicnh Icon: bikeicnh
Description: Fast scout vehicle, armed with \nrockets.\n Strong vs Vehicles, Aircraft\n Weak vs Infantry
Buildable:
BuildPaletteOrder: 30 BuildPaletteOrder: 30
Prerequisites: afld Prerequisites: afld
Owner: nod Owner: nod
Cost: 450
Description: Recon Bike
LongDesc: Fast scout vehicle, armed with \nrockets.\n Strong vs Vehicles, Aircraft\n Weak vs Infantry
Mobile: Mobile:
ROT: 10 ROT: 10
Speed: 20 Speed: 20
@@ -188,14 +202,16 @@ BIKE:
JEEP: JEEP:
Inherits: ^Vehicle Inherits: ^Vehicle
Buildable: Valued:
Cost: 400
Tooltip:
Name: Hum-Vee
Icon: jeepicnh Icon: jeepicnh
Description: Fast scout & anti-infantry vehicle.\n Strong vs Infantry\n Weak vs Tanks, Aircraft
Buildable:
BuildPaletteOrder: 20 BuildPaletteOrder: 20
Prerequisites: weap Prerequisites: weap
Owner: gdi Owner: gdi
Cost: 400
Description: Hum-Vee
LongDesc: Fast scout & anti-infantry vehicle.\n Strong vs Infantry\n Weak vs Tanks, Aircraft
Mobile: Mobile:
ROT: 10 ROT: 10
Speed: 15 Speed: 15
@@ -215,14 +231,16 @@ JEEP:
LTNK: LTNK:
Inherits: ^Tank Inherits: ^Tank
Buildable: Valued:
Cost: 600
Tooltip:
Name: Light Tank
Icon: ltnkicnh Icon: ltnkicnh
Description: Light Tank, good for scouting.\n Strong vs Light Vehicles\n Weak vs Tanks, Aircraft
Buildable:
BuildPaletteOrder: 30 BuildPaletteOrder: 30
Prerequisites: hq Prerequisites: hq
Owner: nod Owner: nod
Cost: 600
Description: Light Tank
LongDesc: Light Tank, good for scouting.\n Strong vs Light Vehicles\n Weak vs Tanks, Aircraft
Mobile: Mobile:
Speed: 9 Speed: 9
Health: Health:
@@ -245,14 +263,16 @@ LTNK:
MTNK: MTNK:
Inherits: ^Tank Inherits: ^Tank
Buildable: Valued:
Cost: 800
Tooltip:
Name: Medium Tank
Icon: mtnkicnh Icon: mtnkicnh
Description: General-Purpose GDI Tank.\n Strong vs Tanks, Light Vehicles\n Weak vs Infantry, Aircraft
Buildable:
BuildPaletteOrder: 30 BuildPaletteOrder: 30
Prerequisites: hq Prerequisites: hq
Owner: gdi Owner: gdi
Cost: 800
Description: Medium Tank
LongDesc: General-Purpose GDI Tank.\n Strong vs Tanks, Light Vehicles\n Weak vs Infantry, Aircraft
Mobile: Mobile:
Speed: 9 Speed: 9
Health: Health:
@@ -275,14 +295,16 @@ MTNK:
HTNK: HTNK:
Inherits: ^Tank Inherits: ^Tank
Buildable: Valued:
Cost: 1500
Tooltip:
Name: Mammoth Tank
Icon: htnkicnh Icon: htnkicnh
Description: Heavily armored GDI Tank.\n Strong vs Everything
Buildable:
BuildPaletteOrder: 60 BuildPaletteOrder: 60
Prerequisites: eye Prerequisites: eye
Owner: gdi Owner: gdi
Cost: 1500
Description: Mammoth Tank
LongDesc: Heavily armored GDI Tank.\n Strong vs Everything
Mobile: Mobile:
Crushes: wall, heavywall Crushes: wall, heavywall
Speed: 3 Speed: 3
@@ -310,14 +332,16 @@ HTNK:
MSAM: MSAM:
Inherits: ^Tank Inherits: ^Tank
Buildable: Valued:
Cost: 800
Tooltip:
Name: Rocket Launcher
Icon: msamicnh Icon: msamicnh
Description: Long range artillery.\n Strong vs Infantry, Buildings\n Weak vs Tanks, Aircraft
Buildable:
BuildPaletteOrder: 50 BuildPaletteOrder: 50
Prerequisites: hq Prerequisites: hq
Owner: gdi Owner: gdi
Cost: 800
Description: Rocket Launcher
LongDesc: Long range artillery.\n Strong vs Infantry, Buildings\n Weak vs Tanks, Aircraft
Mobile: Mobile:
Speed: 6 Speed: 6
Health: Health:
@@ -342,14 +366,16 @@ MSAM:
MLRS: MLRS:
Inherits: ^Tank Inherits: ^Tank
Buildable: Valued:
Cost: 750
Tooltip:
Name: SSM Launcher
Icon: mlrsicnh Icon: mlrsicnh
Description: Long range artillery.\n Strong vs Infantry, Aircraft\n Weak vs Tanks, Aircraft
Buildable:
BuildPaletteOrder: 60 BuildPaletteOrder: 60
Prerequisites: hq Prerequisites: hq
Owner: nod Owner: nod
Cost: 750
Description: SSM Launcher
LongDesc: Long range artillery.\n Strong vs Infantry, Aircraft\n Weak vs Tanks, Aircraft
Mobile: Mobile:
Speed: 6 Speed: 6
Health: Health:
@@ -369,14 +395,16 @@ MLRS:
STNK: STNK:
Inherits: ^Vehicle Inherits: ^Vehicle
Buildable: Valued:
Cost: 900
Tooltip:
Name: Stealth Tank
Icon: stnkicnh Icon: stnkicnh
Description: Missile tank that can bend light around \nitself to become invisible\n Strong vs Infantry, Aircraft\n Weak vs Tanks
Buildable:
BuildPaletteOrder: 90 BuildPaletteOrder: 90
Prerequisites: tmpl Prerequisites: tmpl
Owner: nod Owner: nod
Cost: 900
Description: Stealth Tank
LongDesc: Missile tank that can bend light around \nitself to become invisible\n Strong vs Infantry, Aircraft\n Weak vs Tanks
Mobile: Mobile:
Speed: 15 Speed: 15
Health: Health:
@@ -396,15 +424,17 @@ STNK:
TRAN: TRAN:
Inherits: ^Helicopter Inherits: ^Helicopter
Buildable: Valued:
Cost: 1500
Tooltip:
Name: Chinook Transport
Icon:tranicnh Icon:tranicnh
Description: Fast Infantry Transport Helicopter.\n Unarmed
Buildable:
BuildPaletteOrder: 10 BuildPaletteOrder: 10
Prerequisites: hpad Prerequisites: hpad
BuiltAt: hpad BuiltAt: hpad
Owner: gdi,nod Owner: gdi,nod
Cost: 1500
Description: Chinook Transport
LongDesc: Fast Infantry Transport Helicopter.\n Unarmed
Helicopter: Helicopter:
LandWhenIdle: true LandWhenIdle: true
ROT: 5 ROT: 5
@@ -425,15 +455,17 @@ TRAN:
HELI: HELI:
Inherits: ^Helicopter Inherits: ^Helicopter
Buildable: Valued:
Cost: 1200
Tooltip:
Name: Apache Longbow
Icon: heliicnh Icon: heliicnh
Description: Helicopter Gunship with AG Missiles.\n Strong vs Buildings, Tanks\n Weak vs Infantry
Buildable:
BuildPaletteOrder: 20 BuildPaletteOrder: 20
Prerequisites: hpad, hq Prerequisites: hpad, hq
BuiltAt: hpad BuiltAt: hpad
Owner: nod Owner: nod
Cost: 1200
Description: Apache Longbow
LongDesc: Helicopter Gunship with AG Missiles.\n Strong vs Buildings, Tanks\n Weak vs Infantry
Helicopter: Helicopter:
ROT: 4 ROT: 4
Speed: 20 Speed: 20
@@ -453,15 +485,17 @@ HELI:
ORCA: ORCA:
Inherits: ^Helicopter Inherits: ^Helicopter
Buildable: Valued:
Cost: 1200
Tooltip:
Name: Orca
Icon: orcaicnh Icon: orcaicnh
Description: Helicopter Gunship with AG Missiles.\n Strong vs Buildings, Tanks\n Weak vs Infantry
Buildable:
BuildPaletteOrder: 20 BuildPaletteOrder: 20
Prerequisites: hpad, hq Prerequisites: hpad, hq
BuiltAt: hpad BuiltAt: hpad
Owner: gdi Owner: gdi
Cost: 1200
Description: Orca
LongDesc: Helicopter Gunship with AG Missiles.\n Strong vs Buildings, Tanks\n Weak vs Infantry
Helicopter: Helicopter:
ROT: 4 ROT: 4
Speed: 20 Speed: 20
@@ -482,6 +516,8 @@ C17:
ParaDrop: ParaDrop:
LZRange: 1 LZRange: 1
Inherits: ^Plane Inherits: ^Plane
Tooltip:
Name: Supply Aircraft
Plane: Plane:
ROT: 5 ROT: 5
Speed: 25 Speed: 25
@@ -500,6 +536,9 @@ C17:
A10: A10:
Inherits: ^Plane Inherits: ^Plane
Tooltip:
Name: A10 Bomber
Icon: a10icnh
Plane: Plane:
ROT: 4 ROT: 4
Speed: 25 Speed: 25
@@ -519,7 +558,9 @@ BOAT:
Inherits: ^Ship Inherits: ^Ship
Valued: Valued:
Cost: 300 Cost: 300
Description: Gunboat Tooltip:
Name: Gunboat
Icon: boaticnh
Health: Health:
HP: 700 HP: 700
Armor: heavy Armor: heavy
@@ -544,7 +585,8 @@ LST:
Inherits: ^Ship Inherits: ^Ship
Valued: Valued:
Cost: 300 Cost: 300
Description: Landing Craft Tooltip:
Name: Landing Craft
Mobile: Mobile:
Crushes: crate Crushes: crate
TerrainTypes: Clear, Rough, Road, Tree, Water, Rock, Wall, Ore, Beach, River TerrainTypes: Clear, Rough, Road, Tree, Water, Rock, Wall, Ore, Beach, River
@@ -567,8 +609,9 @@ LST:
LTNK.Husk: LTNK.Husk:
Inherits: ^Husk Inherits: ^Husk
Valued: Tooltip:
Description: Husk (Light Tank) Name: Husk (Light Tank)
Icon: ltnkicnh
RenderUnit: RenderUnit:
Image: ltnk Image: ltnk
ThrowsParticle@turret: ThrowsParticle@turret:
@@ -579,8 +622,9 @@ LTNK.Husk:
MTNK.Husk: MTNK.Husk:
Inherits: ^Husk Inherits: ^Husk
Valued: Tooltip:
Description: Husk (Medium Tank) Name: Husk (Medium Tank)
Icon: mtnkicnh
RenderUnit: RenderUnit:
Image: mtnk Image: mtnk
ThrowsParticle@turret: ThrowsParticle@turret:
@@ -591,8 +635,9 @@ MTNK.Husk:
HTNK.Husk: HTNK.Husk:
Inherits: ^Husk Inherits: ^Husk
Valued: Tooltip:
Description: Husk (Mammoth Tank) Name: Husk (Mammoth Tank)
Icon: htnkicnh
RenderUnit: RenderUnit:
Image: htnk Image: htnk
ThrowsParticle@turret: ThrowsParticle@turret:
@@ -603,8 +648,9 @@ HTNK.Husk:
MSAM.Husk: MSAM.Husk:
Inherits: ^Husk Inherits: ^Husk
Valued: Tooltip:
Description: Husk (Rocket Launcher) Name: Husk (Rocket Launcher)
Icon: msamicnh
RenderUnit: RenderUnit:
Image: msam Image: msam
ThrowsParticle@turret: ThrowsParticle@turret:
@@ -615,8 +661,9 @@ MSAM.Husk:
MLRS.Husk: MLRS.Husk:
Inherits: ^Husk Inherits: ^Husk
Valued: Tooltip:
Description: Husk (SSM Launcher) Name: Husk (SSM Launcher)
Icon: mlrsicnh
RenderUnit: RenderUnit:
Image: mlrs Image: mlrs
ThrowsParticle@turret: ThrowsParticle@turret: