def display_battle_end_message#显示战斗结束消息
    if @efs_after_battle_level == 10
    $game_switches[51] = true #true  
    Notification.post("51号开关已经打开")
    end  
    if @efs_after_battle_level == 9
    $game_switches[52] = true 
    Notification.post("52号开关已经打开")
    end   
    if @efs_after_battle_level == 8
    $game_switches[53] = true  
    Notification.post("53号开关已经打开")
    end
    if @efs_after_battle_level == 7
    $game_switches[54] = true  
    Notification.post("54号开关已经打开")
    end
    if @efs_after_battle_level == 6
    $game_switches[55] = true  
    Notification.post("55号开关已经打开")
    end
      if @efs_after_battle_level == 5
    $game_switches[56] = true  
    Notification.post("56号开关已经打开")
    end
      if @efs_after_battle_level == 4
    $game_switches[57] = true  
    Notification.post("57号开关已经打开")
    end
      if @efs_after_battle_level == 3
    $game_switches[58] = true  
    Notification.post("58号开关已经打开")
    end  
     if @efs_after_battle_level == 2
    $game_switches[59] = true  
    Notification.post("59号开关已经打开")
    end
    if @efs_after_battle_level == 1
    $game_switches[60] = true  
    Notification.post("60号开关已经打开")
    end 
    if @efs_after_battle_level == 0
    $game_switches[61] = true  
    Notification.post("61号开关已经打开")
    end 
 
    if @efs_victory
      Notification.post("战斗胜利... 按下Tab键返回")
      #$game_system.me_play($game_system.battle_end_me)
    elsif @efs_all_dead
      Notification.post("战斗失败... 按下Tab键返回")
      #$game_system.me_play($data_system.gameover_me)
    else
      Notification.post("全军撤退... 按下Tab键返回")
       #$game_system.se_play($game_system.escape_se)
    end  
  end