Skip to content

Commit

Permalink
mining updates
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Apr 4, 2024
1 parent e82be7e commit bdd404a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/sw/content/SWBlocks.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public static void load() {
health = 160;
glowIntensity = pulseIntensity = 0f;
drillTime = 160f;
tier = 3;
tier = 1;
range = 5;
boostHeatColor = Color.black;
optionalBoostIntensity = 1f;
Expand Down Expand Up @@ -113,7 +113,7 @@ public static void load() {
);
size = 2;
health = 160;
tier = 3;
tier = 2;
drillTime = 400;
}};
// endregion
Expand Down
8 changes: 6 additions & 2 deletions src/sw/content/SWItems.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,12 @@ public class SWItems {
denseAlloy, thermite, scorch;

public static void load() {
nickel = new Item("nickel", Color.valueOf("CCD4D9"));
iron = new Item("iron", Color.valueOf("646485"));
nickel = new Item("nickel", Color.valueOf("CCD4D9")) {{
hardness = 1;
}};
iron = new Item("iron", Color.valueOf("646485")) {{
hardness = 2;
}};
arsenic = new Item("arsenic", Color.valueOf("857164"));

compound = new Item("compound", Color.valueOf("515151"));
Expand Down
6 changes: 5 additions & 1 deletion src/sw/content/SWUnitTypes.java
Original file line number Diff line number Diff line change
Expand Up @@ -1014,14 +1014,18 @@ public static void load() {
range = maxRange = 100;
engineSize = engineOffset = shadowElevationScl = 0f;
fallSpeed = buildSpeed = 1f;
mineTier = 1;
mineSpeed = 5;
coreUnitDock = lowAltitude = true;
//shocking
flying = true;

legCount = 8;
legGroupSize = 2;
legLength = 15f;
legForwardScl = 0f;
legBaseOffset = 4f;
legExtension = -2f;
legLength = 14f;
legContinuousMove = true;

constructor = UnitLegsIntangible::create;
Expand Down

0 comments on commit bdd404a

Please sign in to comment.