mobs_monster/lucky_block.lua

38 lines
809 B
Lua
Raw Permalink Normal View History

2022-09-27 12:27:47 +02:00
local web = {name = "mobs:cobweb"}
local web_trap = {
size = {x = 3, y = 3, z = 3},
data = {
web, web, web,
web, web, web,
web, web, web,
2016-12-01 19:39:16 +01:00
2022-09-27 12:27:47 +02:00
web, web, web,
web, web, web,
web, web, web,
2016-12-01 19:39:16 +01:00
2022-09-27 12:27:47 +02:00
web, web, web,
web, web, web,
web, web, web
2018-08-19 14:06:05 +02:00
}
2022-09-27 12:27:47 +02:00
}
2018-08-19 14:06:05 +02:00
2022-09-27 12:27:47 +02:00
lucky_block:add_schematics({
{"webtrap", web_trap, {x = 1, y = 0, z = 1}},
})
2016-12-01 19:39:16 +01:00
2022-09-27 12:27:47 +02:00
lucky_block:add_blocks({
{"sch", "webtrap", 1, true},
{"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}}},
})