minetest-mods/thirsty/interop_dungeon_loot.lua

20 lines
1 KiB
Lua
Raw Permalink Normal View History

2024-11-10 14:47:55 +01:00
------------------------------------------------------------
-- _____ _ _ _ --
-- |_ _| |_ (_)_ _ __| |_ _ _ --
-- | | | ' \| | '_(_-< _| || | --
-- |_| |_||_|_|_| /__/\__|\_, | --
-- |__/ --
------------------------------------------------------------
-- Thirsty mod [interop_ethereal] --
------------------------------------------------------------
-- Settings to support Dungeon Loot --
------------------------------------------------------------
if thirsty.config.register_amulets == true then
dungeon_loot.register({name = "thirsty:lesser_amulet_thirst", chance = 0.1, count = {1,1}})
dungeon_loot.register({name = "thirsty:amulet_thirst", chance = 0.05, count = {1,1}, y = {-100, 32768}})
dungeon_loot.register({name = "thirsty:greater_amulet_thirst", chance = 0.05, count = {1,1}, y = {-200, 32768}})
end