Druidcraft

Druidcraft

8M Downloads

Quark Chests for Beetles

Liguma opened this issue ยท 3 comments

commented

Describe your suggestion:
At the moment only vanilla chests can be used on beetles

Describe alternatives you've considered:
Also all Quark variants should be possible to use with beetles

Additional context:
For now we have to disable chest variants in quark

commented

I believe there's a recipe that allows you to convert quark chests into vanilla chests.

If it doesn't, you should be able to use the wooden chest tag in a recipe as a shapeless ingredient with the output of a standard vanilla chest in order to convert.

commented

I have a crafttweaker script for this:
craftingTable.addShapeless("chesto_chango", <item:minecraft:trapped_chest>, [<item:quark:acacia_trapped_chest>]); craftingTable.addShapeless("chesto_chango1", <item:minecraft:trapped_chest>, [<item:quark:jungle_trapped_chest>]); craftingTable.addShapeless("chesto_chango2", <item:minecraft:trapped_chest>, [<item:quark:birch_trapped_chest>]); craftingTable.addShapeless("chesto_chango3", <item:minecraft:trapped_chest>, [<item:quark:spruce_trapped_chest>]); craftingTable.addShapeless("chesto_chango4", <item:minecraft:trapped_chest>, [<item:quark:oak_trapped_chest>]); craftingTable.addShapeless("chesto_chango", <item:minecraft:trapped_chest>, [<item:quark:dark_oak_trapped_chest>]); craftingTable.addShapeless("chesto_chango5", <item:minecraft:chest>, [<item:quark:acacia_chest>]); craftingTable.addShapeless("chesto_chango6", <item:minecraft:chest>, [<item:quark:jungle_chest>]); craftingTable.addShapeless("chesto_chango7", <item:minecraft:chest>, [<item:quark:birch_chest>]); craftingTable.addShapeless("chesto_chango8", <item:minecraft:chest>, [<item:quark:spruce_chest>]); craftingTable.addShapeless("chesto_chango9", <item:minecraft:chest>, [<item:quark:oak_chest>]); craftingTable.addShapeless("chesto_chango9", <item:minecraft:chest>, [<item:quark:dark_oak_chest>]);

You just put this in the scripts folder as a .zs file.

commented

Thx ๐Ÿ‘