another merge
This commit is contained in:
commit
219f523dac
1
game.py
1
game.py
@ -40,6 +40,7 @@ for x in range(PLAY_HEIGHT//64):
|
|||||||
for y in range(PLAY_HEIGHT//64):
|
for y in range(PLAY_HEIGHT//64):
|
||||||
grass = Grass(x,y)
|
grass = Grass(x,y)
|
||||||
cells[x].append(grass)
|
cells[x].append(grass)
|
||||||
|
print( cells )
|
||||||
|
|
||||||
#Losowanie domków i dodawanie je do mapy
|
#Losowanie domków i dodawanie je do mapy
|
||||||
home_len = home_amount
|
home_len = home_amount
|
||||||
|
@ -22,13 +22,13 @@ class House(Cell):
|
|||||||
self.rubbish[thrash_type] = self.rubbish[thrash_type] + 1
|
self.rubbish[thrash_type] = self.rubbish[thrash_type] + 1
|
||||||
|
|
||||||
if( self.rubbish[PLASTIC] > self.max_plastic ):
|
if( self.rubbish[PLASTIC] > self.max_plastic ):
|
||||||
self.image = pygame.image.load("images/house_blue.png")
|
self.image = pygame.image.load("images/house_plastic.png")
|
||||||
print("PLASTIC alert")
|
print("PLASTIC alert")
|
||||||
if( self.rubbish[GLASS] > self.max_glass ):
|
if( self.rubbish[GLASS] > self.max_glass ):
|
||||||
self.image = pygame.image.load("images/house_green.png")
|
self.image = pygame.image.load("images/house_glass.png")
|
||||||
print("GLASS alert")
|
print("GLASS alert")
|
||||||
if( self.rubbish[METAL] > self.max_metal ):
|
if( self.rubbish[METAL] > self.max_metal ):
|
||||||
self.image = pygame.image.load("images/house_yellow.png")
|
self.image = pygame.image.load("images/house_metal.png")
|
||||||
print("METAL alert")
|
print("METAL alert")
|
||||||
|
|
||||||
def check_rubbish_status(self):
|
def check_rubbish_status(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user