Add straw

This commit is contained in:
jp 2014-12-23 16:02:09 +01:00
parent a9ac480dcd
commit 09d50906ae
3 changed files with 16 additions and 0 deletions

View file

@ -59,3 +59,12 @@ minetest.register_craft({
{"farming:cotton", "farming:cotton"},
}
})
minetest.register_craft({
output = "farming:straw",
recipe = {
{"farming:wheat", "farming:wheat", "farming:wheat"},
{"farming:wheat", "farming:wheat", "farming:wheat"},
{"farming:wheat", "farming:wheat", "farming:wheat"},
}
})

View file

@ -80,6 +80,13 @@ minetest.register_node("farming:desert_sand_soil_wet", {
}
})
minetest.register_node("farming:straw", {
description = "Straw",
drop = "farming:straw",
tiles = {"farming_straw.png"},
groups = {crumbly=3},
})
minetest.register_abm({
nodenames = {"group:field"},
interval = 15,

Binary file not shown.

After

Width:  |  Height:  |  Size: 880 B