4
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
571 B

Scriptname _00E_FS_Affinity_ApparationWolfFormSC extends activemagiceffect
_FS_Phasmalist_ControlQuest Property ControlQuest auto
3 years ago
GlobalVariable Property _00E_Phasmalist_IsApparitionSummoned Auto
3 years ago
Actor Target
Event OnEffectStart(Actor akTarget, Actor akCaster)
3 years ago
Target = akTarget
ControlQuest.TransformApparitionToWerewolf(Target)
EndEvent
Event OnEffectFinish(Actor akTarget, Actor akCaster)
3 years ago
If _00E_Phasmalist_IsApparitionSummoned.GetValue() > 0.0 ; The apparition is not being unsummoned?
ControlQuest.TransformApparitionFromWerewolf(Target)
EndIf
EndEvent