| This is the transcript of a script file, which runs certain tasks in the game upon execution. |
| Details | |
|---|---|
| Type | Decompiled script |
| Editor ID | CattleProdFatigueOnHitScript
|
| Form ID | 00171475 |
scn CattleProdFatigueOnHitScript
; Inflicts Fatigue damage on the target to temporarily knock it out.
; JES
Begin OnHit
Ref CattleProdTarget
Set CattleProdTarget to GetOwnerLastTarget
If (CattleProdTarget != PlayerRef)
CattleProdTarget.damageav Fatigue 50
Else
CattleProdTarget.damageav Health 20
EndIf
End