Refonte pour utiliser le systeme de GUI #112
2 changed files with 4 additions and 4 deletions
|
@ -15,17 +15,17 @@ function FleeAction:startAction()
|
|||
local stats = self.fighter.abstract.stats
|
||||
|
||||
if (self.fighter.abstract.name == "shadow") then
|
||||
self.fighter.turns.hud:showMessage("You won't flee the battle")
|
||||
self.fighter.turnSystem.scene:showMessage("You won't flee the battle")
|
||||
self:finishAction()
|
||||
return
|
||||
end
|
||||
|
||||
local chanceToFlee = self.fighter.turnSystem:getChanceTooFlee(self.fighter:getStat(STATS.SPEED))
|
||||
if (math.random(100) < chanceToFlee) then
|
||||
self.fighter.turnSystem.hud:showMessage("You flee the battle")
|
||||
self.fighter.turnSystem.scene:showMessage("You flee the battle")
|
||||
self.fighter.turnSystem:fleeBattle()
|
||||
else
|
||||
self.fighter.turnSystem.hud:showMessage("You failed to flee the battle")
|
||||
self.fighter.turnSystem.scene:showMessage("You failed to flee the battle")
|
||||
self:finishAction()
|
||||
end
|
||||
|
||||
|
|
|
@ -134,7 +134,7 @@ function widgets.SkillWidget:sendCharacterData()
|
|||
core.debug:warning("cbs/menu", "skill " .. self.skillname .. " doesn't exist")
|
||||
self.character:doNothing()
|
||||
self.assets.sfx["mError"]:play()
|
||||
self.scene.turns.hud:showMessage("You haven't enough PP!")
|
||||
self.scene:showMessage("You haven't enough PP!")
|
||||
end
|
||||
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue