Advertisement
Guest User

Untitled

a guest
May 8th, 2022
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. actor ZBossBrain: BossBrain replaces BossBrain
  2. {
  3. Health 250
  4. Radius 1
  5. Height 64
  6. Mass 10000000
  7. PainChance 255
  8. +SOLID
  9. +SHOOTABLE
  10. +NOICEDEATH
  11. +OLDRADIUSDMG
  12. PainSound "brain/pain"
  13. DeathSound "brain/death"
  14. States
  15. {
  16. BrainExplode:
  17. MISL BC 10 Bright
  18. MISL D 10 A_BrainExplode
  19. Stop
  20. Spawn:
  21. BBRN A -1
  22. Stop
  23. Pain:
  24. BBRN B 36 A_BrainPain
  25. Goto Spawn
  26. Death:
  27. BBRN A 100 A_BrainScream
  28. BBRN AA 10
  29. BBRN A -1 A_BrainDie
  30. Stop
  31. }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement