Added fire flower to fiery biome
This commit is contained in:
parent
922b782dc9
commit
11d2399a62
@ -758,7 +758,17 @@ minetest.register_decoration({
|
||||
sidelen = 80,
|
||||
fill_ratio = 0.20,
|
||||
biomes = {"fiery"},
|
||||
decoration = "ethereal:dry_shrub",
|
||||
decoration = {"ethereal:dry_shrub"},
|
||||
})
|
||||
|
||||
-- fire flower
|
||||
minetest.register_decoration({
|
||||
deco_type = "simple",
|
||||
place_on = "ethereal:fiery_dirt",
|
||||
sidelen = 80,
|
||||
fill_ratio = 0.02,
|
||||
biomes = {"fiery"},
|
||||
decoration = {"ethereal:fire_flower"},
|
||||
})
|
||||
|
||||
-- snowy grass
|
||||
|
@ -1,3 +1,31 @@
|
||||
-- Fire Flower
|
||||
minetest.register_node("ethereal:fire_flower", {
|
||||
description = "Fire Flower",
|
||||
drawtype = "plantlike",
|
||||
tiles = { "ethereal_fire_flower.png" },
|
||||
inventory_image = "ethereal_fire_flower.png",
|
||||
wield_image = "ethereal_fire_flower.png",
|
||||
paramtype = "light",
|
||||
light_source = 5,
|
||||
sunlight_propagates = true,
|
||||
walkable = false,
|
||||
damage_per_second = 2,
|
||||
groups = {snappy = 1, oddly_breakable_by_hand = 3, igniter = 2},
|
||||
sounds = default.node_sound_leaves_defaults(),
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5},
|
||||
},
|
||||
on_punch = function(pos, node, puncher)
|
||||
--local item = puncher:get_wielded_item()
|
||||
--local itemname = item:get_name()
|
||||
puncher:punch(puncher, 1.0, {
|
||||
full_punch_interval = 1.0,
|
||||
damage_groups = {fleshy = 2}
|
||||
}, nil)
|
||||
end,
|
||||
})
|
||||
|
||||
-- Fern (boston)
|
||||
minetest.register_node("ethereal:fern", {
|
||||
description = "Fern",
|
||||
|
BIN
textures/ethereal_fire_flower.png
Normal file
BIN
textures/ethereal_fire_flower.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 235 B |
Loading…
x
Reference in New Issue
Block a user