ashvampire
Morrowind.esm
Source
1begin ashvampire
2
3;on each ash vampire; when each ash vampire dies, Dagoth Ur is weakened
4;based on Dagoth Ur base stats: Strength, Willpower, Speed = 100;
5;Health, Fatigue = 1000
6;Magica = 5000
7
8;when Dagoth-Ur dies, the ashvampires also die
9
10if ( GetJournalIndex c3_DestroyDagoth >= 50 )
11 if ( GetHealth > 0 )
12 SetHealth 0
13 endif
14 Return
15endif
16
17if ( OnDeath == 0 )
18 Return
19endif
20
21"dagoth_ur_1"->modStrength -5
22"dagoth_ur_2"->modStrength -5
23"dagoth_ur_1"->modWillpower -5
24"dagoth_ur_2"->modWillpower -5
25"dagoth_ur_1"->modSpeed -5
26"dagoth_ur_2"->modSpeed -5
27"dagoth_ur_1"->modHealth -50
28"dagoth_ur_2"->modHealth -50
29"dagoth_ur_1"->modFatigue -50
30"dagoth_ur_2"->modFatigue -50
31"dagoth_ur_1"->modMagicka -250
32"dagoth_ur_2"->modMagicka -250
33
34End ashvampire