diff --git a/website/client/assets/css/sprites.css b/website/client/assets/css/sprites.css index 07036ce43f..906e3bc5a2 100755 --- a/website/client/assets/css/sprites.css +++ b/website/client/assets/css/sprites.css @@ -1,18 +1,5 @@ -/* Comment out for holiday events */ -/* .npc_ian { - background: url("/npc_ian.gif") no-repeat; - width: 78px; - height: 135px; -} */ - -.quest_burnout { - background: url("~assets/images/quest_burnout.gif") no-repeat; - width: 219px; - height: 249px; -} - -.quest_bewilder { - background: url("~assets/images/quest_bewilder.gif") no-repeat; +.quest_dysheartener { + background: url("~assets/images/quest_dysheartener.gif") no-repeat; width: 219px; height: 219px; } diff --git a/website/client/assets/images/quest_dysheartener.gif b/website/client/assets/images/quest_dysheartener.gif new file mode 100644 index 0000000000..f387490d69 Binary files /dev/null and b/website/client/assets/images/quest_dysheartener.gif differ diff --git a/website/client/assets/images/rage_strike2x.png b/website/client/assets/images/rage_strike2x.png new file mode 100644 index 0000000000..7200927ee6 Binary files /dev/null and b/website/client/assets/images/rage_strike2x.png differ diff --git a/website/client/assets/images/world-boss/heart-translucent-shadow@3x.png b/website/client/assets/images/world-boss/heart-translucent-shadow@3x.png new file mode 100755 index 0000000000..c6eac6924c Binary files /dev/null and b/website/client/assets/images/world-boss/heart-translucent-shadow@3x.png differ diff --git a/website/client/assets/images/world-boss/left-hearts@3x.png b/website/client/assets/images/world-boss/left-hearts@3x.png new file mode 100755 index 0000000000..e060e73328 Binary files /dev/null and b/website/client/assets/images/world-boss/left-hearts@3x.png differ diff --git a/website/client/assets/images/world-boss/mantis-static@3x.png b/website/client/assets/images/world-boss/mantis-static@3x.png new file mode 100755 index 0000000000..393f85c125 Binary files /dev/null and b/website/client/assets/images/world-boss/mantis-static@3x.png differ diff --git a/website/client/assets/images/world-boss/right-hearts@3x.png b/website/client/assets/images/world-boss/right-hearts@3x.png new file mode 100755 index 0000000000..fa74a96495 Binary files /dev/null and b/website/client/assets/images/world-boss/right-hearts@3x.png differ diff --git a/website/client/assets/svg/check-red.svg b/website/client/assets/svg/check-red.svg new file mode 100644 index 0000000000..de992ee7c7 --- /dev/null +++ b/website/client/assets/svg/check-red.svg @@ -0,0 +1,3 @@ + + + diff --git a/website/client/assets/svg/chevron-red.svg b/website/client/assets/svg/chevron-red.svg new file mode 100644 index 0000000000..3e293c5c4c --- /dev/null +++ b/website/client/assets/svg/chevron-red.svg @@ -0,0 +1,3 @@ + + + diff --git a/website/client/assets/svg/information-red.svg b/website/client/assets/svg/information-red.svg new file mode 100644 index 0000000000..150bf8ce16 --- /dev/null +++ b/website/client/assets/svg/information-red.svg @@ -0,0 +1,3 @@ + + + diff --git a/website/client/assets/svg/rage.svg b/website/client/assets/svg/rage.svg new file mode 100644 index 0000000000..d215fe223c --- /dev/null +++ b/website/client/assets/svg/rage.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/website/client/assets/svg/sword.svg b/website/client/assets/svg/sword.svg new file mode 100644 index 0000000000..03bef0bd6b --- /dev/null +++ b/website/client/assets/svg/sword.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/website/client/components/groups/questSidebarSection.vue b/website/client/components/groups/questSidebarSection.vue index b318a95b3a..2113bb2144 100644 --- a/website/client/components/groups/questSidebarSection.vue +++ b/website/client/components/groups/questSidebarSection.vue @@ -53,12 +53,12 @@ div .grey-progress-bar .boss-health-bar(:style="{width: (group.quest.progress.hp / questData.boss.hp) * 100 + '%'}") .row.boss-details - .col-6 - span.float-left - | {{parseFloat(group.quest.progress.hp).toFixed(2)}} / {{parseFloat(questData.boss.hp).toFixed(2)}} - .col-6(v-if='userIsOnQuest') - // @TODO: Why do we not sync quset progress on the group doc? Each user could have different progress - span.float-right {{parseFloat(user.party.quest.progress.up).toFixed(1) || 0}} pending damage + .col-6 + span.float-left + | {{parseFloat(group.quest.progress.hp).toFixed(2)}} / {{parseFloat(questData.boss.hp).toFixed(2)}} + .col-6(v-if='userIsOnQuest') + // @TODO: Why do we not sync quset progress on the group doc? Each user could have different progress + span.float-right {{parseFloat(user.party.quest.progress.up).toFixed(1) || 0}} pending damage .row.rage-bar-row(v-if='questData.boss.rage') .col-12 .grey-progress-bar diff --git a/website/client/components/groups/tavern.vue b/website/client/components/groups/tavern.vue index 93a04a6a02..e81dcb8daf 100644 --- a/website/client/components/groups/tavern.vue +++ b/website/client/components/groups/tavern.vue @@ -1,5 +1,6 @@