forked from mtcontrib/farming
Added Straw
This commit is contained in:
parent
3c337bb84f
commit
fd6c4e592f
BIN
textures/farming_straw.png
Normal file
BIN
textures/farming_straw.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 892 B |
26
wheat.lua
26
wheat.lua
@ -35,6 +35,32 @@ minetest.register_craftitem("farming:wheat", {
|
||||
inventory_image = "farming_wheat.png",
|
||||
})
|
||||
|
||||
-- Straw
|
||||
|
||||
minetest.register_node("farming:straw", {
|
||||
description = "Straw",
|
||||
tiles = {"farming_straw.png"},
|
||||
is_ground_content = false,
|
||||
groups = {snappy=3, flammable=4},
|
||||
sounds = default.node_sound_leaves_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:straw 3",
|
||||
recipe = {
|
||||
{"farming:wheat", "farming:wheat", "farming:wheat"},
|
||||
{"farming:wheat", "farming:wheat", "farming:wheat"},
|
||||
{"farming:wheat", "farming:wheat", "farming:wheat"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:wheat 3",
|
||||
recipe = {
|
||||
{"farming:straw"},
|
||||
}
|
||||
})
|
||||
|
||||
-- flour
|
||||
|
||||
minetest.register_craftitem("farming:flour", {
|
||||
|
Loading…
Reference in New Issue
Block a user