Experimental: block loader/unloaders

This commit is contained in:
Anuken
2020-05-25 14:36:40 -04:00
parent 0e59a22cbe
commit 1ae9d04f47
35 changed files with 2700 additions and 2231 deletions

View File

@@ -80,7 +80,7 @@ public class Blocks implements ContentList{
//misc experimental
blockForge, blockLauncher;
blockForge, blockLauncher, blockLoader, blockUnloader;
@Override
public void load(){
@@ -1789,6 +1789,20 @@ public class Blocks implements ContentList{
consumes.power(2f);
}};
blockLoader = new BlockLoader("block-loader"){{
requirements(Category.production, BuildVisibility.debugOnly, ItemStack.with(Items.thorium, 100));
hasPower = true;
consumes.power(2f);
size = 3;
}};
blockUnloader = new BlockUnloader("block-unloader"){{
requirements(Category.production, BuildVisibility.debugOnly, ItemStack.with(Items.thorium, 100));
hasPower = true;
consumes.power(2f);
size = 3;
}};
//endregion
}
}