Skip to content
Snippets Groups Projects
Commit 96a45ccc authored by TenPlus1's avatar TenPlus1
Browse files

Removed unused textures and schem files, added new giant shroom sapling texture

parent 7b3deef1
No related branches found
No related tags found
No related merge requests found
--[[
Minetest Ethereal Mod 1.16 (31st August 2015)
Minetest Ethereal Mod 1.16 (30th September 2015)
Created by ChinChow
......
......@@ -31,7 +31,6 @@ ethereal.register_sapling("ethereal:pine_tree", "Pine", "ethereal_pine_tree")
ethereal.register_sapling("ethereal:big_tree", "Big", "ethereal_big_tree")
ethereal.register_sapling("ethereal:banana_tree", "Banana", "banana_tree")
ethereal.register_sapling("ethereal:frost_tree", "Frost", "ethereal_frost_tree")
ethereal.register_sapling("ethereal:gray_tree", "Gray", "ethereal_gray_tree")
ethereal.register_sapling("ethereal:mushroom", "Mushroom", "ethereal_mushroom")
ethereal.register_sapling("ethereal:palm", "Palm", "moretrees_palm")
ethereal.register_sapling("ethereal:redwood", "Redwood", "redwood")
......@@ -88,10 +87,6 @@ ethereal.grow_sapling = function (pos, node)
and under == "ethereal:crystal_dirt" then
ethereal.add_tree(pos, 4, 4, path .. "frosttrees.mts")
elseif node.name == "ethereal:gray_tree_sapling"
and under == "ethereal:gray_dirt" then
ethereal.add_tree(pos, 2, 2, path .. "graytrees.mts")
elseif node.name == "ethereal:mushroom_sapling"
and under == "ethereal:mushroom_dirt" then
ethereal.add_tree(pos, 4, 4, path .. "mushroomone.mts")
......@@ -130,4 +125,19 @@ minetest.register_abm({
action = function(pos, node)
ethereal.grow_sapling(pos, node)
end,
})
\ No newline at end of file
})
minetest.register_craftitem("ethereal:tree_tool", {
description = "Tree Tool",
inventory_image = "default_stick.png",
on_use = function(itemstack, user, pointed_thing)
if not pointed_thing
or pointed_thing.type ~= "node" then
return
end
local pos = pointed_thing.under
local nod = minetest.get_node_or_nil(pos)
if not nod then return end
ethereal.grow_sapling(pos, nod)
end,
})
File deleted
textures/bamboo_OLD.png

328 B

textures/ethereal_mushroom_garden_1.png

199 B

textures/ethereal_mushroom_garden_2.png

210 B

textures/ethereal_mushroom_garden_3.png

246 B

textures/ethereal_mushroom_garden_4.png

277 B

textures/ethereal_mushroom_sapling.png

238 B | W: | H:

textures/ethereal_mushroom_sapling.png

254 B | W: | H:

textures/ethereal_mushroom_sapling.png
textures/ethereal_mushroom_sapling.png
textures/ethereal_mushroom_sapling.png
textures/ethereal_mushroom_sapling.png
  • 2-up
  • Swipe
  • Onion skin
textures/hearty_stew_cooked.png

345 B

textures/mushroom.png

243 B

textures/mushroom_soup_cooked.png

341 B

textures/mushroom_spores.png

391 B

textures/red_leaves.png

300 B

textures/scarlet_leaves.png

300 B

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment