-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.py
More file actions
50 lines (37 loc) · 1.23 KB
/
Copy pathconstants.py
File metadata and controls
50 lines (37 loc) · 1.23 KB
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
#Monster colors
RED = 0xff0000
GREEN = 0x00ff00
BLUE = 0x0000ff
LIGHT = 0xffff00
DARK = 0xff00ff
#Hatcher names
UNKNOWN = "Unknown"
LEGENDS_HATCHER_SEARCH = "Legends_Hatcher"
LEGENDS_HATCHER = "Legends Hatcher"
GUARDIANS_HATCHER_SEARCH = "Guardians_Hatcher"
GUARDIANS_HATCHER = "Guardians Hatcher"
RED_STARS_SEARCH = "Red_Stars"
RED_STARS_HATCHER = "Red Stars"
AQUA_BANQUET_SEARCH = "Aqua_Banquet"
AQUA_BANQUET_HATCHER = "Aqua Banquet"
GREEN_FANTASY_SEARCH = "Green_Fantasy"
GREEN_FANTASY_HATCHER = "Green Fantasy"
STARLIGHT_MIRAGE_SEARCH = "Starlight_Mirage"
STARLIGHT_MIRAGE_HATCHER = "Starlight Mirage"
MIDNIGHT_PARTY_SEARCH = "Midnight_Party"
MIDNIGHT_PARTY_HATCHER = "Midnight Party"
MONSTER_DX_SEARCH = "Monst_Collection_DX_Hatcher"
MONSTER_DX_HATCHER = "Monst DX"
MAIN_HATCHER_SEARCH = "Hatcher"
MAIN_HATCHER = "Hatcher"
#Wiki links for a new page creation have this css class
CREATE_WIKI_PAGE_HREF = 'class="new"'
#When looking for a hatcher monster, the first 192 monsters can be skipped
FIRST_HATCHER_MONSTER = 192
#URL return type fields
URL_FIELD = 'url'
SOUP_FIELD = 'soup'
SUCCESS_FIELD = 'success'
URL_VALUE_NO_URL = None
#ENGLISH WIKI MONSTERPEDIA PAGE
WIKI_PEDIA_PAGE = 'https://monster-strike-enjp.fandom.com/wiki/Monsterpedia'