changed stone cost and tarctor's speed

This commit is contained in:
Marek 2024-06-10 11:21:58 +02:00
parent dd4f656ea2
commit 182274c160
15 changed files with 2 additions and 2 deletions

View File

@ -192,7 +192,7 @@ def do_actions(tractor, WIN, move_list):
tractor.draw_tractor(WIN) tractor.draw_tractor(WIN)
pygame.display.update() pygame.display.update()
time.sleep(0.5) time.sleep(0.35)
#displays results of the "work_on_field" function next to the field: #displays results of the "work_on_field" function next to the field:

View File

@ -80,7 +80,7 @@ def tile_cost(tile):
if tile.image == "resources/images/sampling.png": if tile.image == "resources/images/sampling.png":
return 100 return 100
if tile.image == "resources/images/rock_dirt.png": if tile.image == "resources/images/rock_dirt.png":
return 500 return 1000
else: else:
return 1 return 1