might as well uncomment this hidden unit
This commit is contained in:
BIN
core/assets-raw/sprites/units/neoplasm/latum-segment0.png
Normal file
BIN
core/assets-raw/sprites/units/neoplasm/latum-segment0.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.5 KiB |
BIN
core/assets-raw/sprites/units/neoplasm/latum-segment1.png
Normal file
BIN
core/assets-raw/sprites/units/neoplasm/latum-segment1.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.0 KiB |
BIN
core/assets-raw/sprites/units/neoplasm/latum-segment2.png
Normal file
BIN
core/assets-raw/sprites/units/neoplasm/latum-segment2.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.9 KiB |
BIN
core/assets-raw/sprites/units/neoplasm/latum-segment3.png
Normal file
BIN
core/assets-raw/sprites/units/neoplasm/latum-segment3.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.1 KiB |
@@ -54,7 +54,7 @@ public class Vars implements Loadable{
|
|||||||
public static final int defaultEnv = Env.terrestrial | Env.spores | Env.groundOil | Env.groundWater | Env.oxygen;
|
public static final int defaultEnv = Env.terrestrial | Env.spores | Env.groundOil | Env.groundWater | Env.oxygen;
|
||||||
/** Wall darkness radius. */
|
/** Wall darkness radius. */
|
||||||
public static final int darkRadius = 4;
|
public static final int darkRadius = 4;
|
||||||
/** Maximum extra padding around deployment schematics. TODO 4, or 5?*/
|
/** Maximum extra padding around deployment schematics. */
|
||||||
public static final int maxLoadoutSchematicPad = 4;
|
public static final int maxLoadoutSchematicPad = 4;
|
||||||
/** All schematic base64 starts with this string.*/
|
/** All schematic base64 starts with this string.*/
|
||||||
public static final String schematicBaseStart ="bXNjaA";
|
public static final String schematicBaseStart ="bXNjaA";
|
||||||
|
|||||||
@@ -3906,26 +3906,25 @@ public class UnitTypes{
|
|||||||
//endregion
|
//endregion
|
||||||
//region erekir - neoplasm
|
//region erekir - neoplasm
|
||||||
|
|
||||||
if(false)
|
latum = new NeoplasmUnitType("latum"){{
|
||||||
latum = new NeoplasmUnitType("latum"){{
|
health = 20000;
|
||||||
health = 20000;
|
armor = 12;
|
||||||
armor = 12;
|
hitSize = 48f;
|
||||||
hitSize = 48f;
|
omniMovement = false;
|
||||||
omniMovement = false;
|
rotateSpeed = 1.7f;
|
||||||
rotateSpeed = 1.7f;
|
drownTimeMultiplier = 4f;
|
||||||
drownTimeMultiplier = 4f;
|
drawCell = false;
|
||||||
drawCell = false;
|
segments = 4;
|
||||||
segments = 4;
|
drawBody = false;
|
||||||
drawBody = false;
|
hidden = true;
|
||||||
hidden = true;
|
crushDamage = 2f;
|
||||||
crushDamage = 2f;
|
aiController = HugAI::new;
|
||||||
aiController = HugAI::new;
|
targetAir = false;
|
||||||
targetAir = false;
|
|
||||||
|
|
||||||
segmentScl = 4f;
|
segmentScl = 4f;
|
||||||
segmentPhase = 5f;
|
segmentPhase = 5f;
|
||||||
speed = 1f;
|
speed = 1f;
|
||||||
}};
|
}};
|
||||||
|
|
||||||
//endregion
|
//endregion
|
||||||
//region erekir - core
|
//region erekir - core
|
||||||
|
|||||||
@@ -470,8 +470,8 @@ public class ContentParser{
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if(value.has("controller")){
|
if(value.has("controller") || value.has("aiController")){
|
||||||
unit.aiController = supply(resolve(value.getString("controller"), FlyingAI.class));
|
unit.aiController = supply(resolve(value.getString("controller", value.getString("aiController", "")), FlyingAI.class));
|
||||||
value.remove("controller");
|
value.remove("controller");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user