god i love annoying orange

This commit is contained in:
murm 2023-03-19 01:10:48 -04:00
parent 6896751e86
commit b424b2f813
88 changed files with 91 additions and 3 deletions

View file

@ -2,6 +2,7 @@ import Command from "../../classes/command.js";
import { random } from "../../utils/misc.js";
class EightBallCommand extends Command {
static category = "general"
static responses = [
"It is certain",
"It is decidedly so",

View file

@ -2,6 +2,7 @@ import { request } from "undici";
import Command from "../../classes/command.js";
class AncientCommand extends Command {
static category = "general"
async run() {
// await this.acknowledge();
const controller = new AbortController();

View file

@ -2,6 +2,7 @@ import { request } from "undici";
import Command from "../../classes/command.js";
class BirdCommand extends Command {
static category = "general"
async run() {
// await this.acknowledge();
const controller = new AbortController();

View file

@ -2,6 +2,7 @@ import { request } from "undici";
import Command from "../../classes/command.js";
class CatCommand extends Command {
static category = "general"
async run() {
// await this.acknowledge();
const controller = new AbortController();

View file

@ -1,6 +1,7 @@
import Command from "../../classes/command.js";
class DiceCommand extends Command {
static category = "general"
async run() {
const max = this.options.max ?? parseInt(this.args[0]);
if (!max) {

View file

@ -2,6 +2,7 @@ import { request } from "undici";
import Command from "../../classes/command.js";
class DogCommand extends Command {
static category = "general"
async run() {
// await this.acknowledge();
const controller = new AbortController();

View file

@ -1,6 +1,7 @@
import ImageCommand from "../../classes/imageCommand.js";
class HomebrewCommand extends ImageCommand {
static category = "image-editing"
params() {
return {
caption: (this.options.text ?? this.args.join(" ")).toLowerCase().replaceAll("\n", " ")

View file

@ -3,6 +3,7 @@ import ImageCommand from "../../classes/imageCommand.js";
import { cleanMessage } from "../../utils/misc.js";
class SonicCommand extends ImageCommand {
static category = "image-editing"
params() {
const cleanedMessage = cleanMessage(this.message ?? this.interaction, this.options.text ?? this.args.join(" "));
return {

View file

@ -2,6 +2,7 @@ import { request } from "undici";
import Command from "../../classes/command.js";
class WikihowCommand extends Command {
static category = "general"
async run() {
// await this.acknowledge();
const controller = new AbortController();