diff options
author | TymanWasTaken <32660892+tymanwastaken@users.noreply.github.com> | 2021-05-11 11:02:09 -0600 |
---|---|---|
committer | TymanWasTaken <32660892+tymanwastaken@users.noreply.github.com> | 2021-05-11 11:02:09 -0600 |
commit | ccd25403da46b68bae2126bd7d56512107bd4459 (patch) | |
tree | e89b2d45757918bf1cefe56de1e39f9f6a02f7ad /src/lib/extensions | |
parent | 199d413119f3656d9f2da118f91a22a3cc55f6bb (diff) | |
download | tanzanite-ccd25403da46b68bae2126bd7d56512107bd4459.tar.gz tanzanite-ccd25403da46b68bae2126bd7d56512107bd4459.tar.bz2 tanzanite-ccd25403da46b68bae2126bd7d56512107bd4459.zip |
add role command
Diffstat (limited to 'src/lib/extensions')
-rw-r--r-- | src/lib/extensions/Util.ts | 36 |
1 files changed, 32 insertions, 4 deletions
diff --git a/src/lib/extensions/Util.ts b/src/lib/extensions/Util.ts index 771876b..f4e1315 100644 --- a/src/lib/extensions/Util.ts +++ b/src/lib/extensions/Util.ts @@ -16,10 +16,10 @@ export interface uuidRes { uuid: string; username: string; username_history?: - | { - username: string; - }[] - | null; + | { + username: string; + }[] + | null; textures: { custom: boolean; slim: boolean; @@ -271,4 +271,32 @@ export class Util extends ClientUtil { .json()) as uuidRes; return apiRes.uuid; } + + public moulberryBushRoleMap = [ + { name: '*', id: '792453550768390194' }, + { name: 'Admin Perms', id: '746541309853958186' }, + { name: 'Sr. Moderator', id: '782803470205190164' }, + { name: 'Moderator', id: '737308259823910992' }, + { name: 'Helper', id: '737440116230062091' }, + { name: 'Trial Helper', id: '783537091946479636' }, + { name: 'Contributor', id: '694431057532944425' }, + { name: 'Giveaway Donor', id: '784212110263451649' }, + { name: 'Giveaway (200m)', id: '810267756426690601' }, + { name: 'Giveaway (100m)', id: '801444430522613802' }, + { name: 'Giveaway (50m)', id: '787497512981757982' }, + { name: 'Giveaway (25m)', id: '787497515771232267' }, + { name: 'Giveaway (10m)', id: '787497518241153025' }, + { name: 'Giveaway (5m)', id: '787497519768403989' }, + { name: 'Giveaway (1m)', id: '787497521084891166' }, + { name: 'Suggester', id: '811922322767609877' }, + { name: 'Partner', id: '767324547312779274' }, + { name: 'Level Locked', id: '784248899044769792' }, + { name: 'No Files', id: '786421005039173633' }, + { name: 'No Reactions', id: '786421270924361789' }, + { name: 'No Links', id: '786421269356740658' }, + { name: 'No Bots', id: '786804858765312030' }, + { name: 'No VC', id: '788850482554208267' }, + { name: 'No Giveaways', id: '808265422334984203' }, + { name: 'No Support', id: '790247359824396319' } + ]; } |