added lucky block

master
Juraj Vajda 2017-08-14 22:53:35 +02:00
parent a1b2db1944
commit 8a94caa2d2
2 changed files with 17 additions and 0 deletions

View File

@ -28,4 +28,6 @@ dofile(path .. "/bee.lua") -- KrupnoPavel
-- dofile(path .. "/kitten.lua") -- Jordach/BFD
-- dofile(path .. "/penguin.lua") -- D00Med
dofile(path .. "/lucky_block.lua")
print (S("[MOD] Mobs Redo 'Animals' loaded"))

15
lucky_block.lua Normal file
View File

@ -0,0 +1,15 @@
if minetest.get_modpath("lucky_block") then
lucky_block:add_blocks({
{"spw", "mobs:sheep", 5},
{"nod", "mobs:honey_block", 0},
{"spw", "mobs:pumba", 5},
{"nod", "mobs:cheeseblock", 0},
{"spw", "mobs:chicken", 5},
{"dro", {"mobs:egg"}, 5},
{"spw", "mobs:cow", 5},
{"dro", {"mobs:bucket_milk"}, 8},
{"exp"},
})
end