forked from mtcontrib/bakedclay
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
04b9577a91
14
flowers.lua
14
flowers.lua
@ -1,6 +1,10 @@
|
||||
|
||||
-- translation support
|
||||
|
||||
local S = minetest.get_translator("bakedclay")
|
||||
|
||||
-- new flowers
|
||||
|
||||
local flowers = {
|
||||
{"delphinium", S("Blue Delphinium"),
|
||||
{-0.15, -0.5, -0.15, 0.15, 0.3, 0.15}, {color_cyan = 1}},
|
||||
@ -15,8 +19,8 @@ local flowers = {
|
||||
{-0.15, -0.5, -0.15, 0.15, 0.2, 0.15}, {color_dark_green = 1}}
|
||||
}
|
||||
|
||||
-- register some new flowers to fill in missing dye colours
|
||||
-- flower registration (borrowed from default game)
|
||||
-- helper function
|
||||
|
||||
local function add_simple_flower(name, desc, box, f_groups)
|
||||
|
||||
f_groups.snappy = 3
|
||||
@ -41,11 +45,14 @@ local function add_simple_flower(name, desc, box, f_groups)
|
||||
})
|
||||
end
|
||||
|
||||
-- register new flowers to fill in missing dye colours
|
||||
|
||||
for _,item in pairs(flowers) do
|
||||
add_simple_flower(unpack(item))
|
||||
end
|
||||
|
||||
-- add new flowers to mapgen
|
||||
|
||||
minetest.register_decoration({
|
||||
deco_type = "simple",
|
||||
place_on = {"default:dirt_with_grass"},
|
||||
@ -118,7 +125,8 @@ minetest.register_decoration({
|
||||
num_spawn_by = 1
|
||||
})
|
||||
|
||||
-- flowerpot mod
|
||||
-- flowerpot mod support
|
||||
|
||||
if minetest.get_modpath("flowerpot") then
|
||||
flowerpot.register_node("bakedclay:delphinium")
|
||||
flowerpot.register_node("bakedclay:thistle")
|
||||
|
5
init.lua
5
init.lua
@ -32,7 +32,6 @@ local stairsplus_mod = minetest.get_modpath("moreblocks")
|
||||
and minetest.global_exists("stairsplus")
|
||||
local stairsplus_compat = minetest.settings:get_bool("stairsplus_clay_compatibility") ~= false
|
||||
|
||||
|
||||
-- scroll through colours
|
||||
|
||||
for _, clay in pairs(clay) do
|
||||
@ -43,7 +42,8 @@ for _, clay in pairs(clay) do
|
||||
description = clay[2] .. " " .. S("Baked Clay"),
|
||||
tiles = {"baked_clay_" .. clay[1] ..".png"},
|
||||
groups = {cracky = 3, bakedclay = 1},
|
||||
sounds = default.node_sound_stone_defaults()
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
is_ground_content = false
|
||||
})
|
||||
|
||||
-- register craft recipe
|
||||
@ -141,6 +141,7 @@ for _, clay in pairs(clay) do
|
||||
paramtype2 = "facedir",
|
||||
groups = {cracky = 3, terracotta = 1},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
is_ground_content = false,
|
||||
on_place = minetest.rotate_node
|
||||
})
|
||||
|
||||
|
101
lucky_block.lua
101
lucky_block.lua
@ -1,64 +1,65 @@
|
||||
|
||||
-- helpers
|
||||
|
||||
local p = "bakedclay:"
|
||||
local p2 = "bakedclay:terracotta_"
|
||||
|
||||
-- add lucky blocks
|
||||
|
||||
lucky_block:add_blocks({
|
||||
{"dro", {"bakedclay:"}, 10, true},
|
||||
{"fal", {
|
||||
p.."black", p.."blue", p.."brown", p.."cyan", p.."dark_green",
|
||||
p.."dark_grey", p.."green", p.."grey", p.."magenta", p.."orange",
|
||||
p.."pink", p.."red", p.."violet", p.."white", p.."yellow", p.."natural"
|
||||
p .. "black", p .. "blue", p .. "brown", p .. "cyan", p .. "dark_green",
|
||||
p .. "dark_grey", p .. "green", p .. "grey", p .. "magenta", p .. "orange",
|
||||
p .. "pink", p .. "red", p .. "violet", p .. "white", p .. "yellow", p .. "natural"
|
||||
}, 0},
|
||||
{"fal", {
|
||||
p.."black", p.."blue", p.."brown", p.."cyan", p.."dark_green",
|
||||
p.."dark_grey", p.."green", p.."grey", p.."magenta", p.."orange",
|
||||
p.."pink", p.."red", p.."violet", p.."white", p.."yellow", p.."natural"
|
||||
p .. "black", p .. "blue", p .. "brown", p .. "cyan", p .. "dark_green",
|
||||
p .. "dark_grey", p .. "green", p .. "grey", p .. "magenta", p .. "orange",
|
||||
p .. "pink", p .. "red", p .. "violet", p .. "white", p .. "yellow", p .. "natural"
|
||||
}, 0, true},
|
||||
{"dro", {p.."delphinium"}, 5},
|
||||
{"dro", {p.."lazarus"}, 5},
|
||||
{"dro", {p.."mannagrass"}, 5},
|
||||
{"dro", {p.."thistle"}, 6},
|
||||
{"dro", {p .. "delphinium"}, 5},
|
||||
{"dro", {p .. "lazarus"}, 5},
|
||||
{"dro", {p .. "mannagrass"}, 5},
|
||||
{"dro", {p .. "thistle"}, 6},
|
||||
{"flo", 5, {
|
||||
p.."natural", p.."black", p.."blue", p.."brown", p.."cyan",
|
||||
p.."dark_green", p.."dark_grey", p.."green", p.."grey", p.."magenta",
|
||||
p.."orange", p.."pink", p.."red", p.."violet", p.."white", p.."yellow"
|
||||
p .. "natural", p .. "black", p .. "blue", p .. "brown", p .. "cyan",
|
||||
p .. "dark_green", p .. "dark_grey", p .. "green", p .. "grey", p .. "magenta",
|
||||
p .. "orange", p .. "pink", p .. "red", p .. "violet", p .. "white", p .. "yellow"
|
||||
}, 2},
|
||||
{"nod", "default:chest", 0, {
|
||||
{name = p.."natural", max = 30},
|
||||
{name = p.."black", max = 30},
|
||||
{name = p.."blue", max = 30},
|
||||
{name = p.."brown", max = 30},
|
||||
{name = p.."cyan", max = 30},
|
||||
{name = p.."dark_green", max = 30},
|
||||
{name = p.."dark_grey", max = 30},
|
||||
{name = p.."green", max = 30},
|
||||
{name = p.."grey", max = 30},
|
||||
{name = p.."magenta", max = 30},
|
||||
{name = p.."orange", max = 30},
|
||||
{name = p.."pink", max = 30},
|
||||
{name = p.."red", max = 30},
|
||||
{name = p.."violet", max = 30},
|
||||
{name = p.."white", max = 30},
|
||||
{name = p.."yellow", max = 30}
|
||||
}}
|
||||
})
|
||||
|
||||
p = "bakedclay:terracotta_"
|
||||
|
||||
lucky_block:add_blocks({
|
||||
{name = p .. "natural", max = 20},
|
||||
{name = p .. "black", max = 20},
|
||||
{name = p .. "blue", max = 20},
|
||||
{name = p .. "brown", max = 20},
|
||||
{name = p .. "cyan", max = 20},
|
||||
{name = p .. "dark_green", max = 20},
|
||||
{name = p .. "dark_grey", max = 20},
|
||||
{name = p .. "green", max = 20},
|
||||
{name = p .. "grey", max = 20},
|
||||
{name = p .. "magenta", max = 20},
|
||||
{name = p .. "orange", max = 20},
|
||||
{name = p .. "pink", max = 20},
|
||||
{name = p .. "red", max = 20},
|
||||
{name = p .. "violet", max = 20},
|
||||
{name = p .. "white", max = 20},
|
||||
{name = p .. "yellow", max = 20}
|
||||
}},
|
||||
{"nod", "default:chest", 0, {
|
||||
{name = p.."black", max = 20},
|
||||
{name = p.."blue", max = 20},
|
||||
{name = p.."brown", max = 20},
|
||||
{name = p.."cyan", max = 20},
|
||||
{name = p.."dark_green", max = 20},
|
||||
{name = p.."dark_grey", max = 20},
|
||||
{name = p.."green", max = 20},
|
||||
{name = p.."grey", max = 20},
|
||||
{name = p.."magenta", max = 20},
|
||||
{name = p.."orange", max = 20},
|
||||
{name = p.."pink", max = 20},
|
||||
{name = p.."red", max = 20},
|
||||
{name = p.."violet", max = 20},
|
||||
{name = p.."white", max = 20},
|
||||
{name = p.."yellow", max = 20}
|
||||
{name = p2 .. "black", max = 20},
|
||||
{name = p2 .. "blue", max = 20},
|
||||
{name = p2 .. "brown", max = 20},
|
||||
{name = p2 .. "cyan", max = 20},
|
||||
{name = p2 .. "dark_green", max = 20},
|
||||
{name = p2 .. "dark_grey", max = 20},
|
||||
{name = p2 .. "green", max = 20},
|
||||
{name = p2 .. "grey", max = 20},
|
||||
{name = p2 .. "magenta", max = 20},
|
||||
{name = p2 .. "orange", max = 20},
|
||||
{name = p2 .. "pink", max = 20},
|
||||
{name = p2 .. "red", max = 20},
|
||||
{name = p2 .. "violet", max = 20},
|
||||
{name = p2 .. "white", max = 20},
|
||||
{name = p2 .. "yellow", max = 20}
|
||||
}}
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user