ACTOR Sawcubus 22064
{ 
    Health 120 
    Radius 20 
    Height 60 
    Speed 13 
    MeleeDamage 7 
    PainChance 200 
    MONSTER 
    +FLOORCLIP 
    Obituary "%o was sliced open by a Sawcubus" 
    SeeSound "sawcubus/sight" 
    MeleeSound "weapons/sawhit" 
    PainSound "sawcubus/pain" 
    DeathSound "sawcubus/death" 
    ActiveSound "sawcubus/active" 
    DropItem Chainsaw 
    States 
    { 
    Spawn: 
        SWCB A 4 A_Look 
        SWCB A 4 A_PlayWeaponSound("weapons/sawidle") 
        SWCB A 4 A_Look 
        SWCB B 4 A_PlayWeaponSound("weapons/sawidle") 
        SWCB B 4 A_Look 
        SWCB B 4 A_PlayWeaponSound("weapons/sawidle") 
        Loop 
    See: 
        SWCB A 4 A_Chase 
        SWCB A 4 A_Chase 
        SWCB B 0 A_PlayWeaponSound("weapons/sawidle") 
        SWCB B 4 A_Chase 
        SWCB B 4 A_Chase 
        SWCB C 0 A_PlayWeaponSound("weapons/sawidle") 
        SWCB C 4 A_Chase 
        SWCB C 4 A_Chase 
        SWCB D 0 A_PlayWeaponSound("weapons/sawidle") 
        SWCB D 4 A_Chase 
        SWCB D 4 A_Chase 
        SWCB A 0 A_PlayWeaponSound("weapons/sawidle") 
        Loop 
    Melee: 
        SWCB E 1 A_FaceTarget 
        SWCB F 3 A_MeleeAttack 
        Goto See 
    Pain: 
        SWCB G 5 
        SWCB G 3 A_Pain 
        Goto See 
    Death: 
        SWCB H 5 
        SWCB I 5 A_Scream 
        SWCB J 5 A_Fall 
        SWCB KL 5 
        SWCB L -1 
        Stop 
    Raise: 
        SWCB LKJIH 5 
        Goto See 
    } 
}