mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
meme-gen -> meme-gen-classic
This commit is contained in:
@@ -611,8 +611,8 @@ Total: 449
|
||||
* **like:** Sends an "Everyone Liked That" meme with the image of your choice.
|
||||
* **lisa-presentation:** Sends a "Lisa Presentation" meme with the presentation of your choice.
|
||||
* **look-at-this-photograph:** Draws an image or a user's avatar over Nickelback's photograph.
|
||||
* **meme-gen-classic:** Sends a meme with the text and background of your choice.
|
||||
* **meme-gen-modern:** Sends a meme with the text and image of your choice.
|
||||
* **meme-gen:** Sends a meme with the text and background of your choice.
|
||||
* **new-password:** Sends a "Weak Password/Strong Password" meme with the passwords of your choice.
|
||||
* **nike-ad:** Sends a "Believe in Something" Nike Ad meme with the text of your choice.
|
||||
* **plankton-plan:** Sends a Plankton's Plan meme with steps of your choice.
|
||||
|
||||
@@ -5,13 +5,24 @@ const path = require('path');
|
||||
const { wrapText } = require('../../util/Canvas');
|
||||
registerFont(path.join(__dirname, '..', '..', 'assets', 'fonts', 'Impact.ttf'), { family: 'Impact' });
|
||||
|
||||
module.exports = class MemeGenCommand extends Command {
|
||||
module.exports = class MemeGenClassicCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'meme-gen',
|
||||
aliases: ['meme-generator', 'create-meme'],
|
||||
name: 'meme-gen-classic',
|
||||
aliases: [
|
||||
'meme-generator-classic',
|
||||
'create-meme-classic',
|
||||
'meme-gen-c',
|
||||
'classic-meme-gen',
|
||||
'classic-meme-generator',
|
||||
'create-classic-meme',
|
||||
'c-meme-gen',
|
||||
'c-meme-generator',
|
||||
'create-c-meme',
|
||||
'mgc'
|
||||
],
|
||||
group: 'edit-meme',
|
||||
memberName: 'meme-gen',
|
||||
memberName: 'meme-gen-classic',
|
||||
description: 'Sends a meme with the text and background of your choice.',
|
||||
throttling: {
|
||||
usages: 1,
|
||||
@@ -12,6 +12,9 @@ module.exports = class MemeGenModernCommand extends Command {
|
||||
super(client, {
|
||||
name: 'meme-gen-modern',
|
||||
aliases: [
|
||||
'meme-gen',
|
||||
'meme-generator',
|
||||
'create-meme',
|
||||
'meme-generator-modern',
|
||||
'create-meme-modern',
|
||||
'meme-gen-m',
|
||||
@@ -20,7 +23,9 @@ module.exports = class MemeGenModernCommand extends Command {
|
||||
'create-modern-meme',
|
||||
'm-meme-gen',
|
||||
'm-meme-generator',
|
||||
'create-m-meme'
|
||||
'create-m-meme',
|
||||
'mgm',
|
||||
'mg'
|
||||
],
|
||||
group: 'edit-meme',
|
||||
memberName: 'meme-gen-modern',
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "xiao",
|
||||
"version": "114.34.0",
|
||||
"version": "115.0.0",
|
||||
"description": "Your personal server companion.",
|
||||
"main": "Xiao.js",
|
||||
"scripts": {
|
||||
|
||||
Reference in New Issue
Block a user