Added 11 lucky blocks

This commit is contained in:
TenPlus1 2016-12-01 18:39:16 +00:00
parent 17c6e27e44
commit e5f4c2a774
5 changed files with 25 additions and 1 deletions

View File

@ -1,3 +1,4 @@
default
mobs
intllib?
lucky_block?

View File

@ -22,4 +22,6 @@ dofile(path .. "/lava_flan.lua") -- Zeg9
dofile(path .. "/mese_monster.lua")
dofile(path .. "/spider.lua") -- AspireMint
dofile(path .. "/lucky_block.lua")
print ("[MOD] Mobs Redo 'Monsters' loaded")

19
lucky_block.lua Normal file
View File

@ -0,0 +1,19 @@
if minetest.get_modpath("lucky_block") then
lucky_block:add_blocks({
{"spw", "mobs:dungeon_master", 1, nil, nil, 3, "Billy"},
{"spw", "mobs:sand_monster", 3},
{"spw", "mobs:stone_monster", 3, nil, nil, 3, "Bob"},
{"spw", "mobs:dirt_monster", 3},
{"spw", "mobs:tree_monster", 3},
{"spw", "mobs:oerkki", 3},
{"exp"},
{"spw", "mobs:spider", 5},
{"spw", "mobs:mese_monster", 2},
{"spw", "mobs:lava_flan", 3},
{"nod", "default:chest", 0, {
{name = "mobs:lava_orb", max = 1}}},
})
end

View File

@ -36,3 +36,5 @@ Stone Monster
Tree Monster
- Found atop tree's at night time they drop down and look for food in the form of players and animals. Can drop saplings and sometimes an apple or three.
Lucky Blocks: 11

View File

@ -89,7 +89,7 @@ minetest.register_node(":mobs:cobweb", {
liquid_renewable = false,
liquid_range = 0,
walkable = false,
groups = {snappy = 1},
groups = {snappy = 1, disable_jump = 1},
drop = "farming:cotton",
sounds = default.node_sound_leaves_defaults(),
})