sts-term

Une version rudimentaire de Slay The Spire dans le terminal - retour accueil

git clone git://bebou.netlib.re/sts-term
Log | Files | Refs | README |

commit 1b92c3e1e8103250a43b2ff248c991a4637a141a
parent bf9e4fcf94eb5bb945217800dcae7227af62559a
Auterice: Arthur Pons <arthur.pons@unistra.fr>
Date:   Wed, 19 Jun 2024 20:07:01 +0200

Gestion de fin du tour

+ on prépare un premier move de l'ennemi en début de combat

Diffstat:
Mutils | 11+++++++----
1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/utils b/utils @@ -76,6 +76,7 @@ _makefight() { ln -rs -f player fight/player _newhand + _nextmove } _setstat() { @@ -155,10 +156,12 @@ _shufflediscard() { } endturn() { - find fight/hand -type f | - while read card;do - _discard $card - done + _setstat fight/ennemies/* block 0 + _execnextmove + _newhand + _setstat fight/player block 0 + _nextmove + echo "$(( $(cat fight/turn) + 1 ))" > fight/turn } _draw() {