mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-23 00:22:12 +00:00
* Split examine verb and function, and include adjacency and distance checking in examine function * Fix various issues * Update code/modules/mob/examinations.dm Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com> * Add required define vars * Update code/game/objects/items/stacks/wrap.dm Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com> --------- Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>
232 lines
7.9 KiB
Plaintext
232 lines
7.9 KiB
Plaintext
/obj/item/organ/internal/brain
|
|
name = "brain"
|
|
desc = "A piece of juicy meat found in a person's head."
|
|
organ_tag = BP_BRAIN
|
|
parent_organ = BP_HEAD
|
|
vital = TRUE
|
|
icon_state = "brain"
|
|
force = 1.0
|
|
w_class = ITEMSIZE_SMALL
|
|
throwforce = 1.0
|
|
throw_speed = 3
|
|
throw_range = 5
|
|
origin_tech = list(TECH_BIO = 3)
|
|
attack_verb = list("attacked", "slapped", "whacked")
|
|
toxin_type = CE_NEUROTOXIC
|
|
|
|
damage_reduction = 0
|
|
relative_size = 85
|
|
|
|
var/mob/living/carbon/brain/brainmob = null
|
|
var/prepared = FALSE
|
|
var/can_prepare = TRUE
|
|
|
|
var/const/damage_threshold_count = 10
|
|
var/damage_threshold_value
|
|
var/healed_threshold = 1
|
|
var/oxygen_reserve = 6
|
|
|
|
/obj/item/organ/internal/brain/Initialize(mapload)
|
|
. = ..()
|
|
if(species)
|
|
set_max_damage(species.total_health)
|
|
else
|
|
set_max_damage(200)
|
|
if(!mapload)
|
|
addtimer(CALLBACK(src, PROC_REF(clear_screen)), 5)
|
|
|
|
/obj/item/organ/internal/brain/Destroy()
|
|
if(brainmob)
|
|
QDEL_NULL(brainmob)
|
|
return ..()
|
|
|
|
/obj/item/organ/internal/brain/removed(var/mob/living/user)
|
|
|
|
var/mob/living/simple_animal/borer/borer = owner.has_brain_worms()
|
|
|
|
if(borer)
|
|
borer.detach() //Should remove borer if the brain is removed - RR
|
|
|
|
var/obj/item/organ/internal/brain/B = src
|
|
if(istype(B) && istype(owner))
|
|
B.transfer_identity(owner)
|
|
|
|
..()
|
|
|
|
/obj/item/organ/internal/brain/replaced(var/mob/living/target)
|
|
|
|
if(target.key)
|
|
target.ghostize()
|
|
|
|
if(brainmob)
|
|
if(brainmob.mind)
|
|
brainmob.mind.transfer_to(target)
|
|
else
|
|
target.key = brainmob.key
|
|
..()
|
|
|
|
/obj/item/organ/internal/brain/getToxLoss()
|
|
return 0
|
|
|
|
/obj/item/organ/internal/brain/can_recover()
|
|
return ~status & ORGAN_DEAD
|
|
|
|
/obj/item/organ/internal/brain/proc/get_current_damage_threshold()
|
|
return round(damage / damage_threshold_value)
|
|
|
|
/obj/item/organ/internal/brain/proc/past_damage_threshold(var/threshold)
|
|
return (get_current_damage_threshold() > threshold)
|
|
|
|
/obj/item/organ/internal/brain/set_max_damage(var/ndamage)
|
|
..()
|
|
damage_threshold_value = round(max_damage / damage_threshold_count)
|
|
|
|
/obj/item/organ/internal/brain/process()
|
|
if(owner)
|
|
if(damage > (max_damage * 0.75) && healed_threshold)
|
|
handle_severe_brain_damage()
|
|
|
|
if(damage < (max_damage / 4))
|
|
healed_threshold = 1
|
|
|
|
handle_damage_effects()
|
|
|
|
// Brain damage from low oxygenation or lack of blood.
|
|
if(owner.should_have_organ(BP_HEART))
|
|
|
|
// No heart? You are going to have a very bad time. Not 100% lethal because heart transplants should be a thing.
|
|
var/blood_volume = owner.get_blood_oxygenation()
|
|
if(blood_volume < BLOOD_VOLUME_SURVIVE)
|
|
if(!owner.chem_effects[CE_STABLE] || prob(60))
|
|
oxygen_reserve = max(0, oxygen_reserve-1)
|
|
else
|
|
oxygen_reserve = min(initial(oxygen_reserve), oxygen_reserve+1)
|
|
|
|
if(!oxygen_reserve) //(hardcrit)
|
|
owner.Paralyse(10)
|
|
|
|
var/can_heal = (damage && damage < max_damage && (damage % damage_threshold_value || owner.chem_effects[CE_BRAIN_REGEN] || (!past_damage_threshold(3) && owner.chem_effects[CE_STABLE]))) && (!(owner.chem_effects[CE_NEUROTOXIC]) || owner.chem_effects[CE_ANTITOXIN])
|
|
var/damprob
|
|
var/brain_regen_amount = owner.chem_effects[CE_BRAIN_REGEN] / 10
|
|
//Effects of bloodloss
|
|
switch(blood_volume)
|
|
if(BLOOD_VOLUME_SAFE to INFINITY)
|
|
if(can_heal && owner.chem_effects[CE_BRAIN_REGEN])
|
|
damage = max(damage - brain_regen_amount, 0)
|
|
else if(can_heal)
|
|
damage = max(damage-1, 0)
|
|
if(BLOOD_VOLUME_OKAY to BLOOD_VOLUME_SAFE)
|
|
if(prob(1))
|
|
to_chat(owner, SPAN_WARNING("You feel a bit [pick("lightheaded","dizzy","pale")]..."))
|
|
damprob = owner.chem_effects[CE_STABLE] ? 30 : 60
|
|
if(!past_damage_threshold(2) && prob(damprob))
|
|
take_internal_damage(1)
|
|
if(BLOOD_VOLUME_BAD to BLOOD_VOLUME_OKAY)
|
|
owner.eye_blurry = max(owner.eye_blurry,6)
|
|
damprob = owner.chem_effects[CE_STABLE] ? 40 : 80
|
|
if(!past_damage_threshold(4) && prob(damprob))
|
|
take_internal_damage(1)
|
|
if(!owner.paralysis && prob(10))
|
|
owner.Paralyse(rand(1,3))
|
|
to_chat(owner, SPAN_WARNING("You feel [pick("weak","disoriented","faint","cold")]."))
|
|
if(BLOOD_VOLUME_SURVIVE to BLOOD_VOLUME_BAD)
|
|
owner.eye_blurry = max(owner.eye_blurry,6)
|
|
damprob = owner.chem_effects[CE_STABLE] ? 60 : 100
|
|
if(!past_damage_threshold(6) && prob(damprob))
|
|
take_internal_damage(1)
|
|
if(!owner.paralysis && prob(15))
|
|
owner.Paralyse(rand(3, 5))
|
|
to_chat(owner, SPAN_WARNING("You feel <b>extremely</b> [pick("cold","woozy","faint","weak","confused","tired","lethargic")]."))
|
|
if(-(INFINITY) to BLOOD_VOLUME_SURVIVE) // Also see heart.dm, being below this point puts you into cardiac arrest.
|
|
owner.eye_blurry = max(owner.eye_blurry,6)
|
|
damprob = owner.chem_effects[CE_STABLE] ? 80 : 100
|
|
if(prob(damprob))
|
|
take_internal_damage(1)
|
|
if(prob(damprob))
|
|
take_internal_damage(1)
|
|
..()
|
|
|
|
/obj/item/organ/internal/brain/proc/handle_severe_brain_damage()
|
|
set waitfor = FALSE
|
|
healed_threshold = 0
|
|
to_chat(owner, "<span class = 'notice'><font size=4><B>Where am I...?</B></font></span>")
|
|
owner.Paralyse(20)
|
|
sleep(5 SECONDS)
|
|
if(!owner)
|
|
return
|
|
to_chat(owner, "<span class = 'notice'><font size=4><B>What's going on...?</B></font></span>")
|
|
sleep(10 SECONDS)
|
|
if(!owner)
|
|
return
|
|
to_chat(owner, "<span class = 'notice'><font size=4><B>What happened...?</B></font></span>")
|
|
alert(owner.find_mob_consciousness(), "You have taken massive brain damage! You will not be able to remember the events leading up to your injury.", "Brain Damaged")
|
|
|
|
/obj/item/organ/internal/brain/proc/handle_damage_effects()
|
|
if(owner.stat)
|
|
return
|
|
if(damage > 0 && prob(1))
|
|
owner.custom_pain("Your head feels numb and painful.",10)
|
|
if(is_bruised() && prob(1) && owner.eye_blurry <= 0)
|
|
to_chat(owner, "<span class='warning'>It becomes hard to see for some reason.</span>")
|
|
owner.eye_blurry = 10
|
|
if(damage >= 0.5*max_damage && prob(1) && owner.get_active_hand())
|
|
to_chat(owner, "<span class='danger'>Your hand won't respond properly, and you drop what you are holding!</span>")
|
|
owner.drop_item()
|
|
if(damage >= 0.6*max_damage)
|
|
owner.stuttering = max(owner.slurring, 2)
|
|
if(is_broken())
|
|
if(!owner.lying && prob(5))
|
|
to_chat(owner, "<span class='danger'>You black out!</span>")
|
|
owner.Paralyse(10)
|
|
|
|
/obj/item/organ/internal/brain/surgical_fix(mob/user)
|
|
var/blood_volume = owner.get_blood_oxygenation()
|
|
if(blood_volume < BLOOD_VOLUME_BAD)
|
|
to_chat(user, "<span class='danger'>Parts of [src] didn't survive the procedure due to lack of air supply!</span>")
|
|
set_max_damage(Floor(max_damage - 0.25*damage))
|
|
heal_damage(damage)
|
|
|
|
/obj/item/organ/internal/brain/get_scarring_level()
|
|
. = (species.total_health - max_damage)/species.total_health
|
|
|
|
//Miscellaneous
|
|
|
|
/obj/item/organ/internal/brain/proc/clear_screen()
|
|
if (brainmob && brainmob.client)
|
|
brainmob.client.screen.Cut()
|
|
|
|
/obj/item/organ/internal/brain/proc/transfer_identity(var/mob/living/carbon/H)
|
|
brainmob = new(src)
|
|
brainmob.name = H.real_name
|
|
brainmob.real_name = H.real_name
|
|
brainmob.dna = H.dna.Clone()
|
|
brainmob.timeofhostdeath = H.timeofdeath
|
|
if(H.mind)
|
|
H.mind.transfer_to(brainmob)
|
|
|
|
to_chat(brainmob, "<span class='notice'>You feel slightly disoriented. That's normal when you're just a [initial(src.name)].</span>")
|
|
callHook("debrain", list(brainmob))
|
|
|
|
/obj/item/organ/internal/brain/examine(mob/user) // -- TLE
|
|
. = ..()
|
|
if(brainmob && brainmob.client)//if thar be a brain inside... the brain.
|
|
to_chat(user, "You can feel the small spark of life still left in this one.")
|
|
else
|
|
to_chat(user, "This one seems particularly lifeless. Perhaps it will regain some of its luster later..")
|
|
|
|
/obj/item/organ/internal/brain/attackby(obj/item/I, mob/user)
|
|
if(istype(I, /obj/item/surgery/surgicaldrill))
|
|
if(!can_prepare)
|
|
to_chat(user, SPAN_WARNING("\The [src] cannot be prepared!"))
|
|
return
|
|
if(!prepared)
|
|
user.visible_message(SPAN_DANGER("[user] deftly uses \the [I] to drill into \the [src]!"))
|
|
prepared = TRUE
|
|
else
|
|
to_chat(user, SPAN_WARNING("The brain has already been prepared!"))
|
|
return
|
|
return ..()
|
|
|
|
/obj/item/organ/internal/brain/zombie
|
|
relative_size = 100
|