Refonte pour utiliser le systeme de GUI #112

Merged
kazhnuz merged 102 commits from feat/gui into master 2022-01-06 19:15:16 +01:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit bd2ec708a3 - Show all commits

View file

@ -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

View file

@ -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