Sin descripción

Olivier Dragon 033bdcad85 Add maple wood fence gate hace 4 años
locale 033bdcad85 Add maple wood fence gate hace 4 años
schematics fe0984b698 initial commit hace 6 años
textures fdab1a0b04 support for drawers mod hace 6 años
.gitattributes 97f5287853 Add .git* filetypes as text hace 4 años
LICENSE 1829c7a00d Create LICENSE hace 6 años
README.md 551377a09d Change image path from absolute to relative hace 4 años
crafts.lua 033bdcad85 Add maple wood fence gate hace 4 años
decorations.lua 3171f0f944 Add missing local translator S() hace 4 años
depends.txt bdc5222f58 +pkarcs hace 6 años
init.lua 87f46a2d70 Split init into different modules hace 4 años
intermod.lua 3171f0f944 Add missing local translator S() hace 4 años
maple_in_the_wild.jpg ef84f3c0dd readme hace 6 años
mod.conf 515a667d24 Adding mod.conf hace 4 años
nodes.lua 70038b6940 Increase rarity of sampling hace 4 años
trees.lua 87f46a2d70 Split init into different modules hace 4 años
update_translation.pl 44d4068511 Fix translation script hace 4 años

README.md

Maple

Maple Tree for Minetest by ExeterDad

This mod adds a maple tree to the minetest game. Originally written for the Hometown server (http://hometownserver.com/) by ExeterDad (https://forum.minetest.net/memberlist.php?mode=viewprofile&u=10544).

The tree

Maple Tree

Bonemeal

The mod now registers itself with the bonemeal API, and saplings should be recognized automatically.

If you are using the bonemeal mod, you can add this to mods.lua to enable maple support:

if minetest.get_modpath("maple") then
	bonemeal:add_sapling({
		{"maple:maple_sapling", maple.grow_sapling, "soil"},
	})
end

Technic chainsaw

Add this to technic/technic/tools/chainsaw.lua to enable support for maple trees for the chainsaw tool:

-- Support maple
if minetest.get_modpath("maple") then
	timber_nodenames["maple:maple_tree"]         = true
	if chainsaw_leaves then
		timber_nodenames["maple:maple_leaves"] = true
	end
end

Stairs and slabs

Maple tries to register fancy wooden shapes for maple wood with stairs or moreblocks.

Drawers

If storage drawers mod is available, maple registers the corresponding assortment of drawers.

Arcs

If pkarcs (simple arcs) mod is found, maple arcs are registered.