god i love annoying orange
This commit is contained in:
parent
6896751e86
commit
b424b2f813
88 changed files with 91 additions and 3 deletions
|
@ -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",
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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", " ")
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue