actor Explosion_Spawner_Yellow
{
  +NOGRAVITY
  States
  {   
    Spawn:
	TNT1 AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 0 A_SpawnItemEx("Ash", random(-16, 16), random(-16, 16), 
	random(-16, 16), 0,0,0, 0, 128, 0)    
	TNT1 AAAAAAAA 0 bright A_SpawnItemEx("Explosion_YellowPart", random(-32, 32), random(-32, 32), random(-32, 32), 0,0,0, 0, 128, 0)
    stop
  }
}

actor Explosion_YellowPart
{
  alpha 1
  scale 3
  renderstyle add
  +NOBLOCKMAP
  +NOTELEPORT
  +NOGRAVITY
  States
  {
	Spawn:
  		PART F 1 A_FadeOut(0.03)
  	Loop
  }
}
