added 4x lucky blocks

This commit is contained in:
TenPlus1 2016-11-12 11:13:55 +00:00
parent 93212e8fd8
commit b6347c81ec
3 changed files with 20 additions and 1 deletions

View File

@ -14,3 +14,5 @@ Changelog:
- 0.3 - Added Stairs and Slabs for each colour
- 0.2 - Any colour of baked clay can be re-dyed into another colour
- 0.1 - Initial Release
Lucky Blocks: 4

View File

@ -1,2 +1,3 @@
default
stairs
lucky_block?

View File

@ -221,4 +221,20 @@ minetest.register_decoration({
num_spawn_by = 1,
})
-- add lucky blocks
if minetest.get_modpath("lucky_block") then
local p = "bakedclay:"
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"}, 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"}, 0, true},
{"dro", {p.."delphinium", p.."lazarus", p.."mannagrass"}, 6},
})
end
print ("[MOD] Baked Clay loaded")