Ground Units: Difference between revisions
Line 52: | Line 52: | ||
|style="text-align: center;"|'''RECON''' | |style="text-align: center;"|'''RECON''' | ||
|style="text-align: center;"|'''ROCKETTHROWER'''<ref>Same Unit as Rocket Launcher</ref> | |style="text-align: center;"|'''ROCKETTHROWER'''<ref>Same Unit as Rocket Launcher</ref> | ||
|style="text-align: center;"|'''ZCOUNIT_AUTO_TANK''' | |style="text-align: center;"|CO Unit of Jugger, Epoch, Rattigan: '''ZCOUNIT_AUTO_TANK''' | ||
|style="text-align: center;"|'''ZCOUNIT_CHAPERON''' | |style="text-align: center;"|'''ZCOUNIT_CHAPERON''' | ||
|- | |- | ||
|style="text-align: center;"|'''ZCOUNIT_CRYSTAL_TANK''' | |style="text-align: center;"|CO Unit of Sabaki, Von Bolt, Caulder: '''ZCOUNIT_CRYSTAL_TANK''' | ||
|style="text-align: center;"|'''ZCOUNIT_HOT_TANK''' | |style="text-align: center;"|'''ZCOUNIT_HOT_TANK''' | ||
|style="text-align: center;"|'''ZCOUNIT_INTEL_TRUCK''' | |style="text-align: center;"|'''ZCOUNIT_INTEL_TRUCK''' |
Revision as of 03:45, 3 March 2023
Notice: Infantry Units are not included in this list, as they are their own Type.
Ground Units stats and properties can be modified as a whole, by using the GameEnums.UnitType_Ground variable:
For instance:
CO_TEST.getOffensiveBonus = function (co, attacker, atkPosX, atkPosY,
defender, defPosX, defPosY, isDefender, action,luckmode, map) {
if (co.getIsCO0() === true) {
switch (co.getPowerMode()) {
case GameEnums.PowerMode_Power:
if (attacker.getUnitType() === GameEnums.UnitType_Ground) {
return 30;
}
break;
//rest of the code goes here
}
}
}
Increases the Offense of Ground Units by 30% during the CO Power.
Modifying stats or properties of specific Units
Each Unit can be modified through a comparison of the UnitID. The Unit ID can be obtained through unit.getUnitID() And it's of a String type.
Possible values are:
Ground Units | |||||||||
---|---|---|---|---|---|---|---|---|---|
ANTITANKCANNON | APC | ARTILLERY | FLAK[1] | ||||||
FLARE | HEAVY_TANK[2] | HOELLIUM[3] | LIGHT_TANK[4] | ||||||
MEGATANK | MISSILE | NEOTANK | PIPERUNNER | ||||||
RECON | ROCKETTHROWER[5] | CO Unit of Jugger, Epoch, Rattigan: ZCOUNIT_AUTO_TANK | ZCOUNIT_CHAPERON | ||||||
CO Unit of Sabaki, Von Bolt, Caulder: ZCOUNIT_CRYSTAL_TANK | ZCOUNIT_HOT_TANK | ZCOUNIT_INTEL_TRUCK | ZCOUNIT_IRON_SHIELD_GENERATOR | ||||||
ZCOUNIT_LOGIC_TRUCK | ZCOUNIT_NEOSPIDER_TANK | ZCOUNIT_REPAIR_TANK | ZCOUNIT_ROYAL_GUARD | ||||||
ZCOUNIT_SIEGE_CANNON | ZCOUNIT_SMUGGLER | ZCOUNIT_TANK_HUNTER |
Of these, the ones with the ZCOUNIT_ prefix are Units specific to COs that cannot be deployed by the rest.