14 lines
365 B
Python
14 lines
365 B
Python
while True:
|
|
for i in range(3):
|
|
for i in range(3):
|
|
if can_harvest():
|
|
harvest()
|
|
plant(Entities.Bush)
|
|
#change_hat(Hats.Purple_Hat)
|
|
move(North)
|
|
else:
|
|
do_a_flip()
|
|
change_hat(Hats.Gray_Hat)
|
|
move(North)
|
|
move(East)
|