mirror of
https://github.com/Equicord/Equicord.git
synced 2025-01-18 13:23:28 -05:00
update plugin morekaomoji (#124)
* evenmorekaomoji added 12 new kaomoji, with hopefully easily searchable names. * add voidbbg as dev * update devs * update devs
This commit is contained in:
parent
2e025bb4bd
commit
0f77a0a47b
2 changed files with 105 additions and 2 deletions
|
@ -17,13 +17,13 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { findOption, OptionalMessageOption } from "@api/Commands";
|
import { findOption, OptionalMessageOption } from "@api/Commands";
|
||||||
import { Devs } from "@utils/constants";
|
import { Devs, EquicordDevs } from "@utils/constants";
|
||||||
import definePlugin from "@utils/types";
|
import definePlugin from "@utils/types";
|
||||||
|
|
||||||
export default definePlugin({
|
export default definePlugin({
|
||||||
name: "MoreKaomoji",
|
name: "MoreKaomoji",
|
||||||
description: "Adds more Kaomoji to discord. ヽ(´▽`)/",
|
description: "Adds more Kaomoji to discord. ヽ(´▽`)/",
|
||||||
authors: [Devs.JacobTm],
|
authors: [Devs.JacobTm, EquicordDevs.voidbbg],
|
||||||
commands: [
|
commands: [
|
||||||
{
|
{
|
||||||
name: "dissatisfaction",
|
name: "dissatisfaction",
|
||||||
|
@ -112,6 +112,105 @@ export default definePlugin({
|
||||||
execute: opts => ({
|
execute: opts => ({
|
||||||
content: findOption(opts, "message", "") + " " + "o(≧▽≦)o",
|
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", "") + " " + "⸜(。˃ ᵕ ˂ )⸝♡",
|
||||||
|
}),
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
});
|
});
|
||||||
|
|
|
@ -967,6 +967,10 @@ export const EquicordDevs = Object.freeze({
|
||||||
ExoDev: {
|
ExoDev: {
|
||||||
name: "ExoDev",
|
name: "ExoDev",
|
||||||
id: 1325655837003223137n
|
id: 1325655837003223137n
|
||||||
|
},
|
||||||
|
voidbbg: {
|
||||||
|
name: "voidbbg",
|
||||||
|
id: 117126234588184582n
|
||||||
}
|
}
|
||||||
} satisfies Record<string, Dev>);
|
} satisfies Record<string, Dev>);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue