Balancing / Bugfixes / Decreased build duration slightly

This commit is contained in:
Anuken
2019-03-28 14:38:00 -04:00
parent fd190c7770
commit e6a24b8ba1
9 changed files with 19 additions and 21 deletions
@@ -599,7 +599,7 @@ public class Blocks implements ContentList{
//endregion
//region defense
int wallHealthMultiplier = 3;
int wallHealthMultiplier = 4;
scrapWall = new Wall("scrap-wall"){{
health = 60 * wallHealthMultiplier;
@@ -14,24 +14,24 @@ public class Items implements ContentList{
copper = new Item("copper", Color.valueOf("d99d73")){{
type = ItemType.material;
hardness = 1;
cost = 0.6f;
cost = 0.5f;
alwaysUnlocked = true;
}};
lead = new Item("lead", Color.valueOf("8c7fa9")){{
type = ItemType.material;
hardness = 1;
cost = 0.9f;
cost = 0.7f;
}};
metaglass = new Item("metaglass", Color.valueOf("ebeef5")){{
type = ItemType.material;
cost = 2f;
cost = 1.5f;
}};
graphite = new Item("graphite", Color.valueOf("b2c6d2")){{
type = ItemType.material;
cost = 1.3f;
cost = 1f;
}};
coal = new Item("coal", Color.valueOf("272727")){{
@@ -43,7 +43,7 @@ public class Items implements ContentList{
titanium = new Item("titanium", Color.valueOf("8da1e3")){{
type = ItemType.material;
hardness = 3;
cost = 1.1f;
cost = 1f;
}};
thorium = new Item("thorium", Color.valueOf("f9a3c7")){{
@@ -51,7 +51,7 @@ public class Items implements ContentList{
explosiveness = 0.2f;
hardness = 4;
radioactivity = 1f;
cost = 1.4f;
cost = 1.1f;
}};
scrap = new Item("scrap", Color.valueOf("777777")){{
@@ -60,19 +60,19 @@ public class Items implements ContentList{
silicon = new Item("silicon", Color.valueOf("53565c")){{
type = ItemType.material;
cost = 0.9f;
cost = 0.8f;
}};
plastanium = new Item("plastanium", Color.valueOf("cbd97f")){{
type = ItemType.material;
flammability = 0.2f;
explosiveness = 0.2f;
cost = 1.6f;
cost = 1.3f;
}};
phasefabric = new Item("phase-fabric", Color.valueOf("f4ba6e")){{
type = ItemType.material;
cost = 1.5f;
cost = 1.3f;
radioactivity = 0.6f;
}};