Skip to content

Commit

Permalink
Update banner
Browse files Browse the repository at this point in the history
  • Loading branch information
MadeBaruna committed Jul 17, 2024
1 parent 54518f5 commit 0956413
Show file tree
Hide file tree
Showing 4 changed files with 69 additions and 4 deletions.
22 changes: 22 additions & 0 deletions src/data/banners.ts
Original file line number Diff line number Diff line change
Expand Up @@ -722,6 +722,17 @@ export const banners: { [key: number]: Banner } = {
featured: ['sigewinne', 'furina'],
featuredRare: ['noelle', 'gaming', 'rosaria'],
},
300068: {
name: 'In the Name of the Rosula',
image: 2,
shortName: 'Navia',
start: '2024-07-17 06:00:00',
end: '2024-08-06 17:59:00',
color: '#fadbf8',
featured: ['navia', 'nilou'],
featuredRare: ['kirara', 'kaveh', 'ningguang'],
timezoneDependent: true,
},

400001: {
name: 'Epitome Invocation',
Expand Down Expand Up @@ -1520,6 +1531,17 @@ export const banners: { [key: number]: Banner } = {
featured: ['silvershower_heartstrings', 'splendor_of_tranquil_waters'],
featuredRare: ['lithic_blade', 'lions_roar', 'favonius_lance', 'favonius_codex', 'sacrificial_bow'],
},
400067: {
name: 'Epitome Invocation',
image: 67,
shortName: 'Verdict',
start: '2024-07-17 06:00:00',
end: '2024-08-06 17:59:00',
color: '#eae5e1',
featured: ['verdict', 'key_of_khaj-nisut'],
featuredRare: ['xiphos_moonlight', 'the_bell', 'dragons_bane', 'eye_of_perception', 'rust'],
timezoneDependent: true,
},

500001: {
name: 'Ode to the Dawn Breeze',
Expand Down
43 changes: 43 additions & 0 deletions src/migrations/1721200362432-UpdateBanner.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
import { MigrationInterface, QueryRunner } from 'typeorm';
import { Banner } from '../entities/banner';

const banners = {
characters: {
name: 'In the Name of the Rosula',
start: '2024-06-05 06:00:00',
end: '2024-06-25 17:59:00',
id: 300068,
},
weapons: {
name: 'Epitome Invocation',
start: '2024-06-05 06:00:00',
end: '2024-06-25 17:59:00',
id: 400067,
},
};

export class UpdateBanner1721200362432 implements MigrationInterface {
public async up(queryRunner: QueryRunner): Promise<void> {
const newCharacterBanner = banners.characters;
const characterBanner = new Banner();
characterBanner.id = newCharacterBanner.id;
characterBanner.type = 'characters';
characterBanner.name = newCharacterBanner.name;
characterBanner.start = `${newCharacterBanner.start}+8`;
characterBanner.end = `${newCharacterBanner.end}+8`;

const newWeaponBanner = banners.weapons;
const weaponBanner = new Banner();
weaponBanner.id = newWeaponBanner.id;
weaponBanner.type = 'weapons';
weaponBanner.name = newWeaponBanner.name;
weaponBanner.start = `${newWeaponBanner.start}+8`;
weaponBanner.end = `${newWeaponBanner.end}+8`;

await queryRunner.manager.save([characterBanner, weaponBanner]);
}

public async down(queryRunner: QueryRunner): Promise<void> {
await queryRunner.manager.delete(Banner, [300068, 400067]);
}
}
4 changes: 2 additions & 2 deletions src/queue/tally.ts
Original file line number Diff line number Diff line change
Expand Up @@ -306,8 +306,8 @@ async function calculateWishTally(job: Job<number>): Promise<void> {
calculated[id] = result;
}

const LATEST_CHARACTER_BANNER = 300067;
const LATEST_WEAPON_BANNER = 400066;
const LATEST_CHARACTER_BANNER = 300068;
const LATEST_WEAPON_BANNER = 400067;
const LATEST_CHRONICLED_BANNER = 500001;
const TOTAL_BANNER = LATEST_CHARACTER_BANNER - 300009;

Expand Down
4 changes: 2 additions & 2 deletions src/routes/wish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import { WishSummaryRequest } from '../types/wishSummaryRequest';
import { WishSummaryLuckRequest } from '../types/wishSummaryLuckRequest';
import { wishSummary, wishSummaryLuck4, wishSummaryLuck5, wishSummaryWinRateOff4, wishSummaryWinRateOff5 } from '../stores/wishSummary';

const LATEST_CHARACTER_BANNER = 300067;
const LATEST_WEAPON_BANNER = 400066;
const LATEST_CHARACTER_BANNER = 300068;
const LATEST_WEAPON_BANNER = 400067;

export default async function (server: FastifyInstance): Promise<void> {
server.get(
Expand Down

0 comments on commit 0956413

Please sign in to comment.