diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2015-12-09 22:33:33 +0000 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2015-12-09 22:33:33 +0000 |
commit | 0ec560b31a69f70a59256efb99158e47cb03b6a4 (patch) | |
tree | b05799875bdb323eaefe1c3e518afa441934a8d5 | |
parent | 56c6f0aef230730a96aa1b2cca7d1d93f1794f8b (diff) |
Added fire dust
-rw-r--r-- | plantlife.lua | 13 | ||||
-rw-r--r-- | plantpack.lua | 4 | ||||
-rw-r--r-- | textures/fire_dust.png | bin | 0 -> 161 bytes |
3 files changed, 15 insertions, 2 deletions
diff --git a/plantlife.lua b/plantlife.lua index 16178f9..dae2fcc 100644 --- a/plantlife.lua +++ b/plantlife.lua @@ -26,6 +26,19 @@ minetest.register_node("ethereal:fire_flower", { end, }) +-- Fire Dust +minetest.register_craftitem("ethereal:fire_dust", { + description = "Fire Dust", + inventory_image = "fire_dust.png", +}) + +minetest.register_craft({ + output = "ethereal:fire_dust 2", + recipe = { + {'ethereal:fire_flower'}, + } +}) + -- Fern (boston) minetest.register_node("ethereal:fern", { description = "Fern", diff --git a/plantpack.lua b/plantpack.lua index d2c3e04..6956de4 100644 --- a/plantpack.lua +++ b/plantpack.lua @@ -147,7 +147,7 @@ minetest.register_decoration({ place_on = {"default:sand", "default:green_dirt"}, sidelen = 16, fill_ratio = 0.015, - biomes = {"sandclay", "lake", "grassy", "grassytwo", "jumble"}, + biomes = {"sandclay", "grassy_ocean", "grassy", "grassytwo", "jumble"}, decoration = { "bakedclay:wetlands_cattails", "bakedclay:wetlands_pickerel", "bakedclay:wetlands_mannagrass", "bakedclay:wetlands_turtle" @@ -171,7 +171,7 @@ minetest.register_decoration({ sidelen = 16, fill_ratio = 0.004, biomes = { - "mushroom", "prairie", "grayness", "plains", "desert", "lake", + "mushroom", "prairie", "grayness", "plains", "desert", "junglee", "grassy", "grassytwo", "jumble", "snowy", "alpine", "fiery", "mesa", "bamboo" }, diff --git a/textures/fire_dust.png b/textures/fire_dust.png Binary files differnew file mode 100644 index 0000000..eb72bb9 --- /dev/null +++ b/textures/fire_dust.png |