forked from thunderdog1138/star_wars
Update 'mods/ethereal/plantlife.lua'
This commit is contained in:
parent
51af3884c1
commit
f9d94eeb79
|
@ -30,50 +30,14 @@ minetest.register_craft({
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Fern (boston)
|
|
||||||
minetest.register_node("ethereal:fern", {
|
|
||||||
description = S("Fern"),
|
|
||||||
drawtype = "plantlike",
|
|
||||||
visual_scale = 1.4,
|
|
||||||
tiles = {"fern.png"},
|
|
||||||
inventory_image = "fern.png",
|
|
||||||
wield_image = "fern.png",
|
|
||||||
paramtype = "light",
|
|
||||||
sunlight_propagates = true,
|
|
||||||
waving = 1,
|
|
||||||
walkable = false,
|
|
||||||
buildable_to = true,
|
|
||||||
drop = {
|
|
||||||
max_items = 1,
|
|
||||||
items = {
|
|
||||||
{items = {"ethereal:fern_tubers"}, rarity = 6},
|
|
||||||
{items = {"ethereal:fern"}}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
groups = {snappy = 3, flora = 1, attached_node = 1, flammable = 2},
|
|
||||||
sounds = default.node_sound_leaves_defaults(),
|
|
||||||
selection_box = {
|
|
||||||
type = "fixed",
|
|
||||||
fixed = {-5 / 16, -0.5, -5 / 16, 5 / 16, 0.67, 5 / 16},
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
-- Boston Ferns sometimes drop edible Tubers (heals 1/2 heart when eaten)
|
|
||||||
minetest.register_craftitem("ethereal:fern_tubers", {
|
|
||||||
description = S("Fern Tubers"),
|
|
||||||
inventory_image = "fern_tubers.png",
|
|
||||||
groups = {food_tuber = 1, flammable = 2},
|
|
||||||
on_use = minetest.item_eat(1),
|
|
||||||
})
|
|
||||||
|
|
||||||
-- Grey Shrub (not Flammable - too cold to burn)
|
-- Grey Shrub (not Flammable - too cold to burn)
|
||||||
minetest.register_node("ethereal:snowygrass", {
|
minetest.register_node("ethereal:snowygrass", {
|
||||||
description = S("Snowy Grass"),
|
description = S("Snowy Grass"),
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
visual_scale = 0.9,
|
visual_scale = 0.9,
|
||||||
tiles = {"ethereal_snowygrass.png"},
|
tiles = {"snowygrass.png"},
|
||||||
inventory_image = "ethereal_snowygrass.png",
|
inventory_image = "snowygrass.png",
|
||||||
wield_image = "ethereal_snowygrass.png",
|
wield_image = "snowygrass.png",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
waving = 1,
|
waving = 1,
|
||||||
|
|
Loading…
Reference in New Issue