mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-05 07:02:36 +00:00
341 lines
11 KiB
Plaintext
341 lines
11 KiB
Plaintext
#define STUN_SET_AMOUNT 2
|
|
|
|
/obj/item/organ/internal/cyberimp
|
|
name = "cybernetic implant"
|
|
desc = "a state-of-the-art implant that improves a baseline's functionality"
|
|
status = ORGAN_ROBOT
|
|
var/implant_color = "#FFFFFF"
|
|
var/implant_overlay
|
|
tough = TRUE // Immune to damage
|
|
|
|
/obj/item/organ/internal/cyberimp/New(var/mob/M = null)
|
|
. = ..()
|
|
if(implant_overlay)
|
|
var/image/overlay = new /image(icon, implant_overlay)
|
|
overlay.color = implant_color
|
|
overlays |= overlay
|
|
|
|
/obj/item/organ/internal/cyberimp/emp_act()
|
|
return // These shouldn't be hurt by EMPs in the standard way
|
|
|
|
//[[[[BRAIN]]]]
|
|
|
|
/obj/item/organ/internal/cyberimp/brain
|
|
name = "cybernetic brain implant"
|
|
desc = "injectors of extra sub-routines for the brain"
|
|
icon_state = "brain_implant"
|
|
implant_overlay = "brain_implant_overlay"
|
|
parent_organ = "head"
|
|
|
|
/obj/item/organ/internal/cyberimp/brain/emp_act(severity)
|
|
if(!owner || emp_proof)
|
|
return
|
|
var/stun_amount = 5 + (severity-1 ? 0 : 5)
|
|
owner.Stun(stun_amount)
|
|
to_chat(owner, "<span class='warning'>Your body seizes up!</span>")
|
|
return stun_amount
|
|
|
|
|
|
/obj/item/organ/internal/cyberimp/brain/anti_drop
|
|
name = "Anti-drop implant"
|
|
desc = "This cybernetic brain implant will allow you to force your hand muscles to contract, preventing item dropping. Twitch ear to toggle."
|
|
var/active = 0
|
|
var/l_hand_ignore = 0
|
|
var/r_hand_ignore = 0
|
|
var/obj/item/l_hand_obj = null
|
|
var/obj/item/r_hand_obj = null
|
|
implant_color = "#DE7E00"
|
|
slot = "brain_antidrop"
|
|
origin_tech = "materials=4;programming=5;biotech=4"
|
|
actions_types = list(/datum/action/item_action/organ_action/toggle)
|
|
|
|
/obj/item/organ/internal/cyberimp/brain/anti_drop/ui_action_click()
|
|
active = !active
|
|
if(active)
|
|
l_hand_obj = owner.l_hand
|
|
r_hand_obj = owner.r_hand
|
|
if(l_hand_obj)
|
|
if(owner.l_hand.flags & NODROP)
|
|
l_hand_ignore = 1
|
|
else
|
|
owner.l_hand.flags |= NODROP
|
|
l_hand_ignore = 0
|
|
|
|
if(r_hand_obj)
|
|
if(owner.r_hand.flags & NODROP)
|
|
r_hand_ignore = 1
|
|
else
|
|
owner.r_hand.flags |= NODROP
|
|
r_hand_ignore = 0
|
|
|
|
if(!l_hand_obj && !r_hand_obj)
|
|
to_chat(owner, "<span class='notice'>You are not holding any items, your hands relax...</span>")
|
|
active = 0
|
|
else
|
|
var/msg = 0
|
|
msg += !l_hand_ignore && l_hand_obj ? 1 : 0
|
|
msg += !r_hand_ignore && r_hand_obj ? 2 : 0
|
|
switch(msg)
|
|
if(1)
|
|
to_chat(owner, "<span class='notice'>Your left hand's grip tightens.</span>")
|
|
if(2)
|
|
to_chat(owner, "<span class='notice'>Your right hand's grip tightens.</span>")
|
|
if(3)
|
|
to_chat(owner, "<span class='notice'>Both of your hand's grips tighten.</span>")
|
|
else
|
|
release_items()
|
|
to_chat(owner, "<span class='notice'>Your hands relax...</span>")
|
|
l_hand_obj = null
|
|
r_hand_obj = null
|
|
|
|
/obj/item/organ/internal/cyberimp/brain/anti_drop/emp_act(severity)
|
|
if(!owner || emp_proof)
|
|
return
|
|
var/range = severity ? 10 : 5
|
|
var/atom/A
|
|
var/obj/item/L_item = owner.l_hand
|
|
var/obj/item/R_item = owner.r_hand
|
|
|
|
release_items()
|
|
..()
|
|
if(L_item)
|
|
A = pick(oview(range))
|
|
L_item.throw_at(A, range, 2)
|
|
to_chat(owner, "<span class='notice'>Your left arm spasms and throws the [L_item.name]!</span>")
|
|
if(R_item)
|
|
A = pick(oview(range))
|
|
R_item.throw_at(A, range, 2)
|
|
to_chat(owner, "<span class='notice'>Your right arm spasms and throws the [R_item.name]!</span>")
|
|
|
|
/obj/item/organ/internal/cyberimp/brain/anti_drop/proc/release_items()
|
|
if(!l_hand_ignore && l_hand_obj in owner.contents)
|
|
l_hand_obj.flags ^= NODROP
|
|
if(!r_hand_ignore && r_hand_obj in owner.contents)
|
|
r_hand_obj.flags ^= NODROP
|
|
|
|
/obj/item/organ/internal/cyberimp/brain/anti_drop/remove(var/mob/living/carbon/M, special = 0)
|
|
. = ..()
|
|
if(active)
|
|
ui_action_click()
|
|
|
|
|
|
/obj/item/organ/internal/cyberimp/brain/anti_stun
|
|
name = "CNS Rebooter implant"
|
|
desc = "This implant will automatically give you back control over your central nervous system, reducing downtime when stunned."
|
|
implant_color = "#FFFF00"
|
|
slot = "brain_antistun"
|
|
origin_tech = "materials=5;programming=4;biotech=5"
|
|
|
|
/obj/item/organ/internal/cyberimp/brain/anti_stun/on_life()
|
|
..()
|
|
if(crit_fail)
|
|
return
|
|
if(owner.stunned > STUN_SET_AMOUNT)
|
|
owner.SetStunned(STUN_SET_AMOUNT)
|
|
if(owner.weakened > STUN_SET_AMOUNT)
|
|
owner.SetWeakened(STUN_SET_AMOUNT)
|
|
|
|
/obj/item/organ/internal/cyberimp/brain/anti_stun/emp_act(severity)
|
|
if(crit_fail || emp_proof)
|
|
return
|
|
crit_fail = 1
|
|
spawn(90 / severity)
|
|
crit_fail = 0
|
|
|
|
/obj/item/organ/internal/cyberimp/brain/clown_voice
|
|
name = "Comical implant"
|
|
desc = "<span class='sans'>Uh oh.</span>"
|
|
implant_color = "#DEDE00"
|
|
slot = "brain_clownvoice"
|
|
origin_tech = "materials=2;biotech=2"
|
|
|
|
/obj/item/organ/internal/cyberimp/brain/speech_translator //actual translating done in human/handle_speech_problems
|
|
name = "Speech translator implant"
|
|
desc = "While known as a translator, this implant actually generates speech based on the user's thoughts when activated, completely bypassing the need to speak."
|
|
implant_color = "#C0C0C0"
|
|
slot = "brain_speechtranslator"
|
|
w_class = WEIGHT_CLASS_TINY
|
|
origin_tech = "materials=4;biotech=6"
|
|
actions_types = list(/datum/action/item_action/organ_action/toggle)
|
|
var/active = TRUE
|
|
var/speech_span = ""
|
|
var/speech_verb = "states"
|
|
|
|
/obj/item/organ/internal/cyberimp/brain/speech_translator/clown
|
|
name = "Comical speech translator implant"
|
|
implant_color = "#DEDE00"
|
|
speech_span = "sans"
|
|
|
|
/obj/item/organ/internal/cyberimp/brain/speech_translator/emp_act(severity)
|
|
if(emp_proof)
|
|
return
|
|
if(owner && active)
|
|
to_chat(owner, "<span class='notice'>Your translator's safeties trigger, it is now turned off.</span>")
|
|
active = FALSE
|
|
|
|
/obj/item/organ/internal/cyberimp/brain/speech_translator/ui_action_click()
|
|
if(owner && !active)
|
|
to_chat(owner, "<span class='notice'>You turn on your translator implant.</span>")
|
|
active = TRUE
|
|
else if(owner && active)
|
|
to_chat(owner, "<span class='notice'>You turn off your translator implant.</span>")
|
|
active = FALSE
|
|
|
|
//[[[[MOUTH]]]]
|
|
/obj/item/organ/internal/cyberimp/mouth
|
|
parent_organ = "mouth"
|
|
|
|
/obj/item/organ/internal/cyberimp/mouth/breathing_tube
|
|
name = "breathing tube implant"
|
|
desc = "This simple implant adds an internals connector to your back, allowing you to use internals without a mask and protecting you from being choked."
|
|
icon_state = "implant_mask"
|
|
slot = "breathing_tube"
|
|
w_class = WEIGHT_CLASS_TINY
|
|
origin_tech = "materials=2;biotech=3"
|
|
|
|
/obj/item/organ/internal/cyberimp/mouth/breathing_tube/emp_act(severity)
|
|
if(emp_proof)
|
|
return
|
|
if(prob(60/severity) && owner)
|
|
to_chat(owner, "<span class='warning'>Your breathing tube suddenly closes!</span>")
|
|
owner.AdjustLoseBreath(2)
|
|
|
|
//[[[[CHEST]]]]
|
|
/obj/item/organ/internal/cyberimp/chest
|
|
name = "cybernetic torso implant"
|
|
desc = "implants for the organs in your torso"
|
|
icon_state = "chest_implant"
|
|
implant_overlay = "chest_implant_overlay"
|
|
parent_organ = "chest"
|
|
|
|
/obj/item/organ/internal/cyberimp/chest/nutriment
|
|
name = "Nutriment pump implant"
|
|
desc = "This implant with synthesize and pump into your bloodstream a small amount of nutriment when you are starving."
|
|
icon_state = "chest_implant"
|
|
implant_color = "#00AA00"
|
|
var/hunger_threshold = NUTRITION_LEVEL_STARVING
|
|
var/synthesizing = 0
|
|
var/poison_amount = 5
|
|
slot = "stomach"
|
|
origin_tech = "materials=2;powerstorage=2;biotech=2"
|
|
|
|
/obj/item/organ/internal/cyberimp/chest/nutriment/on_life()
|
|
if(!owner)
|
|
return
|
|
if(synthesizing)
|
|
return
|
|
if(owner.stat == DEAD)
|
|
return
|
|
if(owner.nutrition <= hunger_threshold)
|
|
synthesizing = 1
|
|
to_chat(owner, "<span class='notice'>You feel less hungry...</span>")
|
|
owner.nutrition += 50
|
|
spawn(50)
|
|
synthesizing = 0
|
|
|
|
/obj/item/organ/internal/cyberimp/chest/nutriment/emp_act(severity)
|
|
if(!owner || emp_proof)
|
|
return
|
|
owner.reagents.add_reagent("????",poison_amount / severity) //food poisoning
|
|
to_chat(owner, "<span class='warning'>You feel like your insides are burning.</span>")
|
|
|
|
/obj/item/organ/internal/cyberimp/chest/nutriment/plus
|
|
name = "Nutriment pump implant PLUS"
|
|
desc = "This implant will synthesize and pump into your bloodstream a small amount of nutriment when you are hungry."
|
|
icon_state = "chest_implant"
|
|
implant_color = "#006607"
|
|
hunger_threshold = NUTRITION_LEVEL_HUNGRY
|
|
poison_amount = 10
|
|
origin_tech = "materials=4;powerstorage=3;biotech=3"
|
|
|
|
/obj/item/organ/internal/cyberimp/chest/reviver
|
|
name = "Reviver implant"
|
|
desc = "This implant will attempt to revive you if you lose consciousness. For the faint of heart!"
|
|
icon_state = "chest_implant"
|
|
implant_color = "#AD0000"
|
|
origin_tech = "materials=5;programming=4;biotech=4"
|
|
slot = "heartdrive"
|
|
var/revive_cost = 0
|
|
var/reviving = FALSE
|
|
var/cooldown = 0
|
|
|
|
/obj/item/organ/internal/cyberimp/chest/reviver/hardened
|
|
name = "Hardened reviver implant"
|
|
emp_proof = TRUE
|
|
|
|
/obj/item/organ/internal/cyberimp/chest/reviver/hardened/Initialize(mapload)
|
|
. = ..()
|
|
desc += " The implant has been hardened. It is invulnerable to EMPs."
|
|
|
|
/obj/item/organ/internal/cyberimp/chest/reviver/on_life()
|
|
if(reviving)
|
|
if(owner.stat == UNCONSCIOUS && (owner.sleeping == 0)) //!owner.sleeping didn't work for whatever dumb reason
|
|
spawn(30)
|
|
if(prob(90) && owner.getOxyLoss())
|
|
owner.adjustOxyLoss(-3)
|
|
revive_cost += 5
|
|
if(prob(75) && owner.getBruteLoss())
|
|
owner.adjustBruteLoss(-1)
|
|
revive_cost += 20
|
|
if(prob(75) && owner.getFireLoss())
|
|
owner.adjustFireLoss(-1)
|
|
revive_cost += 20
|
|
if(prob(40) && owner.getToxLoss())
|
|
owner.adjustToxLoss(-1)
|
|
revive_cost += 50
|
|
else
|
|
cooldown = revive_cost + world.time
|
|
reviving = 0
|
|
return
|
|
if(cooldown > world.time)
|
|
return
|
|
if(owner.stat != UNCONSCIOUS)
|
|
return
|
|
if(owner.suiciding)
|
|
return
|
|
revive_cost = 0
|
|
reviving = 1
|
|
|
|
/obj/item/organ/internal/cyberimp/chest/reviver/emp_act(severity)
|
|
if(!owner || emp_proof)
|
|
return
|
|
if(reviving)
|
|
revive_cost += 200
|
|
else
|
|
cooldown += 200
|
|
if(ishuman(owner))
|
|
var/mob/living/carbon/human/H = owner
|
|
if(H.stat != DEAD && prob(50 / severity))
|
|
H.set_heartattack(TRUE)
|
|
spawn(600 / severity)
|
|
H.set_heartattack(FALSE)
|
|
if(H.stat == CONSCIOUS)
|
|
to_chat(H, "<span class='notice'>You feel your heart beating again!</span>")
|
|
|
|
//BOX O' IMPLANTS
|
|
|
|
/obj/item/storage/box/cyber_implants
|
|
name = "boxed cybernetic implant"
|
|
desc = "A sleek, sturdy box."
|
|
icon_state = "cyber_implants"
|
|
|
|
/obj/item/storage/box/cyber_implants/New(loc, implant)
|
|
..()
|
|
new /obj/item/autoimplanter(src)
|
|
if(ispath(implant))
|
|
new implant(src)
|
|
|
|
/obj/item/storage/box/cyber_implants/bundle
|
|
name = "boxed cybernetic implants"
|
|
var/list/boxed = list(/obj/item/organ/internal/cyberimp/eyes/xray,/obj/item/organ/internal/cyberimp/eyes/thermals,
|
|
/obj/item/organ/internal/cyberimp/brain/anti_stun, /obj/item/organ/internal/cyberimp/chest/reviver/hardened)
|
|
var/amount = 5
|
|
|
|
/obj/item/storage/box/cyber_implants/bundle/New()
|
|
..()
|
|
var/implant
|
|
while(amount > 0)
|
|
implant = pick(boxed)
|
|
new implant(src)
|
|
amount--
|