Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Woman : Actor
- {
- Default
- {
- Monster;
- Obituary "%o was murdered by UMP-45 Woman";
- Health 100;
- Radius 50;
- Height 65;
- XScale 0.45;
- YScale 0.45;
- Speed 8;
- PainChance 200;
- +FLOORCLIP
- SeeSound "grunt/sight";
- AttackSound "grunt/attack";
- PainSound "grunt/pain";
- DeathSound "grunt/death";
- ActiveSound "grunt/active";
- Tag "$Woman";
- DropItem "Clip";
- }
- States
- {
- Spawn:
- SHF3 AB 10 A_Look;
- Loop;
- See:
- SHF3 AABBCCDD 4 A_Chase;
- Loop;
- Missile:
- SHF3 E 10 A_FaceTarget;
- SHF3 F 8 A_PosAttack;
- SHF3 E 8;
- Goto See;
- Pain:
- SHF3 G 3;
- SHF3 G 3 A_Pain;
- Goto See;
- Death:
- SHF3 J 3;
- SHF3 K 3;
- SHF3 L 3;
- SHF3 M 3;
- SHF3 N 3;
- SHF3 O 3;
- SHF3 P 3;
- SHF3 Q -1;
- Stop;
- XDeath:
- SHF3 M 5;
- SHF3 N 5 A_XScream;
- SHF3 O 5 A_NoBlocking;
- SHF3 PQRST 5;
- SHF3 U -1;
- Stop;
- Raise:
- SHF3 K 5;
- SHF3 JIH 5;
- Goto See;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement