Removed quartz and dirium, added plastic + dense alloy

This commit is contained in:
Anuken
2018-03-22 19:10:28 -04:00
parent e5656896e7
commit 5b075ead9e
16 changed files with 173 additions and 148 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 261 B

After

Width:  |  Height:  |  Size: 260 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 249 B

After

Width:  |  Height:  |  Size: 259 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 268 B

After

Width:  |  Height:  |  Size: 252 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 251 B

After

Width:  |  Height:  |  Size: 272 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 272 B

After

Width:  |  Height:  |  Size: 235 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 253 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 248 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 290 B

After

Width:  |  Height:  |  Size: 270 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 266 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 284 B

After

Width:  |  Height:  |  Size: 272 B

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 93 KiB

After

Width:  |  Height:  |  Size: 94 KiB

View File

@@ -1,7 +1,7 @@
#Autogenerated file. Do not modify. #Autogenerated file. Do not modify.
#Wed Mar 21 20:49:05 EDT 2018 #Thu Mar 22 19:09:59 EDT 2018
version=release version=release
androidBuildCode=599 androidBuildCode=608
name=Mindustry name=Mindustry
code=3.4 code=3.4
build=custom build build=custom build

View File

@@ -26,20 +26,15 @@ public class Item implements Comparable<Item>{
}, },
steel = new Item("steel"), steel = new Item("steel"),
titanium = new Item("titanium"), titanium = new Item("titanium"),
dirium = new Item("dirium"),
uranium = new Item("uranium"){ uranium = new Item("uranium"){
{ {
explosiveness = 0.1f; explosiveness = 0.1f;
material = false; material = false;
} }
}, },
quartz = new Item("quartz") {
{
material = false;
fluxiness = 0.65f;
}
},
silicon = new Item("silicon"), silicon = new Item("silicon"),
plastic = new Item("plastic"),
densealloy = new Item("densealloy"),
biomatter = new Item("biomatter"){ biomatter = new Item("biomatter"){
{ {
material = false; material = false;

View File

@@ -62,6 +62,7 @@ public class Recipes {
//new Recipe(production, ProductionBlocks.stonedrill, stack(Item.stone, 12)), //new Recipe(production, ProductionBlocks.stonedrill, stack(Item.stone, 12)),
new Recipe(production, ProductionBlocks.irondrill, stack(Item.iron, 25)), new Recipe(production, ProductionBlocks.irondrill, stack(Item.iron, 25)),
new Recipe(production, ProductionBlocks.copperdrill, stack(Item.iron, 25)),
new Recipe(production, ProductionBlocks.coaldrill, stack(Item.iron, 25), stack(Item.iron, 40)), new Recipe(production, ProductionBlocks.coaldrill, stack(Item.iron, 25), stack(Item.iron, 40)),
new Recipe(production, ProductionBlocks.titaniumdrill, stack(Item.iron, 50), stack(Item.steel, 50)), new Recipe(production, ProductionBlocks.titaniumdrill, stack(Item.iron, 50), stack(Item.steel, 50)),
new Recipe(production, ProductionBlocks.uraniumdrill, stack(Item.iron, 40), stack(Item.steel, 40)), new Recipe(production, ProductionBlocks.uraniumdrill, stack(Item.iron, 40), stack(Item.steel, 40)),

View File

@@ -167,12 +167,20 @@ public class ProductionBlocks{
drillTime = 360; drillTime = 360;
} }
}, },
copperdrill = new Drill("copperdrill"){
{
resource = Blocks.copper;
result = Item.copper;
drillTime = 400;
}
},
coaldrill = new Drill("coaldrill"){ coaldrill = new Drill("coaldrill"){
{ {
resource = Blocks.coal; resource = Blocks.coal;
result = Item.coal; result = Item.coal;
drillTime = 360; drillTime = 420;
} }
}, },