A stab at ninja rebalancing

They're still pretty deadly, they have a lot of tools at their disposal,
they can kill someone in a couple of clicks with their energy blade.
However hopefully they will have to pick their fights now.
This commit is contained in:
mwerezak
2015-02-21 12:18:54 -05:00
parent 77805bfd05
commit 65a32ec051
2 changed files with 16 additions and 1 deletions

View File

@@ -131,6 +131,21 @@
var/max_reagent_volume = 80 //Used when refilling. var/max_reagent_volume = 80 //Used when refilling.
/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.
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", "nutriment", 0, 80),
list("hyronalin", "hyronalin", 0, 20),
list("radium", "radium", 0, 20)
)
/obj/item/rig_module/chem_dispenser/accepts_item(var/obj/item/input_item, var/mob/living/user) /obj/item/rig_module/chem_dispenser/accepts_item(var/obj/item/input_item, var/mob/living/user)
if(!input_item.is_open_container()) if(!input_item.is_open_container())

View File

@@ -53,7 +53,7 @@
suit_type = "ominous" suit_type = "ominous"
desc = "A unique, vaccum-proof suit of nano-enhanced armor designed specifically for Spider Clan assassins." desc = "A unique, vaccum-proof suit of nano-enhanced armor designed specifically for Spider Clan assassins."
icon_state = "ninja_rig" icon_state = "ninja_rig"
armor = list(melee = 60, bullet = 50, laser = 30,energy = 15, bomb = 30, bio = 30, rad = 30) armor = list(melee = 50, bullet = 15, laser = 30, energy = 10, bomb = 25, bio = 100, rad = 30)
slowdown = 0 slowdown = 0
req_access = list(access_syndicate) req_access = list(access_syndicate)