mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-24 21:40:55 +01:00
Transformation sting changes (#3411)
- transformation sting can't be used on monkeys and etc anymore - transformation sting can only be used on dead targets now
This commit is contained in:
@@ -802,6 +802,14 @@ var/list/datum/absorbed_dna/hivemind_bank = list()
|
||||
src << "<span class='warning'>Our sting appears ineffective against its DNA.</span>"
|
||||
return 0
|
||||
|
||||
if(islesserform(T))
|
||||
src << "<span class='warning'>Our sting appears ineffective against this creature.</span>"
|
||||
return 0
|
||||
|
||||
if(T.stat != DEAD)
|
||||
src << "<span class='warning'>Our sting can only be used against dead targets.</span>"
|
||||
return 0
|
||||
|
||||
T.handle_changeling_transform(chosen_dna)
|
||||
|
||||
feedback_add_details("changeling_powers","TS")
|
||||
|
||||
@@ -95,7 +95,7 @@ var/list/datum/power/changeling/powerinstances = list()
|
||||
|
||||
/datum/power/changeling/transformation_sting
|
||||
name = "Transformation Sting"
|
||||
desc = "We silently sting a human, injecting a retrovirus that forces them to transform into another."
|
||||
desc = "We silently sting a dead human, injecting a retrovirus that forces them to transform into another."
|
||||
helptext = "Does not provide a warning to others. The victim will transform much like a changeling would."
|
||||
genomecost = 3
|
||||
verbpath = /mob/proc/changeling_transformation_sting
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
author: Alberyk
|
||||
|
||||
delete-after: True
|
||||
|
||||
changes:
|
||||
- tweak: "You can now only use transformation sting on bodies."
|
||||
Reference in New Issue
Block a user