-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstants.py
40 lines (27 loc) · 893 Bytes
/
constants.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import os
import logging
try:
GOOGLE_API_KEY = os.getenv('GOOGLE_API_KEY')
except KeyError:
logging.Logger.warn("NO GOOGLE API KEY!")
GOOGLE_API_KEY = None
STAR_DIRECTORY = "starsystems"
PLANET_NOUNS = ['planet', 'p', 'pl']
LEAVE_COMMANDS = ["l", "le", "leave"]
GET_COMMANDS = ["g", "get", "GET", "ge"]
SCAN_COMMANDS = ["sc", "scan"]
DIPLOMACY = "diplomacy"
STRENGTH = "strength"
SCIENCE = "science"
PLANET_TYPES = ["M-Class", "Desert", "Swamp", "Tundra", "Gas Giant", "Dwarf", "Dyson Sphere"]
CARD_TYPES = [DIPLOMACY, STRENGTH, SCIENCE]
ANOMALIES = [
"Wormholes",
"Black Holes",
"Dark Matter Singularity",
"Quantum Foam",
"Distress Signal",
"Ancient Probe",
]
CAPTAIN_QUIPS = ["Make it so.", "Punch it.", "Engage.", "Steady as she goes."]
LOADING_SCREENS = ["Preparing warp nacelles...", "Feeding Tribbles...", "Making some Earl Grey", "Ending holodeck programs.."]