summaryrefslogtreecommitdiff
path: root/extranodes
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2017-03-11 20:02:20 -0500
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2017-03-11 20:02:20 -0500
commit3ba5354f8310770c7574402b0cf6661e1d59bd7a (patch)
tree1f6253b6b28f0634d0155e5db8a4a4c9254558b8 /extranodes
parentbf3498b7361c0fbacd75e5e967f2cee71ce5c50c (diff)
add recipes for insulator clips
Diffstat (limited to 'extranodes')
-rw-r--r--extranodes/init.lua17
1 files changed, 17 insertions, 0 deletions
diff --git a/extranodes/init.lua b/extranodes/init.lua
index 38b7dd9..74fb028 100644
--- a/extranodes/init.lua
+++ b/extranodes/init.lua
@@ -154,3 +154,20 @@ minetest.register_node(":technic:insulator_clip_fencepost", {
place_param2 = 171 -- medium amber, low saturation, closest color to default:wood
})
+minetest.register_craft({
+ output = "technic:insulator_clip",
+ recipe = {
+ { "", "dye:white", ""},
+ { "", "technic:raw_latex", ""},
+ { "technic:raw_latex", "default:stone", "technic:raw_latex"},
+ }
+})
+
+minetest.register_craft({
+ output = "technic:insulator_clip_fencepost 2",
+ recipe = {
+ { "", "dye:white", ""},
+ { "", "technic:raw_latex", ""},
+ { "technic:raw_latex", "default:fence_wood", "technic:raw_latex"},
+ }
+})