mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 15:07:42 +02:00
For Five Hours Command
This commit is contained in:
@@ -228,7 +228,7 @@ in the appropriate channel's topic to use it.
|
||||
|
||||
## Commands
|
||||
|
||||
Total: 506
|
||||
Total: 507
|
||||
|
||||
### Utility:
|
||||
|
||||
@@ -657,6 +657,7 @@ Total: 506
|
||||
* **drakeposting:** Sends a "Drakeposting" meme with the text of your choice.
|
||||
* **edd-facts-book:** Sends a "Double D's Facts Book" meme with the fact of your choice.
|
||||
* **food-broke:** Draws a user's avatar over the "Food Broke" meme.
|
||||
* **for-five-hours:** 'Sends an "I've looked at this for 5 hours now" meme with the image of your choice.
|
||||
* **genie-rules:** Sends a "There are 4 rules" meme with the text of your choice.
|
||||
* **girl-worth-fighting-for:** Draws an image or a user's avatar as the object of Ling's affection.
|
||||
* **gru-plan:** Sends a Gru's Plan meme with steps of your choice.
|
||||
@@ -1285,6 +1286,8 @@ here.
|
||||
* suicide-hotline (Phone Number)
|
||||
- [nauticalspongeinc](https://www.fontspace.com/nauticalspongeinc)
|
||||
* spongebob-time-card ([Spongeboytt1 Font](https://www.fontspace.com/spongeboytt1-font-f29761))
|
||||
- [NBC](https://www.nbc.com/)
|
||||
* for-five-hours ([Image, Original "The Office" TV Series](https://www.nbc.com/the-office))
|
||||
- [Neko Atsume: Kitty Collector](http://nekoatsume.com/en/)
|
||||
* neko-atsume-password (API, Original Game)
|
||||
- [Nekopara](http://nekopara.com/main.html)
|
||||
@@ -1330,6 +1333,7 @@ here.
|
||||
* alert (Concept)
|
||||
* boardroom-meeting (Concept)
|
||||
* dislike (Concept)
|
||||
* for-five-hours (Concept)
|
||||
* gun (Concept)
|
||||
* hands (Concept)
|
||||
* hentai (Original Subreddit List)
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 309 KiB |
@@ -0,0 +1,61 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const { createCanvas, loadImage } = require('canvas');
|
||||
const request = require('node-superfetch');
|
||||
const path = require('path');
|
||||
|
||||
module.exports = class ForFiveHoursCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'for-five-hours',
|
||||
aliases: ['its-beautiful-ive-looked-at-this-for-five-hours-now', 'its-beautiful'],
|
||||
group: 'edit-meme',
|
||||
memberName: 'for-five-hours',
|
||||
description: 'Sends an "I\'ve looked at this for 5 hours now" meme with the image of your choice.',
|
||||
throttling: {
|
||||
usages: 1,
|
||||
duration: 10
|
||||
},
|
||||
clientPermissions: ['ATTACH_FILES'],
|
||||
credit: [
|
||||
{
|
||||
name: 'NBC',
|
||||
url: 'https://www.nbc.com/',
|
||||
reason: 'Image, Original "The Office" TV Series',
|
||||
reasonURL: 'https://www.nbc.com/the-office'
|
||||
},
|
||||
{
|
||||
name: 'Overtime2005',
|
||||
url: 'https://github.com/Overtime2005',
|
||||
reason: 'Concept'
|
||||
}
|
||||
],
|
||||
args: [
|
||||
{
|
||||
key: 'image',
|
||||
prompt: 'What image would you like to edit?',
|
||||
type: 'image',
|
||||
default: msg => msg.author.displayAvatarURL({ format: 'png', size: 1024 })
|
||||
}
|
||||
]
|
||||
});
|
||||
}
|
||||
|
||||
async run(msg, { image }) {
|
||||
try {
|
||||
const { body } = await request.get(image);
|
||||
const base = await loadImage(body);
|
||||
const plate = await loadImage(path.join(__dirname, '..', '..', 'assets', 'images', 'for-five-hours.png'));
|
||||
const scaleH = plate.width / base.width;
|
||||
const height = Math.round(base.height * scaleH);
|
||||
const canvas = createCanvas(plate.width, plate.height + height);
|
||||
const ctx = canvas.getContext('2d');
|
||||
ctx.drawImage(base, 0, 0, plate.width, height);
|
||||
ctx.drawImage(plate, 0, height + 1);
|
||||
const attachment = canvas.toBuffer();
|
||||
if (Buffer.byteLength(attachment) > 8e+6) return msg.reply('Resulting image was above 8 MB.');
|
||||
return msg.say({ files: [{ attachment, name: 'for-five-hours.png' }] });
|
||||
} catch (err) {
|
||||
return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
|
||||
}
|
||||
}
|
||||
};
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "xiao",
|
||||
"version": "117.2.0",
|
||||
"version": "117.3.0",
|
||||
"description": "Your personal server companion.",
|
||||
"main": "Xiao.js",
|
||||
"scripts": {
|
||||
|
||||
Reference in New Issue
Block a user