added 9x lucky blocks

master
TenPlus1 2016-11-12 10:55:32 +00:00
parent 0198733706
commit 3995342712
3 changed files with 21 additions and 0 deletions

View File

@ -18,3 +18,5 @@ Change log:
- 0.2 - Added meat pie
- 0.3 - Fix cake inside - Added banana cake
- 0.4 - Added support for stamina mod
Lucky Blocks: 9

View File

@ -5,3 +5,4 @@ farming?
mobs?
ethereal?
stamina?
lucky_block?

View File

@ -251,3 +251,21 @@ minetest.register_craft({
},
replacements = {{ "mobs:bucket_milk", "bucket:bucket_empty"}}
})
-- add lucky blocks
if minetest.get_modpath("lucky_block") then
lucky_block:add_blocks({
{"nod", "pie:pie_0", 0},
{"nod", "pie:choc_0", 0},
{"nod", "pie:coff_0", 0},
{"tro", "pie:pie_0"},
{"nod", "pie:rvel_0", 0},
{"nod", "pie:scsk_0", 0},
{"nod", "pie:bana_0", 0},
{"nod", "pie:meat_0", 0},
{"lig"},
})
end
print ("[MOD] Pie loaded")