This commit is contained in:
Auric Vente 2024-07-21 22:10:45 -06:00
parent 738cc7c305
commit 25230073d6
1 changed files with 8 additions and 0 deletions

View File

@ -192,24 +192,32 @@ class Game:
if num == Method.triumph: if num == Method.triumph:
ant.triumph += 1 ant.triumph += 1
method = "triumph" method = "triumph"
elif num == Method.hit: elif num == Method.hit:
ant.hits += 1 ant.hits += 1
method = "hit" method = "hit"
elif num == Method.travel: elif num == Method.travel:
status = Utils.random_country([]) status = Utils.random_country([])
method = "travel" method = "travel"
elif num == Method.thinking_1: elif num == Method.thinking_1:
status = Utils.random_name([], Ants.get_names()) status = Utils.random_name([], Ants.get_names())
method = "thinking" method = "thinking"
elif num == Method.thinking_2: elif num == Method.thinking_2:
status = Utils.random_emoji(3) status = Utils.random_emoji(3)
method = "thinking" method = "thinking"
elif num == Method.sentence_1: elif num == Method.sentence_1:
status = Utils.rand_sentence.simple_sentence() status = Utils.rand_sentence.simple_sentence()
elif num == Method.sentence_2: elif num == Method.sentence_2:
status = Utils.rand_sentence.bare_bone_sentence() status = Utils.rand_sentence.bare_bone_sentence()
elif num == Method.sentence_3: elif num == Method.sentence_3:
status = Utils.rand_sentence.bare_bone_with_adjective() status = Utils.rand_sentence.bare_bone_with_adjective()
else: else:
status = Utils.rand_sentence.sentence() status = Utils.rand_sentence.sentence()