From dc7e196c823fb239ec17839b301482fbde1e1beb Mon Sep 17 00:00:00 2001 From: Yoshax Date: Sun, 31 Jul 2016 15:19:31 +0100 Subject: [PATCH] Corrects surplus crate pricing to scale rewards the more you spend. Proper description can be found in the commit description. 120 TC - 240 Worth - 2x Worth 240 TC - 540 Worth - 2.25x Worth 480 TC - 1200 Worth - 2.5x Worth 720 TC - 1980 Worth - 2.75x Worth --- code/datums/uplink/badassery.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/datums/uplink/badassery.dm b/code/datums/uplink/badassery.dm index 2cfd2f72030..62c570a972b 100644 --- a/code/datums/uplink/badassery.dm +++ b/code/datums/uplink/badassery.dm @@ -61,17 +61,17 @@ /datum/uplink_item/item/badassery/surplus/merc2 name = "Surplus Crate - 240 TC" item_cost = DEFAULT_TELECRYSTAL_AMOUNT * 2 - item_worth = 360 + item_worth = 540 /datum/uplink_item/item/badassery/surplus/merc4 name = "Surplus Crate - 480 TC" item_cost = DEFAULT_TELECRYSTAL_AMOUNT * 4 - item_worth = 720 + item_worth = 1200 /datum/uplink_item/item/badassery/surplus/merc6 name = "Surplus Crate - 720 TC" item_cost = DEFAULT_TELECRYSTAL_AMOUNT * 6 - item_worth = 1440 + item_worth = 1980 /datum/uplink_item/item/badassery/surplus/New() ..()