Sector preset class / New missions

This commit is contained in:
Anuken
2018-10-05 16:36:50 -04:00
parent a771dc8787
commit 35bc2c9803
27 changed files with 174 additions and 76 deletions

View File

@@ -77,7 +77,7 @@ public class Recipes implements ContentList{
new Recipe(distribution, DistributionBlocks.distributor, new ItemStack(Items.densealloy, 8), new ItemStack(Items.copper, 8));
new Recipe(distribution, DistributionBlocks.sorter, new ItemStack(Items.densealloy, 4), new ItemStack(Items.copper, 4));
new Recipe(distribution, DistributionBlocks.overflowGate, new ItemStack(Items.densealloy, 4), new ItemStack(Items.copper, 8));
new Recipe(distribution, DistributionBlocks.bridgeConveyor, new ItemStack(Items.densealloy, 8), new ItemStack(Items.copper, 8));
new Recipe(distribution, DistributionBlocks.itemBridge, new ItemStack(Items.densealloy, 8), new ItemStack(Items.copper, 8));
new Recipe(distribution, DistributionBlocks.massDriver, new ItemStack(Items.densealloy, 400), new ItemStack(Items.silicon, 300), new ItemStack(Items.lead, 400), new ItemStack(Items.thorium, 250));
//CRAFTING

View File

@@ -6,7 +6,7 @@ import io.anuke.mindustry.world.blocks.distribution.*;
public class DistributionBlocks extends BlockList implements ContentList{
public static Block conveyor, titaniumconveyor, distributor, junction,
bridgeConveyor, phaseConveyor, sorter, router, overflowGate, massDriver;
itemBridge, phaseConveyor, sorter, router, overflowGate, massDriver;
@Override
public void load(){
@@ -26,7 +26,7 @@ public class DistributionBlocks extends BlockList implements ContentList{
capacity = 32;
}};
bridgeConveyor = new BufferedItemBridge("bridge-conveyor"){{
itemBridge = new BufferedItemBridge("bridge-conveyor"){{
range = 4;
speed = 60f;
}};