guess who forgot to add files
diff --git a/src/utils/getEmojiByName.ts b/src/utils/getEmojiByName.ts
new file mode 100644
index 0000000..64c7ede
--- /dev/null
+++ b/src/utils/getEmojiByName.ts
@@ -0,0 +1,12 @@
+import emojis from '../config/emojis.json' assert {type: 'json'};
+
+function getEmojiByName(name: string): string {
+    let split = name.split(".");
+    let id = emojis
+    split.forEach(part => {
+        id = id[part];
+    });
+    return `<:a:${id}>`;
+}
+
+export default getEmojiByName;