Files
minecraft_server_zombie/scripts/Mod/storage_drawer.zs
2024-11-28 17:00:03 +00:00

14 lines
992 B
Plaintext

import crafttweaker.api.tag.MCTag;
// Drawer Controllers
craftingTable.remove(<item:storagedrawers:controller>);
craftingTable.addShaped("storage_drawer_controller", <item:storagedrawers:controller>,
[[<item:minecraft:smooth_stone>, <item:minecraft:smooth_stone>, <item:minecraft:smooth_stone>],
[<item:refinedstorage:basic_processor>, <tag:items:storagedrawers:drawers>, <item:refinedstorage:basic_processor>],
[<item:minecraft:smooth_stone>, <tag:items:forge:wires/copper>, <item:minecraft:smooth_stone>]]);
craftingTable.remove(<item:storagedrawers:controller_slave>);
craftingTable.addShaped("storage_drawer_controller_slave", <item:storagedrawers:controller_slave>,
[[<item:minecraft:smooth_stone>, <item:minecraft:smooth_stone>, <item:minecraft:smooth_stone>],
[<item:refinedstorage:basic_processor>, <tag:items:storagedrawers:drawers>, <item:refinedstorage:basic_processor>],
[<item:minecraft:smooth_stone>, <tag:items:forge:wires/iron>, <item:minecraft:smooth_stone>]]);