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

master
TenPlus1 2015-10-01 19:01:07 +01:00
parent 7b3deef14a
commit 96a45ccc66
15 changed files with 17 additions and 7 deletions

View File

@ -1,6 +1,6 @@
--[[
Minetest Ethereal Mod 1.16 (31st August 2015)
Minetest Ethereal Mod 1.16 (30th September 2015)
Created by ChinChow

View File

@ -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,
})
})
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,
})

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 328 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 199 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 210 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 246 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 277 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 238 B

After

Width:  |  Height:  |  Size: 254 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 345 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 243 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 341 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 391 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 300 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 300 B