Merge branch 'master' into more-ashwalker-woes
This commit is contained in:
@@ -528,7 +528,8 @@
|
||||
BZ_brain_damage_min += bz
|
||||
|
||||
gas_max[GAS_N2] = PP(breath, GAS_N2) + 5
|
||||
var/o2_pp = PP(breath, GAS_O2)
|
||||
var/datum/breathing_class/class = GLOB.gas_data.breathing_classes[breathing_class]
|
||||
var/o2_pp = class.get_effective_pp(breath)
|
||||
safe_breath_min = min(3, 0.3 * o2_pp)
|
||||
safe_breath_max = max(18, 1.3 * o2_pp + 1)
|
||||
..()
|
||||
|
||||
@@ -26,6 +26,7 @@
|
||||
/datum/language/vampiric,
|
||||
/datum/language/dwarf,
|
||||
/datum/language/signlanguage,
|
||||
/datum/language/neokanji,
|
||||
))
|
||||
healing_factor = STANDARD_ORGAN_HEALING*5 //Fast!!
|
||||
decay_factor = STANDARD_ORGAN_DECAY/2
|
||||
@@ -253,7 +254,8 @@
|
||||
/datum/language/beachbum,
|
||||
/datum/language/aphasia,
|
||||
/datum/language/sylvan,
|
||||
/datum/language/voltaic
|
||||
/datum/language/voltaic,
|
||||
/datum/language/neokanji,
|
||||
))
|
||||
|
||||
/obj/item/organ/tongue/ethereal/Initialize(mapload)
|
||||
|
||||
@@ -48,6 +48,13 @@
|
||||
w_class = WEIGHT_CLASS_TINY
|
||||
toolspeed = 0.5
|
||||
|
||||
/obj/item/retractor/ashwalker
|
||||
name = "bontractor"
|
||||
desc = "Kinda looks like a chicken bone."
|
||||
icon = 'icons/obj/mining.dmi'
|
||||
icon_state = "retractor_bone"
|
||||
toolspeed = 0.85
|
||||
|
||||
/obj/item/hemostat
|
||||
name = "hemostat"
|
||||
desc = "You think you have seen this before."
|
||||
@@ -78,6 +85,14 @@
|
||||
toolspeed = 0.5
|
||||
attack_verb = list("attacked", "pinched")
|
||||
|
||||
/obj/item/hemostat/ashwalker
|
||||
name = "femurstat"
|
||||
desc = "Bones that are strapped together with sinews. Used to stop bleeding."
|
||||
icon = 'icons/obj/mining.dmi'
|
||||
icon_state = "hemostat_bone"
|
||||
toolspeed = 0.85
|
||||
|
||||
|
||||
/obj/item/cautery
|
||||
name = "cautery"
|
||||
desc = "This stops bleeding."
|
||||
@@ -108,6 +123,13 @@
|
||||
toolspeed = 0.5
|
||||
attack_verb = list("burnt")
|
||||
|
||||
/obj/item/cautery/ashwalker
|
||||
name = "coretery"
|
||||
desc = "A legion core strapped to a bone. It can close wounds."
|
||||
icon = 'icons/obj/mining.dmi'
|
||||
icon_state = "cautery_bone"
|
||||
toolspeed = 0.85
|
||||
|
||||
/obj/item/surgicaldrill
|
||||
name = "surgical drill"
|
||||
desc = "You can drill using this item. You dig?"
|
||||
@@ -257,6 +279,14 @@
|
||||
user.visible_message("<span class='suicide'>[user] is slitting [user.p_their()] [pick("wrists", "throat", "stomach")] with [src]! It looks like [user.p_theyre()] trying to commit suicide!</span>")
|
||||
return (BRUTELOSS)
|
||||
|
||||
/obj/item/scalpel/ashwalker
|
||||
name = "diamond scalpel"
|
||||
desc = "Bones and a Diamond tied together to make a scalpel."
|
||||
icon = 'icons/obj/mining.dmi'
|
||||
icon_state = "scalpel_bone"
|
||||
force = 12
|
||||
toolspeed = 0.85
|
||||
|
||||
/obj/item/circular_saw
|
||||
name = "circular saw"
|
||||
desc = "For heavy duty cutting."
|
||||
@@ -309,6 +339,14 @@
|
||||
attack_verb = list("attacked", "slashed", "sawed", "cut")
|
||||
sharpness = SHARP_EDGED
|
||||
|
||||
/obj/item/circular_saw/ashwalker
|
||||
name = "diamond bonesaw"
|
||||
desc = "Bones designed like a skull, with diamond teeth to cut through bones."
|
||||
icon = 'icons/obj/mining.dmi'
|
||||
icon_state = "saw_bone"
|
||||
force = 12
|
||||
toolspeed = 0.85
|
||||
|
||||
/obj/item/surgical_drapes
|
||||
name = "surgical drapes"
|
||||
desc = "Nanotrasen brand surgical drapes provide optimal safety and infection control."
|
||||
@@ -341,6 +379,13 @@
|
||||
prototype = SSresearch.techweb_design_by_id(id)
|
||||
. |= prototype.surgery
|
||||
|
||||
|
||||
/obj/item/surgical_drapes/goliath
|
||||
name = "goliath drapes"
|
||||
desc = "Probably not the most hygienic but what the heck else are you gonna use?"
|
||||
icon = 'icons/obj/mining.dmi'
|
||||
icon_state = "surgical_drapes_goli"
|
||||
|
||||
/obj/item/organ_storage //allows medical cyborgs to manipulate organs without hands
|
||||
name = "organ storage bag"
|
||||
desc = "A container for holding body parts."
|
||||
@@ -433,3 +478,10 @@
|
||||
to_chat(user, "<span class='warning'>You refrain from hitting [L] with [src], as you are in help intent.</span>")
|
||||
return
|
||||
return ..()
|
||||
|
||||
/obj/item/bonesetter/bone
|
||||
name = "bone bonesetter"
|
||||
desc = "A bonesetter made of bones... for setting bones with... bones?"
|
||||
icon = 'icons/obj/mining.dmi'
|
||||
icon_state = "bone setter_bone"
|
||||
toolspeed = 0.85
|
||||
|
||||
Reference in New Issue
Block a user