From c3912169808ab1cb98672aa25df7e8eaea7fbd40 Mon Sep 17 00:00:00 2001 From: AntumDeluge Date: Tue, 23 Aug 2016 18:44:13 -0700 Subject: [PATCH] Create "antum_crafting" mod. Makes cotton from wool. --- mods/antum/antum_crafting/depends.txt | 3 +++ mods/antum/antum_crafting/init.lua | 7 +++++++ 2 files changed, 10 insertions(+) create mode 100644 mods/antum/antum_crafting/depends.txt create mode 100644 mods/antum/antum_crafting/init.lua 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"}, +})