From e2f4a953cab747b8501726b0cecf94692fc57cdb Mon Sep 17 00:00:00 2001 From: TechnoAlchemist Date: Thu, 30 Jun 2016 00:45:44 -0700 Subject: [PATCH] Gives miners a survival medipen instead of brute patches. (#19007) * Gets rid of the 8 patches in the vendor. * Removes the brute pillbottles from miner gear, replaces with survival medipen. At the behest of the design lead. New brute patches were ineffectual and giving them a bunch ruins the single get out of injury free card they used to have. --- code/modules/jobs/job_types/cargo_service.dm | 2 +- code/modules/mining/machine_vending.dm | 1 - code/modules/reagents/reagent_containers/hypospray.dm | 6 +++--- code/modules/reagents/reagent_containers/patch.dm | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/code/modules/jobs/job_types/cargo_service.dm b/code/modules/jobs/job_types/cargo_service.dm index bbcc2c76103..0d709dc69e1 100644 --- a/code/modules/jobs/job_types/cargo_service.dm +++ b/code/modules/jobs/job_types/cargo_service.dm @@ -81,7 +81,7 @@ Shaft Miner shoes = /obj/item/clothing/shoes/workboots/mining gloves = /obj/item/clothing/gloves/color/black uniform = /obj/item/clothing/under/rank/miner/lavaland - l_pocket = /obj/item/weapon/storage/pill_bottle/mining + l_pocket = /obj/item/weapon/reagent_containers/hypospray/medipen/survival r_pocket = /obj/item/device/flashlight/seclite backpack_contents = list( /obj/item/weapon/storage/bag/ore=1,\ diff --git a/code/modules/mining/machine_vending.dm b/code/modules/mining/machine_vending.dm index db30806fbd5..3452702bc39 100644 --- a/code/modules/mining/machine_vending.dm +++ b/code/modules/mining/machine_vending.dm @@ -169,7 +169,6 @@ if("Resonator and Advanced Scanner") new /obj/item/weapon/resonator(src.loc) new /obj/item/device/t_scanner/adv_mining_scanner(src.loc) - new /obj/item/weapon/storage/pill_bottle/mining(src.loc) if("Mining Drone") new /mob/living/simple_animal/hostile/mining_drone(src.loc) new /obj/item/weapon/weldingtool/hugetank(src.loc) diff --git a/code/modules/reagents/reagent_containers/hypospray.dm b/code/modules/reagents/reagent_containers/hypospray.dm index 1136c7a8d95..c03dc50dbb2 100644 --- a/code/modules/reagents/reagent_containers/hypospray.dm +++ b/code/modules/reagents/reagent_containers/hypospray.dm @@ -130,9 +130,9 @@ name = "survival medipen" desc = "A medipen for surviving in the harshest of environments, heals and protects from environmental hazards. " icon_state = "stimpen" - volume = 80 - amount_per_transfer_from_this = 80 - list_reagents = list("salbutamol" = 10, "coffee" = 20, "leporazine" = 20, "tricordrazine" = 15, "epinephrine" = 10, "omnizine" = 5) + volume = 82 + amount_per_transfer_from_this = 82 + list_reagents = list("nanites" = 2, "salbutamol" = 10, "coffee" = 20, "leporazine" = 20, "tricordrazine" = 15, "epinephrine" = 10, "omnizine" = 5, "stimulants" = 10) /obj/item/weapon/reagent_containers/hypospray/medipen/species_mutator name = "species mutator medipen" diff --git a/code/modules/reagents/reagent_containers/patch.dm b/code/modules/reagents/reagent_containers/patch.dm index efc27d2cf87..4cc8b5d6e98 100644 --- a/code/modules/reagents/reagent_containers/patch.dm +++ b/code/modules/reagents/reagent_containers/patch.dm @@ -28,4 +28,4 @@ name = "burn patch" desc = "Helps with burn injuries." list_reagents = list("silver_sulfadiazine" = 20) - icon_state = "bandaid_burn" + icon_state = "bandaid_burn" \ No newline at end of file