mirror of
https://github.com/d3vyce/Python-Game.git
synced 2025-04-03 12:23:22 +02:00
Add score
This commit is contained in:
parent
bd8d9fc2fb
commit
b98cff34e3
@ -29,7 +29,7 @@ class List:
|
|||||||
|
|
||||||
return i
|
return i
|
||||||
|
|
||||||
def Snake_move(M, L, dir, heigh, width):
|
def Snake_move(M, L, dir, score, heigh, width):
|
||||||
Fruit = False
|
Fruit = False
|
||||||
List_save = L
|
List_save = L
|
||||||
Save_Value = L.val
|
Save_Value = L.val
|
||||||
@ -71,7 +71,8 @@ def Snake_move(M, L, dir, heigh, width):
|
|||||||
# If snake eat fruit -> spawn new segment at the end of the snake
|
# If snake eat fruit -> spawn new segment at the end of the snake
|
||||||
if Fruit:
|
if Fruit:
|
||||||
List_save = List.List_add(List_save, Save_Value)
|
List_save = List.List_add(List_save, Save_Value)
|
||||||
|
score += 50
|
||||||
else:
|
else:
|
||||||
M[Save_Value[0]][Save_Value[1]] = 0
|
M[Save_Value[0]][Save_Value[1]] = 0
|
||||||
|
|
||||||
return List_save, M, Fruit
|
return List_save, M, Fruit, score
|
Loading…
x
Reference in New Issue
Block a user