Added RDX entry

This commit is contained in:
Anuken
2018-05-05 10:16:26 -04:00
parent c1066e94f2
commit 3905da1a62

View File

@@ -9,7 +9,7 @@ public class Items {
stone = new Item("stone", Color.valueOf("777777")) {
{
material = false;
hardness = 2;
hardness = 3;
}
},
iron = new Item("iron", Color.valueOf("bc8271")){
@@ -63,5 +63,12 @@ public class Items {
material = false;
fluxiness = 0.5f;
}
},
rdx = new Item("rdx", Color.valueOf("e3d39e")){
{
material = false;
flammability = 0.2f;
explosiveness = 0.6f;
}
};
}