Plant death is now sadder
parent
32441bb46e
commit
3fe1a8283c
|
@ -0,0 +1,5 @@
|
|||
garden_db.sqlite
|
||||
*.pyc
|
||||
garden_file.dat
|
||||
garden_file.json
|
||||
sqlite/
|
|
@ -0,0 +1,10 @@
|
|||
______________
|
||||
/ \
|
||||
| |
|
||||
| |
|
||||
| R.I.P. |
|
||||
| |
|
||||
| |
|
||||
| |
|
||||
. |, _\/ .. \. \ /,|_ .
|
||||
^ ' ` '
|
|
@ -146,7 +146,9 @@ class CursedMenu(object):
|
|||
20: 'palm',
|
||||
}
|
||||
|
||||
if this_plant.stage == 0:
|
||||
if this_plant.dead == True:
|
||||
self.ascii_render('rip.txt', ypos, xpos)
|
||||
elif this_plant.stage == 0:
|
||||
self.ascii_render('seed.txt', ypos, xpos)
|
||||
elif this_plant.stage == 1:
|
||||
self.ascii_render('seedling.txt', ypos, xpos)
|
||||
|
|
Loading…
Reference in New Issue