From ad62d5f9a3d81dd1feb1bb224af083e678e3d4fa Mon Sep 17 00:00:00 2001 From: uniior Date: Sat, 22 Jun 2024 11:26:22 -0400 Subject: [PATCH] Hotfix for worker/linen clothing pricing --- assets/common/trading/item_price_equality.ron | 49 +++++++++++++++++-- 1 file changed, 46 insertions(+), 3 deletions(-) diff --git a/assets/common/trading/item_price_equality.ron b/assets/common/trading/item_price_equality.ron index 7089e28fee..a8eb56f9b9 100644 --- a/assets/common/trading/item_price_equality.ron +++ b/assets/common/trading/item_price_equality.ron @@ -1,7 +1,50 @@ [ - // Legendary sceptres + // Purple Linen set Set([ - "common.items.weapons.sceptre.root_evil", - "common.items.weapons.sceptre.caduceus", + "common.items.armor.cloth_purple.belt", + "common.items.armor.cloth_purple.chest", + "common.items.armor.cloth_purple.foot", + "common.items.armor.cloth_purple.hand", + "common.items.armor.cloth_purple.pants", + "common.items.armor.cloth_purple.shoulder", + ]), + + // Green Linen set + Set([ + "common.items.armor.cloth_green.belt", + "common.items.armor.cloth_green.chest", + "common.items.armor.cloth_green.foot", + "common.items.armor.cloth_green.hand", + "common.items.armor.cloth_green.pants", + "common.items.armor.cloth_green.shoulder", + ]), + + // Blue Linen set + Set([ + "common.items.armor.cloth_blue.belt", + "common.items.armor.cloth_blue.chest", + "common.items.armor.cloth_blue.foot", + "common.items.armor.cloth_blue.hand", + "common.items.armor.cloth_blue.pants", + "common.items.armor.cloth_blue.shoulder_0", + "common.items.armor.cloth_blue.shoulder_1", + ]), + + // Worker/starter clothing + Set([ + "common.items.armor.misc.chest.worker_green_0", + "common.items.armor.misc.chest.worker_green_1", + "common.items.armor.misc.chest.worker_orange_0", + "common.items.armor.misc.chest.worker_orange_1", + "common.items.armor.misc.chest.worker_purple_0", + "common.items.armor.misc.chest.worker_purple_1", + "common.items.armor.misc.chest.worker_purple_brown", + "common.items.armor.misc.chest.worker_red_0", + "common.items.armor.misc.chest.worker_red_1", + "common.items.armor.misc.chest.worker_yellow_0", + "common.items.armor.misc.chest.worker_yellow_1", + "common.items.armor.misc.pants.worker_blue", + "common.items.armor.misc.pants.worker_brown", + "common.items.armor.misc.foot.sandals", ]), ]