From 9ae811465ea37703f9ee85dfd97f7082190e60ea Mon Sep 17 00:00:00 2001 From: TenPlus1 Date: Sun, 2 Sep 2018 21:38:46 +0100 Subject: tweak fiery biome decoration --- plantlife.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plantlife.lua') diff --git a/plantlife.lua b/plantlife.lua index 31846e3..887d1bc 100644 --- a/plantlife.lua +++ b/plantlife.lua @@ -162,7 +162,7 @@ minetest.register_node("ethereal:dry_shrub", { waving = 1, walkable = false, buildable_to = true, - groups = {snappy = 3, flora = 1, attached_node = 1, flammable = 2}, + groups = {snappy = 3, flora = 1, attached_node = 1}, sounds = default.node_sound_leaves_defaults(), selection_box = { type = "fixed", -- cgit v1.2.3 From 0ea9f423ca076f42d82059be3f5e4d9ad23ce30b Mon Sep 17 00:00:00 2001 From: TenPlus1 Date: Mon, 3 Sep 2018 20:43:00 +0100 Subject: redo schems, add firethorn and igloo, tweak mapgen --- plantlife.lua | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'plantlife.lua') diff --git a/plantlife.lua b/plantlife.lua index 887d1bc..2c677ce 100644 --- a/plantlife.lua +++ b/plantlife.lua @@ -1,6 +1,26 @@ local S = ethereal.intllib +-- Firethorn (poisonous when eaten raw, must be crushed and washed in flowing water 1st) +minetest.register_node("ethereal:firethorn", { + description = S("Firethorn Shrub"), + drawtype = "plantlike", + tiles = {"ethereal_firethorn.png"}, + inventory_image = "ethereal_firethorn.png", + wield_image = "ethereal_firethorn.png", + paramtype = "light", + sunlight_propagates = true, + waving = 1, + walkable = false, + buildable_to = true, + groups = {snappy = 3, flora = 1, attached_node = 1}, + sounds = default.node_sound_leaves_defaults(), + selection_box = { + type = "fixed", + fixed = {-5 / 16, -0.5, -5 / 16, 5 / 16, 4 / 16, 5 / 16}, + }, +}) + -- Fire Flower minetest.register_node("ethereal:fire_flower", { description = S("Fire Flower"), -- cgit v1.2.3