This repository has been archived on 2024-01-30. You can view files and clone it, but cannot push or open issues or pull requests.
2021-03-20 13:17:13 -05:00
|
|
|
module.exports = {
|
2021-05-07 10:15:46 -05:00
|
|
|
name: 'opensource',
|
|
|
|
description: 'Attributions to open source components used by Anitrox',
|
2022-03-26 03:58:15 -05:00
|
|
|
async execute(_0, message, _1, footer){
|
2022-03-26 11:02:17 -05:00
|
|
|
await message.channel.send({embed: {
|
2022-03-26 03:33:18 -05:00
|
|
|
"title": "Component Attribution",
|
|
|
|
"description": "Some parts of Anitrox are using open source code, and their attributions are avaliable here!",
|
|
|
|
"color": 52508,
|
2022-03-26 03:58:15 -05:00
|
|
|
"footer": footer,
|
2022-03-26 03:33:18 -05:00
|
|
|
"thumbnail": {
|
|
|
|
"url": "https://cdn.discordapp.com/attachments/803658122299572255/838854256471703602/793885335498522685.png"
|
|
|
|
},
|
|
|
|
"fields": [
|
|
|
|
{
|
|
|
|
"name": "Discord.JS",
|
|
|
|
"value": "[Check out the Discord.JS project on GitHub](https://github.com/discordjs/discord.js/)"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "The Anitrox Project",
|
|
|
|
"value": "[Check out Anitrox on GitHub](https://github.com/IDeletedSystem64/anitrox)"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "You",
|
|
|
|
"value": "Using and supporting the Anitrox Project, thank you! ❤"
|
|
|
|
}
|
|
|
|
]
|
2022-03-26 11:02:17 -05:00
|
|
|
}});
|
2022-03-26 03:33:18 -05:00
|
|
|
}
|
|
|
|
}
|