forked from NathanSalapat/minetest-thirsty
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinterop_dungeon_loot.lua
20 lines (16 loc) · 1.01 KB
/
interop_dungeon_loot.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
------------------------------------------------------------
-- _____ _ _ _ --
-- |_ _| |_ (_)_ _ __| |_ _ _ --
-- | | | ' \| | '_(_-< _| || | --
-- |_| |_||_|_|_| /__/\__|\_, | --
-- |__/ --
------------------------------------------------------------
-- 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