From 8117fc7a0c3e43626cf304b30dc21e0dfa201338 Mon Sep 17 00:00:00 2001 From: OliverOtter <153337321+OliverOtter@users.noreply.github.com> Date: Mon, 6 May 2024 14:41:35 -0500 Subject: [PATCH 1/2] Bipedal Negative quirk --- code/datums/quirks/negative_quirks.dm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/code/datums/quirks/negative_quirks.dm b/code/datums/quirks/negative_quirks.dm index 08393519a5dc..93e8b1f3c9e3 100644 --- a/code/datums/quirks/negative_quirks.dm +++ b/code/datums/quirks/negative_quirks.dm @@ -618,6 +618,25 @@ to_chat(quirk_holder, span_boldannounce("All your limbs have been replaced with surplus prosthetics. They are fragile and will easily come apart under duress. Additionally, \ you need to use a welding tool and cables to repair them, instead of bruise packs and ointment.")) + /datum/quirk/bipedal_amputee + name = "bipedal Amputee" + desc = "Your old legs dont work anymore, so youve gotten some new ones! They're kinda cheap though..." + icon = "tg-prosthetic-leg" + value = -5 + medical_record_text = "During physical examination, patient was found to have only leg prosthetic limbs." + hardcore_value = 5 + quirk_flags = QUIRK_HUMAN_ONLY|QUIRK_CHANGES_APPEARANCE + +/datum/quirk/bipedal_amputee/add_unique(client/client_source) + var/mob/living/carbon/human/human_holder = quirk_holder + human_holder.del_and_replace_bodypart(new /obj/item/bodypart/leg/left/robot/surplus) + human_holder.del_and_replace_bodypart(new /obj/item/bodypart/leg/right/robot/surplus) + +/datum/quirk/bipedal_amputee/post_add() + to_chat(quirk_holder, span_boldannounce("Your legs have been replaced with surplus prosthetics. They are fragile and will easily come apart under duress. Additionally, \ + you need to use a welding tool and cables to repair them, instead of bruise packs and ointment.")) + + /datum/quirk/pushover name = "Pushover" desc = "Your first instinct is always to let people push you around. Resisting out of grabs will take conscious effort." From f180685fd09da6529a8e3bbac861a544583b7130 Mon Sep 17 00:00:00 2001 From: OliverOtter <153337321+OliverOtter@users.noreply.github.com> Date: Tue, 7 May 2024 17:42:29 -0500 Subject: [PATCH 2/2] Update negative_quirks.dm --- code/datums/quirks/negative_quirks.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/quirks/negative_quirks.dm b/code/datums/quirks/negative_quirks.dm index 93e8b1f3c9e3..71d00c7b20cf 100644 --- a/code/datums/quirks/negative_quirks.dm +++ b/code/datums/quirks/negative_quirks.dm @@ -619,7 +619,7 @@ you need to use a welding tool and cables to repair them, instead of bruise packs and ointment.")) /datum/quirk/bipedal_amputee - name = "bipedal Amputee" + name = "Bipedal Amputee" desc = "Your old legs dont work anymore, so youve gotten some new ones! They're kinda cheap though..." icon = "tg-prosthetic-leg" value = -5