-
Notifications
You must be signed in to change notification settings - Fork 9
/
constants.py
69 lines (69 loc) · 1.67 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
PLAYBOOK_INTERACTIONS = 'playbook_interactions'
MOVES = 'moves'
PENDING_ADVANCEMENTS = 'pendingAdvancements'
PICKED = 'picked'
SHORT_NAME = 'shortName'
SPECIAL = 'special'
ID = 'id'
PLAYBOOK = 'playbook'
LABELS = 'labels'
VALUE = 'value'
LOCKED = 'locked'
POTENTIAL = 'potential'
CONDITIONS = 'conditions'
ADVANCEMENT = 'advancement'
MAX_LABEL_VALUE = 3
MIN_LABEL_VALUE = -2
PLAYBOOK_INTERACTIONS = 'playbook_interactions'
CONFIGURATION = 'configuration'
DESCRIPTION = 'description'
TAKEN = 'taken'
MAX_POSITIVE_MOD = 4
MIN_NEGATIVE_MOD = 3
SUM = '+'
SUB = '-'
HEART = 'heart'
BULL = 'bull'
ROLES = 'roles'
ADULT = 'adult'
DELINQUENT = 'delinquent'
DOOMED = 'doomed'
DOOMSIGNS = 'doomsigns'
NOVA = 'nova'
FLARES = 'flares'
JANUS = 'janus'
MASK_LABEL = 'maskLabel'
BEACON = 'beacon'
DRIVES = 'drives'
DRIVES_DESCRIPTION = 'drivesDescription'
LEGACY = 'legacy'
SANCTUARY = 'sanctuary'
OUTSIDER = 'outsider'
SECRET_IDENTITY = 'secretIdentity'
PROTEGE = 'protege'
RESOURCES = 'resources'
MENTOR = 'mentor'
MAX_RESOURCES_TO_ADD = 4
SOLDIER = 'soldier'
INNOCENT = 'innocent'
NEWBORN = 'newborn'
REFORMED = 'reformed'
SCION = 'scion'
STAR = 'star'
dice = [
(1, 'maddie1', 784076924216934430),
(2, 'maddie2', 784076967049166848),
(3, 'maddie3', 784076999739834399),
(4, 'maddie4', 784077034216882196),
(5, 'maddie5', 784077062301941771),
(6, 'maddie6', 784077092681285713)
]
modifier_emojis = [
(+1, 'plusone', 812771463370244096),
(+2, 'plustwo', 812772214629728256),
(+3, 'plusthree', 812772214440984578),
(+4, 'plusfour', 812772214574809118),
(-1, 'minusone', 812772214092333079),
(-2, 'minustwo', 812772214465495040),
(-3, 'minusthree', 812772214309912587),
]