Gustavo6046

ZDoom Decorate #3

Dec 8th, 2015
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. actor MonsterActor
  2. {
  3. Health 100
  4. Radius 10
  5. Height 20
  6. Monster
  7. }
  8.  
  9. actor Mice : MonsterActor
  10. {
  11. Health 21
  12. Radius 6
  13. Height 3
  14. DeathSound "mice/death"
  15. PainSound "mice/pain"
  16. States
  17. {
  18. Spawn:
  19. RATZ AB 6 A_Look
  20. loop
  21. See:
  22. RATZ A 3 A_Wander
  23. RATZ A 3 A_Wander
  24. RATZ B 3 A_Wander
  25. RATZ B 3 A_Wander
  26. loop
  27. Melee:
  28. goto See
  29. Pain:
  30. RATZ C 6 Bright A_Pain
  31. goto See
  32. Death:
  33. RATZ C 7 A_NoBlocking
  34. RATZ D 7 A_Scream
  35. RATZ E 1
  36. stop
  37. }
  38. }
Advertisement
Add Comment
Please, Sign In to add comment