Add northern story art lazy loading

This commit is contained in:
2026-06-24 16:36:37 +09:00
parent 384ce7725c
commit 9fae89a55f
10 changed files with 247 additions and 343 deletions

View File

@@ -0,0 +1,46 @@
import storyChaosUrl from '../../assets/images/story/01-yellow-turban-chaos.png';
import storyLiuBeiUrl from '../../assets/images/story/02-liu-bei-resolve.png';
import storyThreeHeroesUrl from '../../assets/images/story/03-three-heroes-meet.png';
import storyMilitiaUrl from '../../assets/images/story/04-volunteer-militia.png';
import storySortieUrl from '../../assets/images/story/05-first-sortie.png';
import storyYellowPursuitUrl from '../../assets/images/story/06-yellow-turban-pursuit.png';
import storyAntiDongPassUrl from '../../assets/images/story/07-anti-dong-pass.png';
import storyXuzhouHandoverUrl from '../../assets/images/story/08-xuzhou-handover.png';
import storyWanderingRoadUrl from '../../assets/images/story/09-wandering-road.png';
import storyWolongCottageUrl from '../../assets/images/story/10-wolong-cottage.png';
import storyRedCliffsFireUrl from '../../assets/images/story/11-red-cliffs-fire.png';
import storyYizhouMountainPassUrl from '../../assets/images/story/12-yizhou-mountain-pass.png';
import storyNorthernExpeditionUrl from '../../assets/images/story/13-northern-expedition.png';
import storyNanzhongPacificationUrl from '../../assets/images/story/14-nanzhong-pacification.png';
import storyYilingBaidiAftermathUrl from '../../assets/images/story/15-yiling-baidi-aftermath.png';
import storyQishanRenewedOffensiveUrl from '../../assets/images/story/16-qishan-renewed-offensive.png';
import storyTianshuiFrontUrl from '../../assets/images/story/17-tianshui-front.png';
import storyJietingCrisisUrl from '../../assets/images/story/18-jieting-crisis.png';
import storyChencangSiegeUrl from '../../assets/images/story/19-chencang-siege.png';
import storyWuduYinpingUrl from '../../assets/images/story/20-wudu-yinping.png';
import storyHanzhongRainDefenseUrl from '../../assets/images/story/21-hanzhong-rain-defense.png';
export const storyBackgroundAssets: Record<string, string> = {
'story-chaos': storyChaosUrl,
'story-liu-bei': storyLiuBeiUrl,
'story-three-heroes': storyThreeHeroesUrl,
'story-militia': storyMilitiaUrl,
'story-sortie': storySortieUrl,
'story-yellow-pursuit': storyYellowPursuitUrl,
'story-anti-dong': storyAntiDongPassUrl,
'story-xuzhou': storyXuzhouHandoverUrl,
'story-wandering': storyWanderingRoadUrl,
'story-wolong': storyWolongCottageUrl,
'story-red-cliffs': storyRedCliffsFireUrl,
'story-yizhou': storyYizhouMountainPassUrl,
'story-northern': storyNorthernExpeditionUrl,
'story-nanzhong': storyNanzhongPacificationUrl,
'story-yiling-baidi': storyYilingBaidiAftermathUrl,
'story-qishan-renewed': storyQishanRenewedOffensiveUrl,
'story-tianshui-front': storyTianshuiFrontUrl,
'story-jieting-crisis': storyJietingCrisisUrl,
'story-chencang-siege': storyChencangSiegeUrl,
'story-wudu-yinping': storyWuduYinpingUrl,
'story-hanzhong-rain': storyHanzhongRainDefenseUrl,
'story-resolve': storyLiuBeiUrl
};