Skip to content
Merged

Deploy #1793

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 0 additions & 20 deletions apps/frontend/components/items/ItemsTableRowUpgrades.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
currentUpgrade3,
currentUpgrade4,
} from './convertible/data';
import { Constants } from '@/data/constants';
import { componentTooltip } from '@/shared/utils/tooltips';
import type { CharacterProps } from '@/types/props';

Expand All @@ -21,18 +20,6 @@
</script>

<style lang="scss">
.flightstones {
--image-margin-top: 0;

border-left: 1px solid var(--border-color);
padding: 0 0.4rem 0 0.2rem;
}
.flightstones-wrapper {
align-items: center;
display: flex;
gap: 4px;
justify-content: space-between;
}
.crests {
border-left: 1px solid var(--border-color);
padding: 0 0.4rem 0 0.2rem;
Expand All @@ -58,13 +45,6 @@

<td class="spacer"></td>

<td class="flightstones">
<div class="flightstones-wrapper">
<WowthingImage border={1} name="currency/{Constants.currencies.itemUpgrade}" size={24} />
{(character.currencies?.[Constants.currencies.itemUpgrade]?.quantity || 0).toLocaleString()}
</div>
</td>

{#each currencies as currencyIds}
<td class="crests">
<div class="crests-wrapper">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@
if (season.conversionCurrencyId) {
first.push([season.conversionCurrencyId, 1]);
}
if (seasonTier.lowUpgrade || seasonTier.highUpgrade) {
first.push([Constants.currencies.itemUpgrade, 1]);
}
ret.push(first);

if (season.id === 3) {
Expand Down
3 changes: 1 addition & 2 deletions apps/frontend/data/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,9 @@ export abstract class Constants {
static readonly remixMythicPlusSeason: number = 1001;

static readonly currencies = {
catalyst: 3378, // Dawnlight Manaflux [Mid S1]
catalyst: 3465, // Venomblight Manaflux [Mid S2]
conquest: 1602,
honor: 1792,
itemUpgrade: 3008, // Valorstones
};

static readonly items = {
Expand Down
2 changes: 1 addition & 1 deletion apps/frontend/data/delve.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export const delveMap: Record<number, Delve> = {
name: 'Gnarldor Isle',
shortName: 'GI',
storyRanks: {
'Adopt-a-thon': 3,
'Adopt-a-thon': 1, // killing the boss twice??
'Game Day': 3,
'Open Night': 3,
},
Expand Down
2 changes: 0 additions & 2 deletions apps/frontend/data/tasks/10-the-war-within/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,8 @@ import { twwChoresChett } from './chett';
import { twwDelves } from './delves';
import { twwHorrificVisions } from './horrific-visions';
import { twwProfessions } from './professions';
import { twwVeteranCaches } from './veteran-caches';

export const twwTasks = [
twwVeteranCaches,
twwDelves,
twwProfessions,
twwChores11_0_0,
Expand Down
16 changes: 0 additions & 16 deletions apps/frontend/data/tasks/10-the-war-within/veteran-caches.ts

This file was deleted.

1 change: 1 addition & 0 deletions apps/frontend/data/tasks/11-midnight/12-1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ const specialAssignmentUnlocks = [

const vaultDailies = [
96639, // Patrolling the Temple
96640, // Bounty of the Cursed
96641, // Relentless Strikes
96642, // Decisive Incursions
96643, // From Whence it Came
Expand Down
10 changes: 9 additions & 1 deletion apps/frontend/data/tasks/11-midnight/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,13 @@ import { midChores12_1 } from './12-1';
import { midDelves } from './delves';
import { midPrey } from './prey';
import { midProfessions } from './professions';
import { midVeteranCaches } from './veteran-caches';

export const midTasks = [midChores12_0, midChores12_1, midDelves, midPrey, midProfessions];
export const midTasks = [
midVeteranCaches,
midChores12_0,
midChores12_1,
midDelves,
midPrey,
midProfessions,
];
17 changes: 17 additions & 0 deletions apps/frontend/data/tasks/11-midnight/veteran-caches.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import { DbResetType } from '@/shared/stores/db/enums';
import type { Task } from '@/types/tasks';

export const midVeteranCaches: Task = {
key: 'midVeteranCaches',
name: '[MID] Veteran Caches',
shortName: 'Vet',
minimumLevel: 90,
chores: [93790, 93793].map((questId, index) => ({
key: `cache${index}`,
name: `{item:260193} #${index + 1}`, // Fabled Veteran's Cache
alwaysStarted: true,
questIds: [questId],
questReset: DbResetType.Weekly,
questResetForced: true,
})),
};
Loading