2021-07-02 23:37:22 +00:00
|
|
|
// Loot table that exists purely for price rationalisation
|
|
|
|
// Put here anything that doesn't fit in anything else.
|
|
|
|
//
|
|
|
|
// This loot table should be marked as un-sellable.
|
|
|
|
// If you want to add something that merchants can buy and sell,
|
|
|
|
// add another loot table
|
|
|
|
//
|
|
|
|
// Please keep it sorted by rarity so it's easier to reason about things
|
|
|
|
[
|
|
|
|
/// Non-craftable gliders
|
|
|
|
// Butterfly gliders
|
2021-09-26 13:49:49 +00:00
|
|
|
(5, Item("common.items.glider.morpho")),
|
|
|
|
(5, Item("common.items.glider.monarch")),
|
|
|
|
(5, Item("common.items.glider.moth")),
|
2021-07-02 23:37:22 +00:00
|
|
|
// Skullgrin
|
2021-09-26 13:49:49 +00:00
|
|
|
(2, Item("common.items.glider.skullgrin")),
|
2021-07-02 23:37:22 +00:00
|
|
|
|
|
|
|
/// Lanterns
|
|
|
|
(5, Item("common.items.lantern.geode_purp")),
|
|
|
|
(2, Item("common.items.lantern.blue_0")),
|
|
|
|
(2, Item("common.items.boss_drops.lantern")),
|
|
|
|
]
|