From b2a20d5438b982b7193ffb14c493b0a765999173 Mon Sep 17 00:00:00 2001 From: Ghommie <42542238+Ghommie@users.noreply.github.com> Date: Sun, 3 May 2020 05:37:04 +0200 Subject: [PATCH] reducing some prices as training wheel. --- code/game/objects/items/RCD.dm | 2 +- code/game/objects/items/devices/scanners.dm | 1 - code/game/objects/items/devices/sensor_device.dm | 2 +- code/game/objects/items/pinpointer.dm | 2 +- code/game/objects/items/storage/firstaid.dm | 2 ++ code/game/objects/items/tanks/watertank.dm | 2 +- code/modules/reagents/reagent_containers/syringes.dm | 2 +- code/modules/vending/medical.dm | 2 +- 8 files changed, 8 insertions(+), 7 deletions(-) diff --git a/code/game/objects/items/RCD.dm b/code/game/objects/items/RCD.dm index 565030b13a..7f6e561f55 100644 --- a/code/game/objects/items/RCD.dm +++ b/code/game/objects/items/RCD.dm @@ -154,7 +154,7 @@ RLD icon_state = "rcd" lefthand_file = 'icons/mob/inhands/equipment/tools_lefthand.dmi' righthand_file = 'icons/mob/inhands/equipment/tools_righthand.dmi' - custom_price = 1700 + custom_price = 900 max_matter = 160 item_flags = NO_MAT_REDEMPTION | NOBLUDGEON has_ammobar = TRUE diff --git a/code/game/objects/items/devices/scanners.dm b/code/game/objects/items/devices/scanners.dm index 5ad781ee89..a7b22a4c30 100644 --- a/code/game/objects/items/devices/scanners.dm +++ b/code/game/objects/items/devices/scanners.dm @@ -80,7 +80,6 @@ SLIME SCANNER var/mode = 1 var/scanmode = 0 var/advanced = FALSE - custom_price = 100 /obj/item/healthanalyzer/suicide_act(mob/living/carbon/user) user.visible_message("[user] begins to analyze [user.p_them()]self with [src]! The display shows that [user.p_theyre()] dead!") diff --git a/code/game/objects/items/devices/sensor_device.dm b/code/game/objects/items/devices/sensor_device.dm index 07b975f133..a92d9221c2 100644 --- a/code/game/objects/items/devices/sensor_device.dm +++ b/code/game/objects/items/devices/sensor_device.dm @@ -5,7 +5,7 @@ icon_state = "scanner" w_class = WEIGHT_CLASS_SMALL slot_flags = ITEM_SLOT_BELT - custom_price = 1750 + custom_price = 900 /obj/item/sensor_device/attack_self(mob/user) GLOB.crewmonitor.show(user,src) //Proc already exists, just had to call it diff --git a/code/game/objects/items/pinpointer.dm b/code/game/objects/items/pinpointer.dm index 5a47b2eecc..a1652fd211 100644 --- a/code/game/objects/items/pinpointer.dm +++ b/code/game/objects/items/pinpointer.dm @@ -78,7 +78,7 @@ name = "crew pinpointer" desc = "A handheld tracking device that points to crew suit sensors." icon_state = "pinpointer_crew" - custom_price = 1000 + custom_price = 600 var/has_owner = FALSE var/pinpointer_owner = null diff --git a/code/game/objects/items/storage/firstaid.dm b/code/game/objects/items/storage/firstaid.dm index 01193d0e21..454807a8b8 100644 --- a/code/game/objects/items/storage/firstaid.dm +++ b/code/game/objects/items/storage/firstaid.dm @@ -422,6 +422,8 @@ throw_range = 7 var/empty = FALSE item_state = "firstaid" + custom_price = 300 + custom_premium_price = 500 /obj/item/storage/hypospraykit/ComponentInitialize() . = ..() diff --git a/code/game/objects/items/tanks/watertank.dm b/code/game/objects/items/tanks/watertank.dm index 67dbc19289..57e9ea9aaa 100644 --- a/code/game/objects/items/tanks/watertank.dm +++ b/code/game/objects/items/tanks/watertank.dm @@ -145,7 +145,7 @@ desc = "A janitorial watertank backpack with nozzle to clean dirt and graffiti." icon_state = "waterbackpackjani" item_state = "waterbackpackjani" - custom_price = 1200 + custom_price = 1000 /obj/item/watertank/janitor/Initialize() . = ..() diff --git a/code/modules/reagents/reagent_containers/syringes.dm b/code/modules/reagents/reagent_containers/syringes.dm index eda8e1b3a3..4782a80c62 100644 --- a/code/modules/reagents/reagent_containers/syringes.dm +++ b/code/modules/reagents/reagent_containers/syringes.dm @@ -15,7 +15,7 @@ var/show_filling = TRUE custom_materials = list(/datum/material/iron=10, /datum/material/glass=20) reagent_flags = TRANSPARENT - custom_price = 150 + custom_price = 100 /obj/item/reagent_containers/syringe/Initialize() . = ..() diff --git a/code/modules/vending/medical.dm b/code/modules/vending/medical.dm index be3a37d07a..797fdabce7 100644 --- a/code/modules/vending/medical.dm +++ b/code/modules/vending/medical.dm @@ -47,7 +47,7 @@ resistance_flags = FIRE_PROOF refill_canister = /obj/item/vending_refill/medical default_price = 200 - extra_price = 200 + extra_price = 250 payment_department = ACCOUNT_MED cost_multiplier_per_dept = list(ACCOUNT_MED = 0)