From bca09cf3ceba5b8501317e7dcca5f919df5526a9 Mon Sep 17 00:00:00 2001 From: 1080pCat <96908085+1080pCat@users.noreply.github.com> Date: Thu, 31 Jul 2025 20:00:28 +1000 Subject: [PATCH] Alien hand 'spells' are no longer magical (#29826) --- code/datums/spells/alien_spells/basetype_alien_touch.dm | 3 +++ code/datums/spells/alien_spells/corrosive_acid_spit.dm | 7 +++++++ 2 files changed, 10 insertions(+) diff --git a/code/datums/spells/alien_spells/basetype_alien_touch.dm b/code/datums/spells/alien_spells/basetype_alien_touch.dm index f979b2af6ba..a035affec2d 100644 --- a/code/datums/spells/alien_spells/basetype_alien_touch.dm +++ b/code/datums/spells/alien_spells/basetype_alien_touch.dm @@ -42,6 +42,9 @@ /// Beepsky shouldn't be arresting you over this needs_permit = FALSE +/obj/item/melee/touch_attack/alien/customised_abstract_text() + return + /obj/item/melee/touch_attack/alien/proc/plasma_check(plasma, mob/living/carbon/user) var/plasma_current = user.get_plasma() if(plasma_current < plasma) diff --git a/code/datums/spells/alien_spells/corrosive_acid_spit.dm b/code/datums/spells/alien_spells/corrosive_acid_spit.dm index a8764c6c15d..ce92020b280 100644 --- a/code/datums/spells/alien_spells/corrosive_acid_spit.dm +++ b/code/datums/spells/alien_spells/corrosive_acid_spit.dm @@ -33,6 +33,9 @@ to_chat(C, "You cannot dissolve this object.") handle_delete(user) +/obj/item/melee/touch_attack/alien/corrosive_acid/customised_abstract_text(mob/living/carbon/owner) + return "[owner.p_their(TRUE)] [owner.l_hand == src ? "left hand" : "right hand"] is dripping with vile corrosive goo!" + /datum/spell/touch/alien_spell/burning_touch name = "Blazing touch" desc = "Boil acid within your hand to burn through anything you touch with it, dealing a lot of damage to aliens and destroying resin structures instantly." @@ -74,3 +77,7 @@ C.add_plasma(-100) qdel(target) handle_delete(user) + +/obj/item/melee/touch_attack/alien/burning_touch/customised_abstract_text(mob/living/carbon/owner) + return "[owner.p_their(TRUE)] [owner.l_hand == src ? "left hand" : "right hand"] has a shimmering mirage around it!" +