Mods
This commit is contained in:
parent
738cc7c305
commit
25230073d6
|
@ -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()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue