I was wondering if it was possible to add a new death option. If you've played with the Tankentai Battle engine, it has a cool feature called 'Epic Boss Deaths'. The animation freeze the action, then flashes the screen a few times before having the bad guy slowly turn red and fade out with a wave effect on it.
I think this is the actual code:
CODE
def boss_collapse1
if @effect_duration == 320
Audio.se_play("Audio/SE/Absorb1", 100, 80)
self.flash(Color.new(255, 255, 255), 60)
viewport.flash(Color.new(255, 255, 255), 20)
end
if @effect_duration == 280
Audio.se_play("Audio/SE/Absorb1", 100, 80)
self.flash(Color.new(255, 255, 255), 60)
viewport.flash(Color.new(255, 255, 255), 20)
end # 3.4a removed battler reset out
if @effect_duration == 220
Audio.se_play("Audio/SE/Earth4", 100, 80)
self.blend_type = 1
self.color.set(255, 128, 128, 128)
self.wave_amp = 6
end
if @effect_duration < 220
self.src_rect.set(0, @effect_duration / 2 - 110, @width, @height)
self.x += 8 if @effect_duration % 4 == 0
self.x -= 8 if @effect_duration % 4 == 2
self.wave_amp += 1 if @effect_duration % 10 == 0
self.opacity = @effect_duration
return if @effect_duration < 50
Audio.se_play("Audio/SE/Earth4", 100, 50) if @effect_duration % 50 == 0
end
if @effect_duration == 0 # 3.4a
reset
end
end
I think this is also important as well.
CODE
def collapse_action
@non_repeat = true
@effect_type = COLLAPSE
@collapse_type = @battler.collapse_type unless @battler.actor?
@battler_visible = false unless @battler.actor?
@effect_duration = N01::COLLAPSE_WAIT + 48 if @collapse_type == 2
@effect_duration = 401 if @collapse_type == 3
end
But, it was a super cool effect and would be nice to see the epic boss deaths in the YEM.