Tree commit
This commit is contained in:
parent
c882f0e6d9
commit
e9bd695fb2
@ -1,75 +0,0 @@
|
||||
minetest.register_node(":default:leaves", {
|
||||
description = "Leaves",
|
||||
drawtype = "allfaces_optional",
|
||||
visual_scale = 1.3,
|
||||
tiles = {"default_leaves.png"},
|
||||
paramtype = "light",
|
||||
groups = {snappy=3, leafdecay=3, flammable=2},
|
||||
drop = {
|
||||
max_items = 1,
|
||||
items = {
|
||||
{
|
||||
items = {'default:sapling'},
|
||||
rarity = 15,
|
||||
},
|
||||
{
|
||||
items = {'default:stick'},
|
||||
rarity = 3,
|
||||
},
|
||||
{
|
||||
items = {'default:leaves'},
|
||||
}
|
||||
}
|
||||
},
|
||||
climbable = true,
|
||||
sounds = default.node_sound_leaves_defaults(),
|
||||
walkable = false,
|
||||
})
|
||||
|
||||
GROUND_LIST={
|
||||
'default:dirt',
|
||||
'default:dirt_with_grass',
|
||||
}
|
||||
|
||||
local table_containts = function(t, v)
|
||||
for _, i in ipairs(t) do
|
||||
if i==v then
|
||||
return true
|
||||
end
|
||||
end
|
||||
return false
|
||||
end
|
||||
|
||||
minetest.register_abm({
|
||||
nodenames = {'default:tree'},
|
||||
interval = 1.0,
|
||||
chance = 1.0,
|
||||
action = function(pos, node, active_object_count, active_object_count_wider)
|
||||
if table_containts(GROUND_LIST, minetest.env:get_node({x = pos.x, y = pos.y-1, z = pos.z}).name) then return end
|
||||
for i = -1, 1 do
|
||||
for k = -1, 1 do
|
||||
if minetest.env:get_node({x = pos.x+i, y = pos.y-1, z = pos.z+k}).name == 'default:tree' then return end
|
||||
end
|
||||
end
|
||||
minetest.env:add_item(pos, "default:tree")
|
||||
minetest.env:add_node(pos, {name="air"})
|
||||
end,
|
||||
})
|
||||
|
||||
minetest.register_abm({
|
||||
nodenames = {'default:tree'},
|
||||
interval = 3600000,
|
||||
chance = 0.1,
|
||||
action = function(pos, node, active_object_count, active_object_count_wider)
|
||||
for i=0, 3 do
|
||||
for j=0,3 do
|
||||
for k=0,3 do
|
||||
if minetest.env:get_node({x=pos.x+i-1, y=pos.y+j-1, z=pos.z+k-1}).name == "air" then
|
||||
minetest.env:add_node({x=pos.x+i-1, y=pos.y+j-1, z=pos.z+k-1}, {name="default:apple"})
|
||||
return
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end,
|
||||
})
|
1285
mods/trees/init (2).lua
Normal file
1285
mods/trees/init (2).lua
Normal file
File diff suppressed because it is too large
Load Diff
220
mods/trees/init.lua
Normal file
220
mods/trees/init.lua
Normal file
@ -0,0 +1,220 @@
|
||||
GROUND_LIST={
|
||||
'default:dirt',
|
||||
'default:dirt_with_grass',
|
||||
}
|
||||
|
||||
local table_containts = function(t, v)
|
||||
for _, i in ipairs(t) do
|
||||
if i==v then
|
||||
return true
|
||||
end
|
||||
end
|
||||
return false
|
||||
end
|
||||
|
||||
minetest.register_abm({
|
||||
nodenames = {'default:tree','default:leaves'},
|
||||
interval = 1.0,
|
||||
chance = 1.0,
|
||||
action = function(pos, node, active_object_count, active_object_count_wider)
|
||||
minetest.env:add_node(pos, {name="air"})
|
||||
end,
|
||||
})
|
||||
|
||||
minetest.register_abm({
|
||||
nodenames = {'trees:mapple_trunk'},
|
||||
interval = 1.0,
|
||||
chance = 1.0,
|
||||
action = function(pos, node, active_object_count, active_object_count_wider)
|
||||
if table_containts(GROUND_LIST, minetest.env:get_node({x = pos.x, y = pos.y-1, z = pos.z}).name) then return end
|
||||
for i = -1, 1 do
|
||||
for k = -1, 1 do
|
||||
if minetest.env:get_node({x = pos.x+i, y = pos.y-1, z = pos.z+k}).name == 'trees:mapple_trunk' then return end
|
||||
end
|
||||
end
|
||||
minetest.env:add_item(pos, "trees:mapple_trunk")
|
||||
minetest.env:add_node(pos, {name="air"})
|
||||
end,
|
||||
})
|
||||
|
||||
TREES_LIST={
|
||||
"mapple",
|
||||
}
|
||||
|
||||
for i=1,#TREES_LIST do
|
||||
minetest.register_node("trees:"..TREES_LIST[i].."_trunk", {
|
||||
description = "Log of "..TREES_LIST[i],
|
||||
tiles = {"trees_"..TREES_LIST[i].."_trunk_top.png", "trees_"..TREES_LIST[i].."_trunk_top.png", "trees_"..TREES_LIST[i].."_trunk.png"},
|
||||
is_ground_content = true,
|
||||
groups = {tree=1,snappy=1,choppy=2,flammable=2},
|
||||
sounds = default.node_sound_wood_defaults(),
|
||||
drawtype = "nodebox",
|
||||
paramtype = "light",
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = {
|
||||
{-0.4,-0.5,-0.4,0.4,0.5,0.4},
|
||||
},
|
||||
},
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = {
|
||||
{-0.4,-0.5,-0.4,0.4,0.5,0.4},
|
||||
},
|
||||
},
|
||||
climbable = true,
|
||||
})
|
||||
|
||||
minetest.register_node("trees:"..TREES_LIST[i].."_leaves", {
|
||||
description = "Leaves of "..TREES_LIST[i],
|
||||
drawtype = "allfaces_optional",
|
||||
visual_scale = 1.3,
|
||||
tiles = {"trees_"..TREES_LIST[i].."_leaves.png"},
|
||||
paramtype = "light",
|
||||
groups = {snappy=3, leafdecay=3, flammable=2},
|
||||
drop = {
|
||||
max_items = 1,
|
||||
items = {
|
||||
{
|
||||
items = {'trees:trees_'..TREES_LIST[i]..'_sapling'},
|
||||
rarity = 20,
|
||||
},
|
||||
{
|
||||
items = {"trees:"..TREES_LIST[i].."_leaves"},
|
||||
}
|
||||
}
|
||||
},
|
||||
sounds = default.node_sound_leaves_defaults(),
|
||||
walkable = false,
|
||||
climbable = true,
|
||||
})
|
||||
|
||||
minetest.register_node("trees:"..TREES_LIST[i].."_wood", {
|
||||
description = "Wooden Planks of "..TREES_LIST[i],
|
||||
tiles = {"trees_"..TREES_LIST[i].."_wood.png"},
|
||||
is_ground_content = true,
|
||||
groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3},
|
||||
sounds = default.node_sound_wood_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_craftitem("trees:"..TREES_LIST[i].."_stick", {
|
||||
description = "Stick of "..TREES_LIST[i],
|
||||
inventory_image = "trees_"..TREES_LIST[i].."_stick.png",
|
||||
on_use = function(itemstack, user, pointed_thing)
|
||||
if pointed_thing.type ~= "node" then
|
||||
return
|
||||
end
|
||||
local pos = pointed_thing.under
|
||||
gen_mapple(pos)
|
||||
|
||||
end,
|
||||
})
|
||||
end
|
||||
|
||||
function gen_mapple(ipos)
|
||||
local pos = ipos
|
||||
local height = 7 + math.random(5)
|
||||
for i=1,height do
|
||||
if minetest.env:get_node({x=pos.x, y=pos.y+i, z=pos.z}).name == "air" then
|
||||
minetest.env:set_node({x=pos.x, y=pos.y+i, z=pos.z}, {name="trees:mapple_trunk"})
|
||||
end
|
||||
end
|
||||
-----------------------------------------------------------------------------------------------
|
||||
minetest.env:set_node({x=pos.x, y=pos.y+height+1, z=pos.z}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x-1, y=pos.y+height+1, z=pos.z}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x+1, y=pos.y+height+1, z=pos.z}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x, y=pos.y+height+1, z=pos.z-1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x, y=pos.y+height+1, z=pos.z+1}, {name="trees:mapple_leaves"})
|
||||
-----------------------------------------------------------------------------------------------
|
||||
minetest.env:set_node({x=pos.x-1, y=pos.y+height, z=pos.z}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x+1, y=pos.y+height, z=pos.z}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x, y=pos.y+height, z=pos.z-1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x, y=pos.y+height, z=pos.z+1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x-1, y=pos.y+height, z=pos.z-1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x+1, y=pos.y+height, z=pos.z-1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x-1, y=pos.y+height, z=pos.z+1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x+1, y=pos.y+height, z=pos.z+1}, {name="trees:mapple_leaves"})
|
||||
-----------------------------------------------------------------------------------------------
|
||||
minetest.env:set_node({x=pos.x-1, y=pos.y+height-1, z=pos.z}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x+1, y=pos.y+height-1, z=pos.z}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x, y=pos.y+height-1, z=pos.z-1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x, y=pos.y+height-1, z=pos.z+1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x-1, y=pos.y+height-1, z=pos.z-1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x+1, y=pos.y+height-1, z=pos.z-1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x-1, y=pos.y+height-1, z=pos.z+1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x+1, y=pos.y+height-1, z=pos.z+1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x-2, y=pos.y+height-1, z=pos.z-1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x-2, y=pos.y+height-1, z=pos.z}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x-2, y=pos.y+height-1, z=pos.z+1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x+2, y=pos.y+height-1, z=pos.z-1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x+2, y=pos.y+height-1, z=pos.z}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x+2, y=pos.y+height-1, z=pos.z+1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x+1, y=pos.y+height-1, z=pos.z-2}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x, y=pos.y+height-1, z=pos.z-2}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x-1, y=pos.y+height-1, z=pos.z-2}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x+1, y=pos.y+height-1, z=pos.z+2}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x, y=pos.y+height-1, z=pos.z+2}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x-1, y=pos.y+height-1, z=pos.z+2}, {name="trees:mapple_leaves"})
|
||||
-----------------------------------------------------------------------------------------------
|
||||
minetest.env:set_node({x=pos.x-1, y=pos.y+height-2, z=pos.z}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x+1, y=pos.y+height-2, z=pos.z}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x, y=pos.y+height-2, z=pos.z-1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x, y=pos.y+height-2, z=pos.z+1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x-1, y=pos.y+height-2, z=pos.z-1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x+1, y=pos.y+height-2, z=pos.z-1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x-1, y=pos.y+height-2, z=pos.z+1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x+1, y=pos.y+height-2, z=pos.z+1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x-2, y=pos.y+height-2, z=pos.z-1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x-2, y=pos.y+height-2, z=pos.z}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x-2, y=pos.y+height-2, z=pos.z+1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x+2, y=pos.y+height-2, z=pos.z-1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x+2, y=pos.y+height-2, z=pos.z}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x+2, y=pos.y+height-2, z=pos.z+1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x+1, y=pos.y+height-2, z=pos.z-2}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x, y=pos.y+height-2, z=pos.z-2}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x-1, y=pos.y+height-2, z=pos.z-2}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x+1, y=pos.y+height-2, z=pos.z+2}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x, y=pos.y+height-2, z=pos.z+2}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x-1, y=pos.y+height-2, z=pos.z+2}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x-2, y=pos.y+height-2, z=pos.z-2}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x+2, y=pos.y+height-2, z=pos.z+2}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x-2, y=pos.y+height-2, z=pos.z+2}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x+2, y=pos.y+height-2, z=pos.z-2}, {name="trees:mapple_leaves"})
|
||||
-----------------------------------------------------------------------------------------------
|
||||
minetest.env:set_node({x=pos.x-1, y=pos.y+height-3, z=pos.z+1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x-1, y=pos.y+height-3, z=pos.z}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x-1, y=pos.y+height-3, z=pos.z-1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x+1, y=pos.y+height-3, z=pos.z+1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x+1, y=pos.y+height-3, z=pos.z}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x+1, y=pos.y+height-3, z=pos.z-1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x, y=pos.y+height-3, z=pos.z+1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x, y=pos.y+height-3, z=pos.z-1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x-2, y=pos.y+height-3, z=pos.z}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x+2, y=pos.y+height-3, z=pos.z}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x, y=pos.y+height-3, z=pos.z+2}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x, y=pos.y+height-3, z=pos.z-2}, {name="trees:mapple_leaves"})
|
||||
-----------------------------------------------------------------------------------------------
|
||||
minetest.env:set_node({x=pos.x-1, y=pos.y+height-4, z=pos.z}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x+1, y=pos.y+height-4, z=pos.z}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x, y=pos.y+height-4, z=pos.z+1}, {name="trees:mapple_leaves"})
|
||||
minetest.env:set_node({x=pos.x, y=pos.y+height-4, z=pos.z-1}, {name="trees:mapple_leaves"})
|
||||
end
|
||||
|
||||
local function generate_ore(minp, maxp, trees_per_volume, height_min, height_max)
|
||||
if maxp.y < height_min or minp.y > height_max then
|
||||
return
|
||||
end
|
||||
for j=minp.y, maxp.y do
|
||||
for i=1,trees_per_volume do
|
||||
local pos = {x=minp.x+math.random(15), y=minp.y+j, z=minp.z+math.random(15)}
|
||||
if minetest.env:get_node(pos).name == "default:dirt_with_grass" then
|
||||
gen_mapple(pos)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
minetest.register_on_generated(
|
||||
function(minp, maxp, seed)
|
||||
if math.random(2) == 1 then generate_ore(minp, maxp, 10, -100, 31000) end
|
||||
end)
|
BIN
mods/trees/textures/trees_mapple_leaves.png
Normal file
BIN
mods/trees/textures/trees_mapple_leaves.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 451 B |
BIN
mods/trees/textures/trees_mapple_stick.png
Normal file
BIN
mods/trees/textures/trees_mapple_stick.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 182 B |
BIN
mods/trees/textures/trees_mapple_trunk.png
Normal file
BIN
mods/trees/textures/trees_mapple_trunk.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 706 B |
BIN
mods/trees/textures/trees_mapple_trunk_top.png
Normal file
BIN
mods/trees/textures/trees_mapple_trunk_top.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 843 B |
BIN
mods/trees/textures/trees_mapple_wood.png
Normal file
BIN
mods/trees/textures/trees_mapple_wood.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 387 B |
Loading…
x
Reference in New Issue
Block a user