mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 02:09:41 +00:00
62 lines
2.5 KiB
Plaintext
62 lines
2.5 KiB
Plaintext
/obj/item/stack/nanopaste
|
|
name = "nanopaste"
|
|
singular_name = "nanite swarm"
|
|
desc = "A tube of paste containing swarms of repair nanites. Very effective in repairing robotic machinery."
|
|
icon = 'icons/obj/stacks_vr.dmi'
|
|
icon_state = "nanopaste"
|
|
origin_tech = list(TECH_MATERIAL = 4, TECH_ENGINEERING = 3)
|
|
amount = 10
|
|
max_amount = 10
|
|
toolspeed = 0.75 //Used in surgery, shouldn't be the same speed as a normal screwdriver on mechanical organ repair.
|
|
w_class = ITEMSIZE_SMALL
|
|
no_variants = FALSE
|
|
|
|
/obj/item/stack/nanopaste/attack(mob/living/M as mob, mob/user as mob)
|
|
if (!istype(M) || !istype(user))
|
|
return 0
|
|
if (istype(M,/mob/living/silicon/robot)) //Repairing cyborgs
|
|
var/mob/living/silicon/robot/R = M
|
|
if (R.getBruteLoss() || R.getFireLoss())
|
|
if(do_after(user, 7 * toolspeed, R))
|
|
R.adjustBruteLoss(-15)
|
|
R.adjustFireLoss(-15)
|
|
R.updatehealth()
|
|
use(1)
|
|
user.balloon_alert_visible("\the [user] applied some [src] on [R]'s damaged areas.",\
|
|
"you apply some [src] at [R]'s damaged areas.")
|
|
else
|
|
balloon_alert(user, "all [R]'s systems are nominal.")
|
|
|
|
if (ishuman(M)) //Repairing robolimbs
|
|
var/mob/living/carbon/human/H = M
|
|
var/obj/item/organ/external/S = H.get_organ(user.zone_sel.selecting)
|
|
if(!S)
|
|
balloon_alert(user, "no body part there to work on!")
|
|
return 1
|
|
|
|
if(S.organ_tag == BP_HEAD)
|
|
if(H.head && istype(H.head,/obj/item/clothing/head/helmet/space))
|
|
balloon_alert(user, "you can't apply [src] through [H.head]!")
|
|
return 1
|
|
else
|
|
if(H.wear_suit && istype(H.wear_suit,/obj/item/clothing/suit/space))
|
|
balloon_alert(user, "you can't apply [src] through [H.wear_suit]!")
|
|
return 1
|
|
|
|
if (S && (S.robotic >= ORGAN_ROBOT))
|
|
if(!S.get_damage())
|
|
balloon_alert(user, "nothing to fix here.")
|
|
else if((S.open < 2) && (S.brute_dam + S.burn_dam >= S.min_broken_damage) && !repair_external)
|
|
balloon_alert(user, "the damage is too extensive for this nanite swarm to handle.")
|
|
else if(can_use(1))
|
|
user.setClickCooldown(user.get_attack_speed(src))
|
|
if(S.open >= 2)
|
|
if(do_after(user, 5 * toolspeed, S))
|
|
S.heal_damage(restoration_internal, restoration_internal, robo_repair = 1)
|
|
else if(do_after(user, 5 * toolspeed, S))
|
|
S.heal_damage(restoration_external,restoration_external, robo_repair =1)
|
|
H.updatehealth()
|
|
use(1)
|
|
user.balloon_alert_visible("\the [user] applies some nanite paste on [user != M ? "[M]'s [S.name]" : "[S]"] with [src].",\
|
|
"you apply some nanite paste on [user == M ? "your" : "[M]'s"] [S.name].")
|