This commit is contained in:
Anuken
2021-11-02 14:49:05 -04:00
parent 00f03d793f
commit 38f7d2dcd0
8 changed files with 16 additions and 12 deletions

View File

@@ -1161,7 +1161,7 @@ public class Blocks implements ContentList{
buildTower = new BuildTurret("build-tower"){{
requirements(Category.effect, with(Items.graphite, 40, Items.beryllium, 50));
outlineColor = Pal.darkOutline;
consumes.power(1.5f);
consumes.power(3f);
range = 120f;
size = 3;
health = 80;

View File

@@ -8,7 +8,7 @@ public class Items implements ContentList{
public static Item
scrap, copper, lead, graphite, coal, titanium, thorium, silicon, plastanium,
phaseFabric, surgeAlloy, sporePod, sand, blastCompound, pyratite, metaglass,
beryllium, fissileMatter, dormantCyst;
beryllium, fissileMatter, dormantCyst, tungsten;
@Override
public void load(){
@@ -99,12 +99,15 @@ public class Items implements ContentList{
}};
fissileMatter = new Item("fissile-matter", Color.valueOf("536631")){{
hardness = 4;
radioactivity = 1.5f;
}};
dormantCyst = new Item("dormant-cyst", Color.valueOf("df824d")){{
flammability = 0.1f;
}};
tungsten = new Item("tungsten", Color.valueOf("768a9a")){{
hardness = 5;
}};
}
}