Aspen trees.
authorAuke Kok <sofar@foo-projects.org>
Tue, 5 Jan 2016 01:56:20 +0000 (17:56 -0800)
committerparamat <mat.gregory@virginmedia.com>
Fri, 15 Jan 2016 04:56:15 +0000 (04:56 +0000)
commit6267f26027350f0b80d091044ddfc1177aa6fa47
tree0bd376ef93f3c4d96f0d3628353b2268d6d7579b
parent535e611eb1f40e0b7010870a06f66fb99cd0d239
Aspen trees.

Adds a birch-like tree to the default_game. Aspen was chosen on
purpose instead of birch, as several birch tree mods already exist
and choosing a different name avoids any conflicts.

Schematics were made for both normal and sapling version, assuring
saplings will not be able to grief. The shape of the Aspen is "fanning
out at the top" and provides an easy tree to walk under, but still a
somewhat thick cover. The Aspen trunk is 4 to 6 blocks tall, with up
to three layers of leaves on top, making it slightly taller than an
Apple tree, but shorter than a Pine tree, which provides a good blend.

Textures were painted from scratch, except tree_top and _wood
variants, which are color modified versions of the pine_wood
variants. Appropriate licenses have been chosen for the new textures.

The leaf texture is light enough to contrast other trees, but dark
enough to offset against our light default grass color. The leaves
are drawn in the typical minetest default fashion with plenty of
transparancy, but enough definition to suggest that you're seeing
something that looks like leaves. The placement of leaves in the
schematic also suggests the top of the tree is sparse and you can
see the sky through the leaves.

Sapling texture is both traditional and different, with lush green
leaves and a well-defined stem, but slightly stick-like and skinny,
as these plants tend to grow up first, then out.

Add fallen Aspen logs. We make these logs a minimum of 2 blocks long,
and up to 3. This allows us to make these logs a place where both
red and brown mushrooms can be found, to these may be attractive to
players. However, the spawn rate for these has been reduced a lot
compared to the other logs, to account for the scarcity of Aspen.

Add stairs, slabs for these wood types as well.

Mapgen will place these trees in deciduous forests only, but in
a way that the biome is a range between entirely Apple trees, and
mostly entirely Aspen trees, with a bias to Apple trees. To make
fallen logs somewhat correlated with trees, we modify the planting
of Apple trees and logs to use perlin noise and not fill ratio,
otherwise you'd always end up with Apple logs in Aspen tree areas,
which would be suspicious. There still is a bit of a mix.
13 files changed:
mods/default/README.txt
mods/default/crafting.lua
mods/default/mapgen.lua
mods/default/nodes.lua
mods/default/schematics/aspen_tree.mts [new file with mode: 0644]
mods/default/schematics/aspen_tree_from_sapling.mts [new file with mode: 0644]
mods/default/textures/default_aspen_leaves.png [new file with mode: 0644]
mods/default/textures/default_aspen_sapling.png [new file with mode: 0644]
mods/default/textures/default_aspen_tree.png [new file with mode: 0644]
mods/default/textures/default_aspen_tree_top.png [new file with mode: 0644]
mods/default/textures/default_aspen_wood.png [new file with mode: 0644]
mods/default/trees.lua
mods/stairs/init.lua