diff --git a/mods/antum/antum_crafting/depends.txt b/mods/antum/antum_crafting/depends.txt new file mode 100644 index 00000000..681e74b9 --- /dev/null +++ b/mods/antum/antum_crafting/depends.txt @@ -0,0 +1,3 @@ +farming +wool +craft_guide? \ No newline at end of file diff --git a/mods/antum/antum_crafting/init.lua b/mods/antum/antum_crafting/init.lua new file mode 100644 index 00000000..36744bd4 --- /dev/null +++ b/mods/antum/antum_crafting/init.lua @@ -0,0 +1,7 @@ + +-- Create cotton from white wool +minetest.register_craft({ + output = "farming:cotton 4", + type = "shapeless", + recipe = {"wool:white"}, +})