1 module emojid.animalsandnature;
2 
3 enum AnimalsAndNature {
4     // animal-mammal
5     monkeyFace = "🐵",
6     monkey = "🐒",
7     gorilla = "🦍",
8     dogFace = "🐶",
9     dog = "🐕",
10     poodle = "🐩",
11     wolfFace = "🐺",
12     foxFace = "🦊",
13     raccoon = "🦝",
14     catFace = "🐱",
15     cat = "🐈",
16     lionFace = "🦁",
17     tigerFace = "🐯",
18     tiger = "🐅",
19     leopard = "🐆",
20     horseFace = "🐴",
21     horse = "🐎",
22     unicornFace = "🦄",
23     zebra = "🦓",
24     deer = "🦌",
25     cowFace = "🐮",
26     ox = "🐂",
27     waterBuffalo = "🐃",
28     cow = "🐄",
29     pigFace = "🐷",
30     pig = "🐖",
31     boar = "🐗",
32     pigNose = "🐽",
33     ram = "🐏",
34     ewe = "🐑",
35     goat = "🐐",
36     camel = "🐪",
37     twoHumpCamel = "🐫",
38     llama = "🦙",
39     giraffe = "🦒",
40     elephant = "🐘",
41     rhinoceros = "🦏",
42     hippopotamus = "🦛",
43     mouseFace = "🐭",
44     mouse = "🐁",
45     rat = "🐀",
46     hamsterFace = "🐹",
47     rabbitFace = "🐰",
48     rabbit = "🐇",
49     chipmunk = "🐿",
50     hedgehog = "🦔",
51     bat = "🦇",
52     bearFace = "🐻",
53     koala = "🐨",
54     pandaFace = "🐼",
55     kangaroo = "🦘",
56     badger = "🦡",
57     pawPrints = "🐾",
58     // animal-bird
59     turkey = "🦃",
60     chicken = "🐔",
61     rooster = "🐓",
62     hatchingChick = "🐣",
63     babyChick = "🐤",
64     frontFacingBabyChick = "🐥",
65     bird = "🐦",
66     penguin = "🐧",
67     dove = "🕊",
68     eagle = "🦅",
69     duck = "🦆",
70     swan = "🦢",
71     owl = "🦉",
72     peacock = "🦚",
73     parrot = "🦜",
74     // animal-amphibian
75     frogFace = "🐸",
76     // animal-reptile
77     crocodile = "🐊",
78     turtle = "🐢",
79     lizard = "🦎",
80     snake = "🐍",
81     dragonFace = "🐲",
82     dragon = "🐉",
83     sauropod = "🦕",
84     tRex = "🦖",
85     // animal-marine
86     spoutingWhale = "🐳",
87     whale = "🐋",
88     dolphin = "🐬",
89     fish = "🐟",
90     tropicalFish = "🐠",
91     blowfish = "🐡",
92     shark = "🦈",
93     octopus = "🐙",
94     spiralShell = "🐚",
95     // animal-bug
96     snail = "🐌",
97     butterfly = "🦋",
98     bug = "🐛",
99     ant = "🐜",
100     honeybee = "🐝",
101     ladyBeetle = "🐞",
102     cricket = "🦗",
103     spider = "🕷",
104     spiderWeb = "🕸",
105     scorpion = "🦂",
106     mosquito = "🦟",
107     microbe = "🦠",
108     // plant-flower
109     bouquet = "💐",
110     cherryBlossom = "🌸",
111     whiteFlower = "💮",
112     rosette = "🏵",
113     rose = "🌹",
114     wiltedFlower = "🥀",
115     hibiscus = "🌺",
116     sunflower = "🌻",
117     blossom = "🌼",
118     tulip = "🌷",
119     // plant-other
120     seedling = "🌱",
121     evergreenTree = "🌲",
122     deciduousTree = "🌳",
123     palmTree = "🌴",
124     cactus = "🌵",
125     sheafOfRice = "🌾",
126     herb = "🌿",
127     shamrock = "☘",
128     fourLeafClover = "🍀",
129     mapleLeaf = "🍁",
130     fallenLeaf = "🍂",
131     leafFlutteringInWind = "🍃",
132 }