/* * Vencord, a modification for Discord's desktop app * Copyright (c) 2022 Vendicated and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ import { findOption, OptionalMessageOption } from "@api/Commands"; import { Devs, EquicordDevs } from "@utils/constants"; import definePlugin from "@utils/types"; export default definePlugin({ name: "MoreKaomoji", description: "Adds more Kaomoji to discord. ヽ(´▽`)/", authors: [Devs.JacobTm, EquicordDevs.voidbbg], commands: [ { name: "dissatisfaction", description: " >﹏<", options: [OptionalMessageOption], execute: opts => ({ content: findOption(opts, "message", "") + " " + " >﹏<", }), }, { name: "smug", description: "ಠ_ಠ", options: [OptionalMessageOption], execute: opts => ({ content: findOption(opts, "message", "") + " " + "ಠ_ಠ", }), }, { name: "happy", description: "ヽ(´▽`)/", options: [OptionalMessageOption], execute: opts => ({ content: findOption(opts, "message", "") + " " + "ヽ(´▽`)/", }), }, { name: "crying", description: "ಥ_ಥ", options: [OptionalMessageOption], execute: opts => ({ content: findOption(opts, "message", "") + " " + "ಥ_ಥ", }), }, { name: "angry", description: "ヽ(`Д´)ノ", options: [OptionalMessageOption], execute: opts => ({ content: findOption(opts, "message", "") + " " + "ヽ(`Д´)ノ", }), }, { name: "anger", description: "ヽ(o`皿′o)ノ", options: [OptionalMessageOption], execute: opts => ({ content: findOption(opts, "message", "") + " " + "ヽ(o`皿′o)ノ", }), }, { name: "joy", description: "<( ̄︶ ̄)>", options: [OptionalMessageOption], execute: opts => ({ content: findOption(opts, "message", "") + " " + "<( ̄︶ ̄)>", }), }, { name: "blush", description: "૮ ˶ᵔ ᵕ ᵔ˶ ა", options: [OptionalMessageOption], execute: opts => ({ content: findOption(opts, "message", "") + " " + "૮ ˶ᵔ ᵕ ᵔ˶ ა", }), }, { name: "confused", description: "(•ิ_•ิ)?", options: [OptionalMessageOption], execute: opts => ({ content: findOption(opts, "message", "") + " " + "(•ิ_•ิ)?", }), }, { name: "sleeping", description: "(ᴗ_ᴗ)", options: [OptionalMessageOption], execute: opts => ({ content: findOption(opts, "message", "") + " " + "(ᴗ_ᴗ)", }), }, { name: "laughing", description: "o(≧▽≦)o", options: [OptionalMessageOption], execute: opts => ({ content: findOption(opts, "message", "") + " " + "o(≧▽≦)o", }), }, /* even more kaomoji */ { name: "giving", description: "(ノ◕ヮ◕)ノ*:・゚✧", options: [OptionalMessageOption], execute: opts => ({ content: findOption(opts, "message", "") + " " + "(ノ◕ヮ◕)ノ*:・゚✧", }), }, { name: "peace", description: "✌(◕‿-)✌", options: [OptionalMessageOption], execute: opts => ({ content: findOption(opts, "message", "") + " " + "✌(◕‿-)✌", }), }, { name: "ending1", description: "Ꮺ ָ࣪ ۰ ͙⊹", options: [OptionalMessageOption], execute: opts => ({ content: findOption(opts, "message", "") + " " + "Ꮺ ָ࣪ ۰ ͙⊹", }), }, { name: "uwu", description: "(>⩊<)", options: [OptionalMessageOption], execute: opts => ({ content: findOption(opts, "message", "") + " " + "(>⩊<)", }), }, { name: "comfy", description: "(─‿‿─)♡", options: [OptionalMessageOption], execute: opts => ({ content: findOption(opts, "message", "") + " " + "(─‿‿─)♡", }), }, { name: "lovehappy", description: "(*≧ω≦*)", options: [OptionalMessageOption], execute: opts => ({ content: findOption(opts, "message", "") + " " + "(*≧ω≦*)", }), }, { name: "loveee", description: "(⁄ ⁄>⁄ ▽ ⁄<⁄ ⁄)", options: [OptionalMessageOption], execute: opts => ({ content: findOption(opts, "message", "") + " " + "(⁄ ⁄>⁄ ▽ ⁄<⁄ ⁄)", }), }, { name: "give", description: "(ノ= ⩊ = )ノ", options: [OptionalMessageOption], execute: opts => ({ content: findOption(opts, "message", "") + " " + "(ノ= ⩊ = )ノ", }), }, { name: "lovegive", description: "ღゝ◡╹)ノ♡", options: [OptionalMessageOption], execute: opts => ({ content: findOption(opts, "message", "") + " " + "ღゝ◡╹)ノ♡", }), }, { name: "music", description: "( ̄▽ ̄)/♫•¨•.¸¸♪", options: [OptionalMessageOption], execute: opts => ({ content: findOption(opts, "message", "") + " " + "( ̄▽ ̄)/♫•¨•.¸¸♪", }), }, { name: "stars", description: ".𖥔 ݁ ˖๋ ࣭ ⭑", options: [OptionalMessageOption], execute: opts => ({ content: findOption(opts, "message", "") + " " + ".𖥔 ݁ ˖๋ ࣭ ⭑", }), }, { name: "lovegiving", description: "⸜(。˃ ᵕ ˂ )⸝♡", options: [OptionalMessageOption], execute: opts => ({ content: findOption(opts, "message", "") + " " + "⸜(。˃ ᵕ ˂ )⸝♡", }), } ] });