From 4085e2828505a71018da039eb879d1f8796ea854 Mon Sep 17 00:00:00 2001 From: Anewbe Date: Tue, 11 Apr 2017 20:34:11 -0500 Subject: [PATCH] Ninja rig has different chems --- .../spacesuits/rig/modules/utility.dm | 22 ++++++++++--------- .../clothing/spacesuits/rig/suits/light.dm | 2 +- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/code/modules/clothing/spacesuits/rig/modules/utility.dm b/code/modules/clothing/spacesuits/rig/modules/utility.dm index 820543f082..cec738479e 100644 --- a/code/modules/clothing/spacesuits/rig/modules/utility.dm +++ b/code/modules/clothing/spacesuits/rig/modules/utility.dm @@ -149,17 +149,19 @@ /obj/item/rig_module/chem_dispenser/ninja interface_desc = "Dispenses loaded chemicals directly into the wearer's bloodstream. This variant is made to be extremely light and flexible." - //just over a syringe worth of each. Want more? Go refill. Gives the ninja another reason to have to show their face. + //Want more? Go refill. Gives the ninja another reason to have to show their face. charges = list( - list("tricordrazine", "tricordrazine", 0, 20), - list("tramadol", "tramadol", 0, 20), - list("dexalin plus", "dexalinp", 0, 20), - list("antibiotics", "spaceacillin", 0, 20), - list("antitoxins", "anti_toxin", 0, 20), - list("nutrients", "glucose", 0, 80), - list("clotting agent", "myelamine", 0, 80), - list("hyronalin", "hyronalin", 0, 20), - list("radium", "radium", 0, 20) + list("tricordrazine", "tricordrazine", 0, 30), + list("tramadol", "tramadol", 0, 30), + list("dexalin plus", "dexalinp", 0, 30), + list("antibiotics", "spaceacillin", 0, 30), + list("antitoxins", "anti_toxin", 0, 60), + list("nutrients", "glucose", 0, 80), + list("bicaridine", "bicaridine", 0, 30), + list("clotting agent", "myelamine", 0, 30), + list("peridaxon", "peridaxon", 0, 30), + list("hyronalin", "hyronalin", 0, 30), + list("radium", "radium", 0, 30) ) /obj/item/rig_module/chem_dispenser/accepts_item(var/obj/item/input_item, var/mob/living/user) diff --git a/code/modules/clothing/spacesuits/rig/suits/light.dm b/code/modules/clothing/spacesuits/rig/suits/light.dm index f81110013e..2fb3e040e2 100644 --- a/code/modules/clothing/spacesuits/rig/suits/light.dm +++ b/code/modules/clothing/spacesuits/rig/suits/light.dm @@ -93,7 +93,7 @@ /obj/item/rig_module/vision, /obj/item/rig_module/voice, /obj/item/rig_module/fabricator/energy_net, - /obj/item/rig_module/chem_dispenser, + /obj/item/rig_module/chem_dispenser/ninja, /obj/item/rig_module/grenade_launcher, /obj/item/rig_module/ai_container, /obj/item/rig_module/power_sink,