maple-cd2025/README.md

40 lines
1.1 KiB
Markdown
Raw Normal View History

2018-04-29 23:21:46 +03:00
# Maple
2018-04-29 23:09:24 +03:00
Maple Tree for Minetest by ExeterDad
2018-04-29 23:14:13 +03:00
2018-04-29 23:21:46 +03:00
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](maple_in_the_wild.jpg)
2018-04-29 23:24:52 +03:00
## Bonemeal
The mod now registers itself with the bonemeal API (optional). Saplings should be recognized automatically, and grow faster with bonemeal.
2018-04-30 23:31:23 +03:00
## 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
2018-05-07 21:28:56 +03:00
```
## Stairs, slabs and doors
2018-05-07 21:28:56 +03:00
Maple tries to register fancy wooden shapes for maple wood with stairs, moreblocks, and doors.
2018-05-13 14:15:29 +03:00
## Drawers
2018-06-06 01:42:00 +03:00
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.