Advertisement
Guest User

decorate

a guest
Jul 16th, 2017
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. actor Brainiac 32766
  2. {
  3. Obituary "%o was killed by the Brainiac!."
  4. Health 300
  5. Radius 20
  6. Height 56
  7. Mass 100
  8. Speed 8
  9. PainChance 200
  10. SeeSound "OYEAHBB"
  11. AttackSound "OYEAHBB"
  12. PainSound "OYEAHBB"
  13. DeathSound "OYEAHBB"
  14. ActiveSound "OYEAHBB"
  15. DropItem "Clip" 256
  16. Monster
  17. +FLOORCLIP
  18. states
  19. {
  20. Spawn:
  21. BIRN A 1 a_look
  22. loop
  23. See:
  24. BIRN A 1 A_Chase
  25. loop
  26. Missile:
  27. BIRN A 1 A_FaceTarget
  28. BIRN A 1 A_PosAttack
  29. Goto See
  30. Pain:
  31. BIRN A 1 A_Pain
  32. goto See
  33. Death:
  34. BIRN A 1
  35. stop
  36. }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement