forked from timswyzen/discordTCG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
23 lines (19 loc) · 1.09 KB
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/user/bin/env python
VERSION = "0.1"
DECK_SIZE_MINIMUM = 40
STARTING_HAND_SIZE = 6
PACK_PRICE = 100
CHALLENGE_TIMEOUT = 30 #How long to wait for someone to accept a challenge
TURN_TIMEOUT = 300 #How long to wait for someone to do an action on their turn before they forfeit the match
TOKEN = '' #secret
DEFINITIONS = {
"lifeforce": "Your primary resource. You use this to pay card and Node costs. If it reaches 0, you lose.",
"node": "An object that stays on the board. They can have spawn abilities, death abilities, and abilities that activate on each of your turns.",
"mill": "Removes the top card of your deck from the game, and you gain lifeforce equal to its cost.",
"burn": "Removes the top card of your deck from the game. You do not gain lifeforce.",
"energy": "You gain lifeforce equal to your Energy at the start of each of your turns.",
"hunger": "Affects how much lifeforce you gain from sacrificing Nodes. You start with 10, and can go down to 0.",
"desperation": "Affects how much lifeforce you gain from milling. You start with 10, and can go down to 0.",
}
#don't touch
matches = {}