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:
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()