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:
Alberyk
2017-09-12 10:45:19 -05:00
committed by Lohikar
parent 40cef7da81
commit e56f459a71
3 changed files with 15 additions and 1 deletions
@@ -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
+6
View File
@@ -0,0 +1,6 @@
author: Alberyk
delete-after: True
changes:
- tweak: "You can now only use transformation sting on bodies."