Skip to content

Commit

Permalink
Add Crota's End
Browse files Browse the repository at this point in the history
  • Loading branch information
gomander committed Sep 11, 2023
1 parent fec1c7a commit 21fc908
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
6 changes: 6 additions & 0 deletions client/src/components/rad-checklists/CrotasEnd.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<template>
<h2>Crota's End</h2>
</template>

<script setup lang="ts">
</script>
3 changes: 2 additions & 1 deletion client/src/pages/RADChecklistPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ const raids = [
{ name: 'Vow of the Disciple', id: 'vow-of-the-disciple' },
{ name: 'King\'s Fall', id: 'kings-fall' },
{ name: 'Root of Nightmares', id: 'root-of-nightmares' },
{ name: 'Crota\'s End', id: 'crotas-end' }
]
const groupId = computed(() => route.params.id as string)
Expand Down Expand Up @@ -162,4 +163,4 @@ const showCreateGroupForm = ref(false)
const player = ref<BungieMember | null>(userStore.bungieMember)
watch(player, () => goToSolo())
</script>
</script>
4 changes: 4 additions & 0 deletions client/src/router/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ const routes: RouteRecordRaw[] = [
path: 'root-of-nightmares',
component: () => import('components/rad-checklists/RootOfNightmares.vue')
},
{
path: 'crotas-end',
component: () => import('components/rad-checklists/CrotasEnd.vue')
},
]
}
]
Expand Down
4 changes: 3 additions & 1 deletion client/src/types/bungie.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ export enum RaidTriumphCategories {
VowOfTheDisciple = 3779087602,
KingsFall = 3596566041,
RootOfNightmares = 4114450368,
CrotasEnd = 2782956855,
}

export enum RaidTitleTriumphCategories {
Expand All @@ -94,4 +95,5 @@ export enum RaidTitleTriumphCategories {
VowOfTheDisciple = 2886738008,
KingsFall = 2613142083,
RootOfNightmares = 1976056830,
}
CrotasEnd = 238107129,
}

0 comments on commit 21fc908

Please sign in to comment.