コメントするには、ログインする必要があります。
if getTurnBattleResult() == getTurnBattleWin() #勝ったとき speak("戦闘に勝利して100円手に入れた") addMoney(100) elsif getTurnBattleResult() == getTurnBattleLose() #負けたとき speak("負けました・・・") elsif getTurnBattleResult() == getTurnBattleRunAway() #逃げたとき speak("逃げました") end
例