This commit is contained in:
Raman Yudzeshka 2023-03-31 15:31:23 +02:00
parent 589c3e6d33
commit cc69987645
2 changed files with 4 additions and 5 deletions

View File

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.9" project-jdk-type="Python SDK" />
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.10" project-jdk-type="Python SDK" />
</project>

View File

@ -130,11 +130,12 @@ def draw_interface():
gas_left -= 5
print("Rock")
elif event.key == pygame.K_SPACE:
wet_tiles_coordinates.append((x, y))
if water_left >= 1:
water_left -= 1
wet_tiles_coordinates.append((x, y))
elif event.key == pygame.K_RETURN:
for vegetable in vegetables:
if vegetable[0] == x and vegetable[1] == y:
water_left -= 1
if vegetable[2] == 'Potato':
print("Potato collected")
collected_vegetables[0] += 1
@ -149,8 +150,6 @@ def draw_interface():
collected_vegetables[3] += 1
vegetables.remove(vegetable)
break
else:
print("No vegetable here")
if (x, y) == SPAWN_POINT:
water_left = WATER_TANK_CAPACITY
gas_left = GAS_TANK_CAPACITY