ModEnc is currently in Maintenance Mode: Changes could occur at any given moment, without advance warning.

Difference between revisions of "Movement"

From ModEnc
Jump to: navigation, search
(SpeedType)
(removed useless links (121st edit today))
 
(9 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 
== Controlling Unit Movement Abilities ==
 
== Controlling Unit Movement Abilities ==
  
For example, Tanya can go into the water, so can seals. Other [[infantry]] can't. Some vehicles can also go over water, while other can't. It is not dependant on the [[locomotor]], the MovementZone and SpeedType control this.
+
Tanya can go into the water, so can seals. Other [[InfantryTypes]] can't. Some vehicles can also go over water, while others can't. It is not dependant on the [[locomotor]], the MovementZone and SpeedType control this. For more information, refer to the {{Tt|[[MovementZone]], [[SpeedType]], [[MovementRestrictedTo]]}} articles.
 
 
=== MovementZone ===
 
 
 
MovementZone says where is the unit allowed to go and helps the [[AI]]:
 
 
 
Amphibious - ground and water. <br>
 
AmphibiousDestroyer - can go into water as well as ground. Can destroy infantry obstacles via weaponry. In RA2 this is tied to being an amphibious infantry while in TS it was for the ampibious APC.<br>
 
Crusher - ground only, can crush infantry, but not armed. <br>
 
CrusherAll - ground only. Can crush any mobile object, including walls. <br>
 
Destroyer - ground, no water. Can destroy building obstacles and crush infantry. <br>
 
Fly - fly anywhere. <br>
 
None - same as Fly. <br>
 
Infantry - only clear ground, no water. <br>
 
InfantryDestroyer - only clear ground, no water. Can destroy obstacles. <br>
 
Normal - clear ground, no water. Can destroy trees and such obstacles. Can crush infantry. <br>
 
Water - water only. <br>
 
 
 
=== SpeedType ===
 
 
 
SpeedType defines the way units move over certain [[terrain]] types. Looking at the rules, we see that each terrain type (Clear, Rough, Road, Tiberium, Water, etc.) has it's own section. Let's look at one:<br>
 
<tt>
 
[Clear]<br>
 
Foot=100%<br>
 
Track=100%<br>
 
Wheel=100% <sup>1</sup><br>
 
Float=0%<br>
 
Hover=50%<br>
 
Amphibious=80%<br>
 
FloatBeach=0%<br>
 
Buildable=yes<br>
 
</tt>
 
 
 
The numbers indicate at what percent of it's Speed= can the unit with a certain <tt>SpeedType=</tt> move over this [[terrain]]. You see that units with <tt>SpeedType=Hover</tt>, for instance, can move only up to half their normal <tt>Speed=</tt> over this [[terrain]]. You can use percent over 100, it'll work fine.
 
The [[terrain]] types are as follows:
 
 
 
Clear - Clear ground, no obstacles. <br>
 
Road - Dirt or paved roads. <br>
 
Rough - Rougher terrain such as rocky areas or thick grass. In RA2, this defaults to the same settings as Clear <br>
 
Rock - rocks, trees, cliffs, anything impassable. <br>
 
Tiberium - areas covered in Ore/Gems/[[Tiberium]]. <br>
 
Water - Water as in rivers or ocean areas. <br>
 
Railroad - Train tracks (Works in TS, in RA2 requires [[Terrain_Expansion]] (aka TX)). <br>
 
Tunnel - Tunnel Entrance/Exit (Works in TS, in RA2 requires [[Terrain_Expansion]] (aka TX)). <br>
 
Beach - The line where water and ground join. <br>
 
Weeds - Tiberium Veins (Works in TS, in RA2 it is not assigned to anything and can be used for new movement rules) <br>
 
Ice - Water gone cold (Works in TS, in RA2 it is not assigned to anything and can be used for new movement rules)
 
 
 
Some units also are restricted to certain terrains, say trains are restricted to railroad, ships are restricted to water, and some [[spawn]]ed aircraft are restricted to water(it affects only their landing). You can restrict other units to some kind of terrain, say to roads only if you so desired. To do so, use <tt>MovementRestrictedTo=</tt> with one of terrain types described above - Clear, Rough, Road, Water, [[Tiberium]], Rock, Beach...
 
 
 
<sup>1</sup>
 
<tt>SpeedType=Track</tt> is not used by any object ingame. So you can either restore it for it's original purpose (tracked vehicles) to  provide certain variation against standard vehicles (the vehicle locomotor defaults to SpeedType=Wheel) (see also below), or use it for something entirely unrelated, like a class of vehicles that can't go over [[tiberium]] for whatever reason.
 
 
 
'''Allied General''' - track was originally used for trains.
 
  
 
=== Tracked vs Wheeled ===
 
=== Tracked vs Wheeled ===

Latest revision as of 11:17, 12 June 2006

Controlling Unit Movement Abilities

Tanya can go into the water, so can seals. Other InfantryTypes can't. Some vehicles can also go over water, while others can't. It is not dependant on the locomotor, the MovementZone and SpeedType control this. For more information, refer to the MovementZone, SpeedType, MovementRestrictedTo articles.

Tracked vs Wheeled

[General]
TrackedUphill=1.0
TrackedDownhill=1.2
WheeledUphill=1.0
WheeledDownhill=1.2

These are multipliers to units' speed when climbing up/down hill.