summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--depends.txt3
-rw-r--r--init.lua16
3 files changed, 20 insertions, 1 deletions
diff --git a/README.md b/README.md
index 6ae5b71..9838533 100644
--- a/README.md
+++ b/README.md
@@ -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
diff --git a/depends.txt b/depends.txt
index e0264b4..8901b48 100644
--- a/depends.txt
+++ b/depends.txt
@@ -1,2 +1,3 @@
default
-stairs \ No newline at end of file
+stairs
+lucky_block? \ No newline at end of file
diff --git a/init.lua b/init.lua
index 81740d3..669fc03 100644
--- a/init.lua
+++ b/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")