mirror of
https://codeberg.org/tenplus1/bakedclay.git
synced 2024-11-07 00:40:22 +01:00
added 4x lucky blocks
This commit is contained in:
parent
93212e8fd8
commit
b6347c81ec
|
@ -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
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
default
|
||||
stairs
|
||||
stairs
|
||||
lucky_block?
|
16
init.lua
16
init.lua
|
@ -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")
|
||||
|
|
Loading…
Reference in New Issue
Block a user