2021-06-12 12:53:51 +02:00
const { Client , Message , MessageEmbed } = require ( "discord.js" ) ;
module . exports = {
name : "fight" ,
2021-06-14 12:53:39 +02:00
description : "Goooooooooooooooolag!" ,
timeout : 15000 ,
2021-06-24 09:53:19 +02:00
2021-06-12 12:53:51 +02:00
run : async ( client , message , args ) => {
2021-06-14 12:53:39 +02:00
const gaes = [
"Gae" ,
"Super Gae" ,
"Ultra Gae" ,
"Snow Gae" ,
"Ultimate Gae" ,
"Terminal Gae" ,
"Akimbo Gae" ,
"Dead(extended timer)" ,
"Mega Gae" ,
"Cheez Gae" ,
"Gath Gae" ,
"Koosun Gae" ,
"KDR Gae" ,
"Gaezer Gae" ,
"Big Gae" ,
"Horni Gae" ,
"Zero Gae" ,
"Gae beyond repair" ,
"Dead× 2(extended timer)" ,
"Not Gae" ,
"Animus Gae" ,
"Dust Gae" ,
"Orcus Gae" ,
"Gulag Cleaner" ,
"Kedar Gae" ,
"Smol Gae" ,
"Meta Gae" ,
"Mono Gae" ,
"Stippled Gae" ,
"BSA Gae" ,
"Oreo Gae" ,
"Random Gae" ,
"Tortol Gae" ,
"Amogus Gae" ,
"Gae× 2" ,
"Dan Gae" ,
"Real Gae©®™" ,
"Mastered Ultra Instinct Gae" ,
"Bamboozled" ,
"More Gae" ,
"Morrre Gae" ,
"Most Gae" ,
"Undisputable Gae" ,
"Gae Prince of Horni" ,
"Gae with Y" ,
"Phatopenisis Gae" ,
"Gathophile" ,
"a Bot" ,
"locknload with 200 round RPD gae" ,
"ros gae" ,
2021-06-24 09:53:19 +02:00
"Cath Gae" ,
"Cat drinking a cat gae" ,
"Night Gae" ,
2021-06-12 12:53:51 +02:00
] ;
2021-06-14 12:53:39 +02:00
const gae = gaes [ Math . floor ( Math . random ( ) * gaes . length ) ] ;
const embed = new MessageEmbed ( )
. setTitle ( "**Gulag Fight**" )
. setDescription (
2021-06-24 09:53:19 +02:00
` ** ${ message . author } has taken a chance at redemption in The Gulag. \n You fight only to find out that you're \` ${ gae } \` . If you somehow turned out to not be gae, DM an admin to get your timer halved ||only if your mute is less than 69m||** `
2021-06-14 12:53:39 +02:00
)
. setColor ( 5198940 ) ;
message . channel . send ( embed ) ;
2021-06-12 12:53:51 +02:00
} ,
} ;