Add new Destiny 2 activities, fixes #5
This commit is contained in:
parent
617918d32d
commit
924903f5e5
|
|
@ -1,7 +1,7 @@
|
||||||
export const config = {
|
export const config = {
|
||||||
// !! NOTICE !! All fields below are required unless they are explicitly noted as OPTIONAL. If a field is OPTIONAL, do not remove it from this file, just leave it at the default value
|
// !! NOTICE !! All fields below are required unless they are explicitly noted as OPTIONAL. If a field is OPTIONAL, do not remove it from this file, just leave it at the default value
|
||||||
name: 'Group Up', // Name of the bot
|
name: 'Group Up', // Name of the bot
|
||||||
version: '2.0.1', // Version of the bot
|
version: '2.0.2', // Version of the bot
|
||||||
token: 'the_bot_token', // Discord API Token for this bot
|
token: 'the_bot_token', // Discord API Token for this bot
|
||||||
localToken: 'local_testing_token', // Discord API Token for a secondary OPTIONAL testing bot, THIS SHOULD BE DIFFERENT FROM "token"
|
localToken: 'local_testing_token', // Discord API Token for a secondary OPTIONAL testing bot, THIS SHOULD BE DIFFERENT FROM "token"
|
||||||
prefix: '/', // Prefix for all commands, as this bot uses slash commands, this needs to be '/'
|
prefix: '/', // Prefix for all commands, as this bot uses slash commands, this needs to be '/'
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,14 @@ export const Activities: Array<Activity> = [
|
||||||
{
|
{
|
||||||
name: 'Raids',
|
name: 'Raids',
|
||||||
options: [
|
options: [
|
||||||
|
{
|
||||||
|
name: 'The Desert Perpetual (Epic)',
|
||||||
|
maxMembers: 6,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'The Desert Perpetual',
|
||||||
|
maxMembers: 6,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "Salvation's Edge",
|
name: "Salvation's Edge",
|
||||||
maxMembers: 6,
|
maxMembers: 6,
|
||||||
|
|
@ -56,6 +64,18 @@ export const Activities: Array<Activity> = [
|
||||||
{
|
{
|
||||||
name: 'Dungeons',
|
name: 'Dungeons',
|
||||||
options: [
|
options: [
|
||||||
|
{
|
||||||
|
name: 'Equilibrium',
|
||||||
|
maxMembers: 3,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Sundered Doctrine',
|
||||||
|
maxMembers: 3,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Vesper's Host",
|
||||||
|
maxMembers: 3,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "Warlord's Ruin",
|
name: "Warlord's Ruin",
|
||||||
maxMembers: 3,
|
maxMembers: 3,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue