-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathconstants.php
71 lines (62 loc) · 1.91 KB
/
constants.php
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
<?php
define('CR', "\n");
define('CR2', "\n");
// define('TEAM_B', "💙");
// define('TEAM_R', "❤");
// define('TEAM_Y', "💛");
// define('TEAM_B', "\ud83d\udc99");
// define('TEAM_R', "\u2764\ufe0f");
// define('TEAM_Y', "\ud83d\udc9b");
// define('TEAM_CANCEL', "\ud83d\udc94");
// define('TEAM_DONE', "\ud83d\udc98");
define('TEAM_B', iconv('UCS-4LE', 'UTF-8', pack('V', 0x1f499)));
define('TEAM_R', iconv('UCS-4LE', 'UTF-8', pack('V', 0x2764)));
define('TEAM_Y', iconv('UCS-4LE', 'UTF-8', pack('V', 0x1f49B)));
define('TEAM_CANCEL', iconv('UCS-4LE', 'UTF-8', pack('V', 0x1f494)));
define('TEAM_DONE', iconv('UCS-4LE', 'UTF-8', pack('V', 0x1f498)));
define('TEAM_UNKNOWN', iconv('UCS-4LE', 'UTF-8', pack('V', 0x1f680)));
define('EMOJI_REFRESH', iconv('UCS-4LE', 'UTF-8', pack('V', 0x1F504)));
// define('EMOJI_EGG', iconv('UCS-4LE', 'UTF-8', pack('V', 0x1F95A))); // not showing on TG web
define('EMOJI_EGG', iconv('UCS-4LE', 'UTF-8', pack('V', 0x1F423)));
define('EMOJI_EGG2', iconv('UCS-4LE', 'UTF-8', pack('V', 0x1F373)));
define('EMOJI_FEET', iconv('UCS-4LE', 'UTF-8', pack('V', 0x1F463)));
define('EMOJI_FACE', iconv('UCS-4LE', 'UTF-8', pack('V', 0x1F466)));
define('EMOJI_PAPERCLIP', iconv('UCS-4LE', 'UTF-8', pack('V', 0x1F4CE)));
define('RAID_TIME', 45); /* Minutes */
define('HATCH_TIME', 60); /* Minutes */
//define('HATCH_TIME', 60); /* Minutes */
define('DISALLOW_END', 20); /* Minutes */
define('SUBMIT_INTERVALS', 5); /* Minutes */
$teams = array(
'mystic' => TEAM_B,
'valor' => TEAM_R,
'instinct' => TEAM_Y,
'unknown' => TEAM_UNKNOWN,
'cancel' => TEAM_CANCEL,
);
$pokemon = array(
'5' => array(
'Articuno',
'Lugia',
'Moltres',
'Zapdos',
),
'4' => array(
'Tyranitar',
'Snorlax',
'Lapras',
'Rhydon',
'Charizard',
'Venusaur',
'Blastoise',
),
'3' => array(
'Machamp',
'Vaporeon',
'Flareon',
'Jolteon',
'Alakazam',
'Arcanine',
'Gengar',
),
);