import { Command, CommandoMessage } from 'discord.js-commando'; import SubredditCommand from '../../models/commands/Subreddit.js' module.exports = class ShowerThoughtFun extends SubredditCommand { constructor(client) { super(client, { name: 'showerthought', aliases: [ 'shower-thought', 'showerthoughts', 'shower-thoughts' ], group: 'fun', memberName: 'showerthought', description: 'Gives you a shower thought from **r/Showerthought**.', examples: ['uwu!showerthought'], throttling: { usages: 5, duration: 30 }, userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'], clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'], subreddit: 'Showerthoughts' }); } generateText(post) { return post.title; } };