Skip to content

Commit

Permalink
Default: Add biome API tree schematics and enable growing by sapling …
Browse files Browse the repository at this point in the history
…ABMs
  • Loading branch information
paramat committed Jul 20, 2015
1 parent da9789e commit e203302
Show file tree
Hide file tree
Showing 6 changed files with 64 additions and 6 deletions.
Binary file added mods/default/schematics/acacia_tree.mts
Binary file not shown.
Binary file added mods/default/schematics/apple_tree.mts
Binary file not shown.
Binary file added mods/default/schematics/jungle_tree.mts
Binary file not shown.
Binary file added mods/default/schematics/large_cactus.mts
Binary file not shown.
Binary file added mods/default/schematics/pine_tree.mts
Binary file not shown.
70 changes: 64 additions & 6 deletions mods/default/trees.lua
Expand Up @@ -29,8 +29,12 @@ minetest.register_abm({
end

minetest.log("action", "A sapling grows into a tree at "..
minetest.pos_to_string(pos))
default.grow_tree(pos, random(1, 4) == 1)
minetest.pos_to_string(pos))
if minetest.get_mapgen_params().mgname == "v6" then
default.grow_tree(pos, random(1, 4) == 1)
else
default.grow_new_apple_tree(pos)
end
end
})

Expand All @@ -44,8 +48,12 @@ minetest.register_abm({
end

minetest.log("action", "A jungle sapling grows into a tree at "..
minetest.pos_to_string(pos))
default.grow_jungle_tree(pos)
minetest.pos_to_string(pos))
if minetest.get_mapgen_params().mgname == "v6" then
default.grow_jungle_tree(pos)
else
default.grow_new_jungle_tree(pos)
end
end
})

Expand All @@ -59,8 +67,27 @@ minetest.register_abm({
end

minetest.log("action", "A pine sapling grows into a tree at "..
minetest.pos_to_string(pos))
default.grow_pine_tree(pos)
minetest.pos_to_string(pos))
if minetest.get_mapgen_params().mgname == "v6" then
default.grow_pine_tree(pos)
else
default.grow_new_pine_tree(pos)
end
end
})

minetest.register_abm({
nodenames = {"default:acacia_sapling"},
interval = 13,
chance = 50,
action = function(pos, node)
if not can_grow(pos) then
return
end

minetest.log("action", "An acacia sapling grows into a tree at "..
minetest.pos_to_string(pos))
default.grow_new_acacia_tree(pos)
end
})

Expand Down Expand Up @@ -346,3 +373,34 @@ function default.grow_pine_tree(pos)
vm:update_map()
end
-- New tree
function default.grow_new_apple_tree(pos)
local path = minetest.get_modpath("default") .. "/schematics/apple_tree.mts"
minetest.place_schematic({x = pos.x - 2, y = pos.y - 1, z = pos.z - 2},
path, 0, nil, false)
end
-- New jungle tree
function default.grow_new_jungle_tree(pos)
local path = minetest.get_modpath("default") .. "/schematics/jungle_tree.mts"
minetest.place_schematic({x = pos.x - 2, y = pos.y - 1, z = pos.z - 2},
path, 0, nil, false)
end
-- New pine tree
function default.grow_new_pine_tree(pos)
local path = minetest.get_modpath("default") .. "/schematics/pine_tree.mts"
minetest.place_schematic({x = pos.x - 2, y = pos.y - 1, z = pos.z - 2},
path, 0, nil, false)
end
-- New acacia tree
function default.grow_new_acacia_tree(pos)
local path = minetest.get_modpath("default") .. "/schematics/acacia_tree.mts"
minetest.place_schematic({x = pos.x - 4, y = pos.y - 1, z = pos.z - 4},
path, random, nil, false)
end

0 comments on commit e203302

Please sign in to comment.