Small deconstructor

This commit is contained in:
Anuken
2021-12-06 14:30:54 -05:00
parent c4dc6511fd
commit 26692a3199
14 changed files with 30 additions and 8 deletions

View File

@@ -3244,7 +3244,6 @@ public class Blocks{
consumes.power(6f);
}};
if(false)
smallDeconstructor = new PayloadDeconstructor("small-deconstructor"){{
requirements(Category.units, with(Items.thorium, 80, Items.silicon, 80, Items.graphite, 80));
itemCapacity = 100;

View File

@@ -43,10 +43,14 @@ public class ErekirTechTree{
});
});
node(deconstructor, () -> {
node(smallDeconstructor, () -> {
node(largeConstructor, () -> {
});
node(deconstructor, () -> {
});
});
});
});