Dormany cyst item

This commit is contained in:
Anuken
2021-08-18 17:38:30 -04:00
parent f3cacb9e99
commit 130f32f3cd
7 changed files with 39 additions and 9 deletions

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;
beryllium, fissileMatter, dormantCyst;
@Override
public void load(){
@@ -94,7 +94,7 @@ public class Items implements ContentList{
}};
beryllium = new Item("beryllium", Color.valueOf("3a8f64")){{
hardness = 4;
hardness = 5;
cost = 1.3f;
}};
@@ -102,5 +102,9 @@ public class Items implements ContentList{
hardness = 4;
radioactivity = 1.5f;
}};
dormantCyst = new Item("dormant-cyst", Color.valueOf("a5221c")){{
flammability = 0.1f;
}};
}
}