2021-01-19 14:02:09 -06:00
module . exports = {
name : 'invite' ,
2022-03-18 14:54:14 -05:00
description : 'Add Anitrox to your beautiful server!' ,
syntax : [ ] ,
2021-01-19 14:02:09 -06:00
execute ( client , message ) {
2022-03-18 14:54:14 -05:00
const { footerTxt } = require ( '../config.json' ) ;
2021-02-24 22:36:30 -06:00
const embed = {
2022-03-18 14:54:14 -05:00
"title" : "Add Anitrox to your Server!" ,
2021-02-24 22:36:30 -06:00
"description" : "Weather you want stable, or that squeaky clean fresh PTB build, we gotchu." ,
"color" : 9442302 ,
"footer" : {
2022-03-18 14:54:14 -05:00
"icon_url" : message . author . displayAvatarURL ( ) ,
"text" : footerTxt
2021-02-24 22:36:30 -06:00
} ,
"thumbnail" : {
"url" : "https://cdn.discordapp.com/attachments/803658122299572255/814352905394061322/anitroxaddsrvr.png"
} ,
"fields" : [
{
"name" : "Anitrox" ,
2022-03-18 14:54:14 -05:00
"value" : "Get the ripe off the vine Anitrox! \n [Add Anitrox to your server](https://discord.com/oauth2/authorize?client_id=576805923964715018&scope=bot&permissions=8)"
2021-02-24 22:36:30 -06:00
} ,
{
"name" : "Anitrox PTB (Public Test Build)" ,
2022-03-18 14:54:14 -05:00
"value" : "So you want the fresh and hot builds straight from the oven? We gotchu \n [Add Anitrox PTB to your server](https://discord.com/oauth2/authorize?client_id=489125054261755925&scope=bot&permissions=66186303)"
2021-02-25 01:03:33 -06:00
} ,
{
"name" : "Need help?" ,
2022-03-18 14:54:14 -05:00
"value" : "Come join the Anitrox Support Server, for support and much more!\n [Anitrox Support Server](https://discord.gg/grebRGsBZ3)"
2021-02-24 22:36:30 -06:00
}
2021-02-25 01:03:33 -06:00
2021-02-24 22:36:30 -06:00
]
} ;
message . channel . send ( { embed } ) ;
2021-01-19 14:02:09 -06:00
} ,
} ;