Add logs, credit sofar

This commit is contained in:
paramat 2016-12-09 06:16:27 +00:00
parent a01d3997cb
commit 8f16d80de4
3 changed files with 85 additions and 2 deletions

View File

@ -1,4 +1,4 @@
saveschems 0.2.1 by paramat
saveschems 0.2.2 by paramat and sofar
For Minetest 0.4.13 and later
Depends default flowers
Licenses: Code MIT. Schematics CC BY-SA 3.0

View File

@ -1025,7 +1025,7 @@ mts_save("bush", {
},
})
-- Acaica bush
-- Acacia bush
local L = {name = "default:acacia_bush_leaves", prob = 255}
local M = {name = "default:acacia_bush_leaves", prob = 191}
@ -1048,3 +1048,85 @@ mts_save("acacia_bush", {
N, M, N,
},
})
-- Apple tree log
mts_save("apple_log", {
size = {x = 3, y = 3, z = 1},
data = {
{name = "air", prob = 0},
{name = "air", prob = 0},
{name = "air", prob = 0},
{name = "default:tree", param2 = 12, prob = 191},
{name = "default:tree", param2 = 12},
{name = "default:tree", param2 = 12, prob = 127},
{name = "air", prob = 0},
{name = "flowers:mushroom_brown", prob = 63},
{name = "air", prob = 0},
},
})
-- Jungletree log
mts_save("jungle_log", {
size = {x = 3, y = 3, z = 1},
data = {
{name = "air", prob = 0},
{name = "air", prob = 0},
{name = "air", prob = 0},
{name = "default:jungletree", param2 = 12, prob = 191},
{name = "default:jungletree", param2 = 12},
{name = "default:jungletree", param2 = 12, prob = 127},
{name = "air", prob = 0},
{name = "flowers:mushroom_brown", prob = 127},
{name = "air", prob = 0},
},
})
-- Pine tree log
mts_save("pine_log", {
size = {x = 3, y = 3, z = 1},
data = {
{name = "air", prob = 0},
{name = "air", prob = 0},
{name = "air", prob = 0},
{name = "default:pine_tree", param2 = 12, prob = 191},
{name = "default:pine_tree", param2 = 12},
{name = "default:pine_tree", param2 = 12, prob = 127},
{name = "air", prob = 0},
{name = "flowers:mushroom_red", prob = 63},
{name = "air", prob = 0},
},
})
-- Acacia tree log
mts_save("acacia_log", {
size = {x = 3, y = 2, z = 1},
data = {
{name = "air", prob = 0},
{name = "air", prob = 0},
{name = "air", prob = 0},
{name = "default:acacia_tree", param2 = 12, prob = 191},
{name = "default:acacia_tree", param2 = 12},
{name = "default:acacia_tree", param2 = 12, prob = 127},
},
})
-- Aspen tree log
mts_save("aspen_log", {
size = {x = 3, y = 3, z = 1},
data = {
{name = "air", prob = 0},
{name = "air", prob = 0},
{name = "air", prob = 0},
{name = "default:aspen_tree", param2 = 12},
{name = "default:aspen_tree", param2 = 12},
{name = "default:aspen_tree", param2 = 12, prob = 127},
{name = "flowers:mushroom_red", prob = 63},
{name = "flowers:mushroom_brown", prob = 63},
{name = "air", prob = 0},
},
})

View File

@ -30,6 +30,7 @@ Licenses of media (schematics)
Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)
Copyright (C) 2014-2016 paramat
Copyright (C) 2016 sofar <sofar@foo-projects.org>
You are free to:
Share — copy and redistribute the material in any medium or format.