This repository has been archived on 2016-11-13. You can view files and clone it, but cannot push or open issues or pull requests.
tamagotchi/pet_variables.py

27 lines
440 B
Python
Raw Permalink Normal View History

2016-11-08 11:58:47 +01:00
#!/usr/bin/env python3
# The pet's stats
2015-07-06 22:23:17 +02:00
pet_name = "Fluffy"
pet_photo = "<`)))><"
pet_status = "youngling"
pet_health = 5
pet_age = 0
pet_hunger = 5
pet_happiness = 5
pet_stomach = 0
2015-07-06 22:23:17 +02:00
# age based max values
2015-07-06 22:23:17 +02:00
max_health = 5
max_hunger = 5
max_happiness = 10
2015-07-08 00:12:08 +02:00
# Pictures and symbols used ingame
2015-07-06 22:23:17 +02:00
cat = "(=^o.o^=)__"
mouse = "<:3 )~~~~"
fish = "<`)))><"
owl = "(^0M0^)"
2015-07-08 00:12:08 +02:00
# programme variables
beginning_finished = False
2015-07-12 22:11:47 +02:00
poke_count = 0
2015-07-14 12:39:47 +02:00
day = 15