18 lines
516 B
Plaintext
Raw Normal View History

2024-10-08 19:55:42 -04:00
[
(1.0, All([
MultiDrop(Item("common.items.utility.coins"), 200, 500),
2024-10-10 09:12:52 -04:00
MultiDrop(Item("common.items.consumable.potion_minor"), 2, 4),
MultiDrop(Item("common.items.mineral.ingot.bloodsteel"), 0, 2),
2024-10-08 19:55:42 -04:00
// Special drop
Lottery([
// Lantern drop
(0.15, Item("common.items.lantern.blue_0")),
// Hat drop
(0.3, Item("common.items.armor.misc.head.mitre")),
2024-10-10 09:12:52 -04:00
// Nothing
2024-10-08 19:55:42 -04:00
(1.05, Nothing),
]),
]))
]