-
Notifications
You must be signed in to change notification settings - Fork 0
/
species.php
80 lines (75 loc) · 2.1 KB
/
species.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
70
71
72
73
74
75
76
77
78
79
80
<?php
$species = array(
"aquatic" => "🐟", //:fish:
"avian" => "🐦", //:bird:
"bat" => "🦇", //:bat:
"bear" => "🐻", //:bear:
"canine" => "🐶", //:dog:
"deer" => "🦌",//:deer:
"dolphin" => "🐬", //:dolphin:
"dragon" => "🐉", //:dragon:
"equine" => "🐴", //:horse:
"feline" => "😺" //:smiley_cat:
);
$species2 = array(
"fox" => "🦊", //:fox:
"hybrid" => "🔀", //:twisted_rightwards_arrows:
"mouse" => "🐭", //:mouse:
"kangaroo" => "🏀", //:basketball:
"pokemon" => "🍎", //:apple:
"protogen" => "🦾", //:robot:
"rabbit" => "🐰", //:rabbit:
"reptile" => "🦎", //:lizard:
"sergal" => "🧀", //:cheese:
"shapeshifter" => "🔷" //:small_blue_diamond:
);
$species3 = array(
"wolf" => "🐺", //:wolf:
"goat" => "🐐", //:goat:
"human" => "🚶", //:person_walking:
"mobold" => "🍆", //:eggplant:
"otter" => "🍿", //:popcorn:
"panda" => "🐼", //:panda_face:
"penguin" => "🐧", //:penguin:
"raccoon" => "🕳️", //:hole:
"shark" => "🦈", //:shark:
"squirrel" => "🌰", //:chestnut:
"robot" => "🦾", //:mechanical_arm:
"misc/Unlisted Species" => "🤷" //:person_shrugging: ///Unlisted Species
);
//Message copy-pasta:
$species_message_text = "**Role Menu: Species**
:fish: : `Aquatic`
:bird: : `Avian`
:bat: : `Bat`
:bear: : `Bear`
:dog: : `Canine`
:deer: : `Deer`
:dolphin: : `Dolphin`
:dragon: : `Dragon`
:horse: : `Equine`
:smiley_cat: : `Feline`";
$species2_message_text = "**Role Menu: Species2**
:fox: : `Fox`
:twisted_rightwards_arrows: : `Hybrid`
:basketball: : `Kangaroo`
:mouse: : `Mouse`
:apple: : `Pokemon`
:robot: : `Protogen`
:rabbit: : `Rabbit`
:lizard: : `Reptile`
:cheese: : `Sergal`
:small_blue_diamond: : `Shapeshifter`";
$species3_message_text = "**Role Menu: Species3**
:wolf: : `Wolf`
:goat: : `Goat`
:person_walking: : `Human`
:eggplant: : `Kobold`
:popcorn: : `Otter`
:panda_face: : `Panda`
:penguin: : `Penguin`
:hole: : `Raccoon`
:shark: : `Shark`
:chestnut: : `Squirrel`
:mechanical_arm: : `Robot`
:person_shrugging: : `Misc/Unlisted Species`";