VoxeLibre/mods/ITEMS/mcl_farming/mushrooms.lua

49 lines
1.5 KiB
Lua
Raw Normal View History

2017-01-31 12:35:59 +01:00
minetest.register_node("mcl_farming:mushroom_brown", {
2015-06-29 19:55:56 +02:00
description = "Brown Mushroom",
drawtype = "plantlike",
tiles = { "farming_mushroom_brown.png" },
inventory_image = "farming_mushroom_brown.png",
wield_image = "farming_mushroom_brown.png",
sunlight_propagates = true,
paramtype = "light",
walkable = false,
2017-02-01 13:44:36 +01:00
groups = {dig_immediate=3,mushroom=1,attached_node=1,dig_by_water=1,deco_block=1},
sounds = mcl_sounds.node_sound_leaves_defaults(),
2017-01-04 10:11:35 +01:00
light_source = 1,
2015-06-29 19:55:56 +02:00
selection_box = {
type = "fixed",
fixed = { -0.15, -0.5, -0.15, 0.15, 0.015, 0.15 },
},
})
2017-01-31 12:35:59 +01:00
minetest.register_node("mcl_farming:mushroom_red", {
2015-06-29 19:55:56 +02:00
description = "Red Mushroom",
drawtype = "plantlike",
tiles = { "farming_mushroom_red.png" },
inventory_image = "farming_mushroom_red.png",
wield_image = "farming_mushroom_red.png",
sunlight_propagates = true,
paramtype = "light",
walkable = false,
2017-02-01 13:44:36 +01:00
groups = {dig_immediate=3,mushroom=1,attached_node=1,dig_by_water=1,deco_block=1},
sounds = mcl_sounds.node_sound_leaves_defaults(),
2015-06-29 19:55:56 +02:00
selection_box = {
type = "fixed",
fixed = { -0.15, -0.5, -0.15, 0.15, 0.015, 0.15 },
},
})
2017-01-31 12:35:59 +01:00
minetest.register_craftitem("mcl_farming:mushroom_stew", {
2015-06-29 19:55:56 +02:00
description = "Mushroom Stew",
2017-01-20 18:38:12 +01:00
inventory_image = "farming_mushroom_stew.png",
2017-01-31 23:32:56 +01:00
on_use = minetest.item_eat(6, "mcl_core:bowl"),
2017-02-16 15:08:26 +01:00
groups = { food = 3, eatable = 6 },
2017-01-16 23:34:40 +01:00
stack_max = 1,
2015-06-29 19:55:56 +02:00
})
minetest.register_craft({
type = "shapeless",
2017-01-31 12:35:59 +01:00
output = "mcl_farming:mushroom_stew",
2017-01-31 23:32:56 +01:00
recipe = {'mcl_core:bowl', 'mcl_farming:mushroom_brown', 'mcl_farming:mushroom_red'}
2017-01-04 10:11:35 +01:00
})