Build time increase of basic blocks

This commit is contained in:
Anuken
2019-12-30 12:55:35 -05:00
parent f2e1d17ce9
commit 51bd74fcc1

View File

@@ -898,11 +898,11 @@ public class Blocks implements ContentList{
}}; }};
junction = new Junction("junction"){{ junction = new Junction("junction"){{
requirements(Category.distribution, ItemStack.with(Items.copper, 1), true); requirements(Category.distribution, ItemStack.with(Items.copper, 2), true);
speed = 26; speed = 26;
capacity = 12; capacity = 12;
health = 30; health = 30;
buildCostMultiplier = 4f; buildCostMultiplier = 6f;
}}; }};
itemBridge = new BufferedItemBridge("bridge-conveyor"){{ itemBridge = new BufferedItemBridge("bridge-conveyor"){{
@@ -922,15 +922,18 @@ public class Blocks implements ContentList{
sorter = new Sorter("sorter"){{ sorter = new Sorter("sorter"){{
requirements(Category.distribution, ItemStack.with(Items.lead, 2, Items.copper, 2)); requirements(Category.distribution, ItemStack.with(Items.lead, 2, Items.copper, 2));
buildCostMultiplier = 3f;
}}; }};
invertedSorter = new Sorter("inverted-sorter"){{ invertedSorter = new Sorter("inverted-sorter"){{
requirements(Category.distribution, ItemStack.with(Items.lead, 2, Items.copper, 2)); requirements(Category.distribution, ItemStack.with(Items.lead, 2, Items.copper, 2));
buildCostMultiplier = 3f;
invert = true; invert = true;
}}; }};
router = new Router("router"){{ router = new Router("router"){{
requirements(Category.distribution, ItemStack.with(Items.copper, 3)); requirements(Category.distribution, ItemStack.with(Items.copper, 3));
buildCostMultiplier = 2f;
}}; }};
distributor = new Router("distributor"){{ distributor = new Router("distributor"){{
@@ -940,6 +943,7 @@ public class Blocks implements ContentList{
overflowGate = new OverflowGate("overflow-gate"){{ overflowGate = new OverflowGate("overflow-gate"){{
requirements(Category.distribution, ItemStack.with(Items.lead, 2, Items.copper, 4)); requirements(Category.distribution, ItemStack.with(Items.lead, 2, Items.copper, 4));
buildCostMultiplier = 3f;
}}; }};
massDriver = new MassDriver("mass-driver"){{ massDriver = new MassDriver("mass-driver"){{