Files
2025-01-24 17:53:28 +00:00

27 lines
1.1 KiB
Plaintext

//GS13 - implants and similar
/obj/item/organ/cyberimp/chest/nutriment/turbo
name = "Nutriment pump implant TURBO"
desc = "This implant was meant to prevent people from going hungry, but due to a flaw in its designs, it permanently produces a small amount of nutriment overtime."
icon_state = "chest_implant"
implant_color = "#006607"
nutrition_amount = 20 //Dunno if this is still needed. Will test.
hunger_threshold = NUTRITION_LEVEL_FULL
poison_amount = 10
message = "" //Why wasn't this ported over? Spam is a pain in the butt. Just shaddup already!
/obj/item/organ/cyberimp/chest/mobility
name = "Mobility Nanite Core"
desc = "This implant contains nanites that reinforce leg muscles, allowing for unimpeded movement at extreme weights."
icon_state = "chest_implant"
implant_color = "#9034db"
/obj/item/organ/cyberimp/chest/mobility/Insert(mob/living/carbon/M, special = 0, drop_if_replaced = TRUE)
..()
ADD_TRAIT(M, TRAIT_NO_FAT_SLOWDOWN, src)
/obj/item/organ/cyberimp/chest/mobility/Remove(special = FALSE)
var/mob/living/carbon/human/M = owner
REMOVE_TRAIT(M, TRAIT_NO_FAT_SLOWDOWN, src)
..()