mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-17 02:17:03 -04:00
Separate MoreKaomoji Commands
This commit is contained in:
parent
1d5d309a97
commit
fe5a18b429
3 changed files with 110 additions and 21 deletions
|
@ -25,23 +25,93 @@ export default definePlugin({
|
|||
description: "Adds more Kaomoji to discord. ヽ(´▽`)/",
|
||||
authors: [Devs.JacobTm],
|
||||
commands: [
|
||||
{ name: "dissatisfaction", description: " >﹏<" },
|
||||
{ name: "smug", description: "ಠ_ಠ" },
|
||||
{ name: "happy", description: "ヽ(´▽`)/" },
|
||||
{ name: "crying", description: "ಥ_ಥ" },
|
||||
{ name: "angry", description: "ヽ(`Д´)ノ" },
|
||||
{ name: "anger", description: "ヽ(o`皿′o)ノ" },
|
||||
{ name: "joy", description: "<( ̄︶ ̄)>" },
|
||||
{ name: "blush", description: "૮ ˶ᵔ ᵕ ᵔ˶ ა" },
|
||||
{ name: "confused", description: "(•ิ_•ิ)?" },
|
||||
{ name: "sleeping", description: "(ᴗ_ᴗ)" },
|
||||
{ name: "laughing", description: "o(≧▽≦)o" },
|
||||
|
||||
].map(data => ({
|
||||
...data,
|
||||
options: [OptionalMessageOption],
|
||||
execute: opts => ({
|
||||
content: findOption(opts, "message", "") + " " + data.description
|
||||
})
|
||||
}))
|
||||
{
|
||||
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",
|
||||
}),
|
||||
}
|
||||
]
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue