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 f135c08227d335ad1d05b3abe1c2c85e05560d3b
parent f7c512fa438779031150dad5829c6b5d12598ef0
Auterice: Arthur Pons <arthur.pons@unistra.fr>
Date:   Wed, 19 Jun 2024 21:05:03 +0200

Ajout fonction pour choisir sa carte

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

diff --git a/utils b/utils @@ -241,3 +241,14 @@ _nextmove() { _execnextmove() { $tmpdir/executablenextmove } + +##### +# Interaction +##### + +choice() { + c=$(find fight/hand -type f | fzy) + $(echo "$c" | grep -q "defend") && { eval $c; return 0; } + t=$(find fight/ennemies -type l | fzy) + eval $c $t +}