Crear un nuevo script por encima de "Main" y pegar el siguiente código.
class Scene_Battle alias revive_battle_main main def main revive_battle_main for i in $game_party.actors if i.hp <= 0 i.hp = 1 end end end end