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!" +