Skip to content

Commit

Permalink
patreon update
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherBThai committed Nov 7, 2023
1 parent 79bb0c0 commit 0d1c831
Show file tree
Hide file tree
Showing 4 changed files with 69 additions and 3 deletions.
7 changes: 6 additions & 1 deletion src/commands/commandList/patreon/alterWeapon.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,12 @@ function quincey(text, opt) {
let image =
'https://cdn.discordapp.com/attachments/718562499703603251/1074740072399765707/20230212_191407.png';
text.color = 10183532;
switch (opt.wid) {

let wid = 'unknown';
if (opt.widList?.length === 1) {
wid = parseInt(opt.widList[0]);
}
switch (wid) {
case 1:
image =
'https://media.discordapp.net/attachments/718562499703603251/1074740362188435487/20230211_132513.png?width=767&height=192';
Expand Down
32 changes: 32 additions & 0 deletions src/commands/commandList/patreon/collectibles/crossfox.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/*
* OwO Bot for Discord
* Copyright (C) 2023 Christopher Thai
* This software is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International
* For more information, see README.md and LICENSE
*/

const Collectible = require('./CollectibleInterface.js');

class Crossfox extends Collectible {
constructor() {
super();

this.key = 'crossfox';
this.emoji = '<:crossfox:1171388724639178782>';
this.alias = ['crossfox', 'melanisticfox'];
this.owners = ['384202884553768961', '778204442411008021'];
this.fullControl = true;
this.ownerOnly = true;
this.giveAmount = 1;
this.pluralName = 'Cross Foxes';
this.singleName = 'Cross Fox';
this.description = 'The cross fox is a variant of the red fox which has a long dark stripe running down its back, intersecting another stripe to form a cross over the shoulders. Due to a rare condition called melanism, the commonly red fur comes with some dark stripe.';
this.displayMsg = '?emoji? **| ?user?**, you currently have ?count? ?pluralName?!';
this.brokeMsg = ', you do not have any Cross Foxes! >:c';
this.giveMsg = '?emoji? **| ?receiver?**, ?giver? gave you 1 Cross Fox!';

this.init();
}
}

module.exports = new Crossfox();
29 changes: 29 additions & 0 deletions src/commands/commandList/patreon/collectibles/magoo.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/*
* OwO Bot for Discord
* Copyright (C) 2023 Christopher Thai
* This software is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International
* For more information, see README.md and LICENSE
*/

const Collectible = require('./CollectibleInterface.js');

class Magoo extends Collectible {
constructor() {
super();

this.key = 'magoo';
this.emoji = '<:magoo:1171388723666108487>';
this.owners = ['384202884553768961', '778204442411008021'];
this.fullControl = true;
this.ownerOnly = true;
this.giveAmount = 1;
this.description = 'Mr. Magoo is a fictional cartoon character voiced by Jim Backus.\nMr. Magoo is a wealthy elderly retiree who gets into comical situations as a result of his extreme near-sightedness, compounded by his stubborn refusal to admit the problem.';
this.displayMsg = '?emoji? **| ?user?**, you currently have ?count? Magoo?plural?!';
this.brokeMsg = ', you do not have any Magoos! >:c';
this.giveMsg = '?emoji? **| ?receiver?**, ?giver? gave you 1 Magoo!';

this.init();
}
}

module.exports = new Magoo();
4 changes: 2 additions & 2 deletions src/commands/commandList/patreon/utils/collectibles.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
"emoji": "<a:sonic:889369004739817522>",
"owners": ["384202884553768961"],
"fullControl": true,
"ownerOnly": false,
"ownerOnly": true,
"dailyOnly": false,
"giveAmount": 2,
"description": "Give two sonics to someone! You can only gain one if you receive it!",
Expand Down Expand Up @@ -449,7 +449,7 @@
"kfire": {
"alias": [],
"emoji": "<a:kfire:1016133894090788914>",
"owners": ["792369332654964746", "759412813617430619"],
"owners": ["759412813617430619", "778204442411008021"],
"dataOverride": "kfire3",
"pluralName": "",
"singleName": "",
Expand Down

0 comments on commit 0d1c831

Please