From 853165e465d8bbab8357f98159ec04b7279dcdc8 Mon Sep 17 00:00:00 2001 From: JCoxeye Date: Thu, 21 Dec 2023 12:17:01 -0500 Subject: [PATCH] Added price entries for cultist and boreal armor loot tables. Removed redundant jewellery price table. --- assets/common/trading/item_price_calculation.ron | 3 ++- assets/common/trading/jewellery.ron | 11 ----------- 2 files changed, 2 insertions(+), 12 deletions(-) delete mode 100644 assets/common/trading/jewellery.ron diff --git a/assets/common/trading/item_price_calculation.ron b/assets/common/trading/item_price_calculation.ron index eac06b1278..a5d368f9e5 100644 --- a/assets/common/trading/item_price_calculation.ron +++ b/assets/common/trading/item_price_calculation.ron @@ -12,7 +12,8 @@ loot_tables: [ (6.0, true, "common.loot_tables.armor.twigs"), (6.0, true, "common.loot_tables.armor.twigsflowers"), (6.0, true, "common.loot_tables.armor.twigsleaves"), - (0.02, false, "common.trading.jewellery"), + (0.09, false, "common.loot_tables.armor.cultist"), + (0.08, false, "common.loot_tables.armor.boreal"), // Ingredients (72.5, true, "common.trading.sellable_materials"), diff --git a/assets/common/trading/jewellery.ron b/assets/common/trading/jewellery.ron deleted file mode 100644 index 557269c06b..0000000000 --- a/assets/common/trading/jewellery.ron +++ /dev/null @@ -1,11 +0,0 @@ -// Loot table that exists purely for price rationalisation -// -// 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 -[ - (1, Item("common.items.armor.misc.back.dungeon_purple")), - (1, Item("common.items.armor.cultist.ring")), -]