From 25230073d61a3ce502e266cf27bc994375363604 Mon Sep 17 00:00:00 2001 From: Auric Vente Date: Sun, 21 Jul 2024 22:10:45 -0600 Subject: [PATCH] Mods --- cromulant/game.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/cromulant/game.py b/cromulant/game.py index 1f2805e..7f9b7e3 100644 --- a/cromulant/game.py +++ b/cromulant/game.py @@ -192,24 +192,32 @@ class Game: if num == Method.triumph: ant.triumph += 1 method = "triumph" + elif num == Method.hit: ant.hits += 1 method = "hit" + elif num == Method.travel: status = Utils.random_country([]) method = "travel" + elif num == Method.thinking_1: status = Utils.random_name([], Ants.get_names()) method = "thinking" + elif num == Method.thinking_2: status = Utils.random_emoji(3) method = "thinking" + elif num == Method.sentence_1: status = Utils.rand_sentence.simple_sentence() + elif num == Method.sentence_2: status = Utils.rand_sentence.bare_bone_sentence() + elif num == Method.sentence_3: status = Utils.rand_sentence.bare_bone_with_adjective() + else: status = Utils.rand_sentence.sentence()