Add straw

This commit is contained in:
jp 2015-01-12 20:21:06 +01:00
parent d546a5a1fa
commit 996f1df4af
4 changed files with 20 additions and 0 deletions

View file

@ -57,3 +57,6 @@ Created by VanessaE (License: WTFPL):
farming_cotton_6.png
farming_cotton_7.png
farming_cotton_8.png
Created by MasterGollum (License: WTFPL):
farming_straw.png

View file

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

View file

@ -80,6 +80,14 @@ minetest.register_node("farming:desert_sand_soil_wet", {
}
})
minetest.register_node("farming:straw", {
description = "Straw",
drop = "farming:wheat 4",
tiles = {"farming_straw.png"},
groups = {snappy=3, flammable=4},
sounds = default.node_sound_leaves_defaults(),
})
minetest.register_abm({
nodenames = {"group:field"},
interval = 15,

Binary file not shown.

After

Width:  |  Height:  |  Size: 880 B