diff --git a/docs/battle-map-terrain-atlas-pipeline.md b/docs/battle-map-terrain-atlas-pipeline.md index f64cb27..8b56319 100644 --- a/docs/battle-map-terrain-atlas-pipeline.md +++ b/docs/battle-map-terrain-atlas-pipeline.md @@ -2,7 +2,7 @@ ## Scope -The first eight campaign battles now use the same hand-painted tactical map pipeline. The renderer still reads the original scenario tile coordinates and battle logic; only the map texture asset changes from flat/vector map art to low-contrast raster terrain. +The first nine campaign battles now use the same hand-painted tactical map pipeline. The renderer still reads the original scenario tile coordinates and battle logic; only the map texture asset changes from flat/vector map art to low-contrast raster terrain. ## Art Direction @@ -25,6 +25,7 @@ python scripts/generate-handpaint-map-sample.py --map fifth --webp-quality 90 python scripts/generate-handpaint-map-sample.py --map sixth --webp-quality 90 python scripts/generate-handpaint-map-sample.py --map seventh --webp-quality 90 python scripts/generate-handpaint-map-sample.py --map eighth --webp-quality 90 +python scripts/generate-handpaint-map-sample.py --map ninth --webp-quality 90 ``` ## Current Assets @@ -37,6 +38,7 @@ python scripts/generate-handpaint-map-sample.py --map eighth --webp-quality 90 - `src/assets/images/battle/sixth-battle-map.webp` - `src/assets/images/battle/seventh-battle-map.webp` - `src/assets/images/battle/eighth-battle-map.webp` +- `src/assets/images/battle/ninth-battle-map.webp` ## QA Outputs @@ -54,5 +56,7 @@ python scripts/generate-handpaint-map-sample.py --map eighth --webp-quality 90 - `docs/seventh-battle-map-handpaint-preview.png` - `docs/eighth-battle-map-handpaint-before-after.png` - `docs/eighth-battle-map-handpaint-preview.png` +- `docs/ninth-battle-map-handpaint-before-after.png` +- `docs/ninth-battle-map-handpaint-preview.png` Browser screenshots are saved per verification run after build/deploy. diff --git a/docs/ninth-battle-map-handpaint-before-after.png b/docs/ninth-battle-map-handpaint-before-after.png new file mode 100644 index 0000000..25fb321 Binary files /dev/null and b/docs/ninth-battle-map-handpaint-before-after.png differ diff --git a/docs/ninth-battle-map-handpaint-preview.png b/docs/ninth-battle-map-handpaint-preview.png new file mode 100644 index 0000000..70b4443 Binary files /dev/null and b/docs/ninth-battle-map-handpaint-preview.png differ diff --git a/scripts/generate-handpaint-map-sample.py b/scripts/generate-handpaint-map-sample.py index 01469b1..ccba1ca 100644 --- a/scripts/generate-handpaint-map-sample.py +++ b/scripts/generate-handpaint-map-sample.py @@ -91,6 +91,15 @@ MAP_CONFIGS = { "before": BATTLE_IMAGE_DIR / "eighth-battle-map.svg", "seed": 240774, }, + "ninth": { + "slug": "ninth-battle-map", + "terrain_export": "ninthBattleMap", + "units_export": "ninthBattleUnits", + "ally_positions_export": "ninthBattleAllyPositions", + "out": BATTLE_IMAGE_DIR / "ninth-battle-map.webp", + "before": BATTLE_IMAGE_DIR / "ninth-battle-map.svg", + "seed": 240784, + }, } diff --git a/src/assets/images/battle/ninth-battle-map.svg b/src/assets/images/battle/ninth-battle-map.svg deleted file mode 100644 index b405ddf..0000000 --- a/src/assets/images/battle/ninth-battle-map.svg +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/assets/images/battle/ninth-battle-map.webp b/src/assets/images/battle/ninth-battle-map.webp new file mode 100644 index 0000000..d1f98c3 Binary files /dev/null and b/src/assets/images/battle/ninth-battle-map.webp differ diff --git a/src/game/data/battleMapAssets.ts b/src/game/data/battleMapAssets.ts index 970ecd3..17fc786 100644 --- a/src/game/data/battleMapAssets.ts +++ b/src/game/data/battleMapAssets.ts @@ -34,7 +34,7 @@ import fortyThirdBattleMapUrl from '../../assets/images/battle/forty-third-battl import fourteenthBattleMapUrl from '../../assets/images/battle/fourteenth-battle-map.svg'; import fourthBattleMapUrl from '../../assets/images/battle/fourth-battle-map.webp'; import nineteenthBattleMapUrl from '../../assets/images/battle/nineteenth-battle-map.svg'; -import ninthBattleMapUrl from '../../assets/images/battle/ninth-battle-map.svg'; +import ninthBattleMapUrl from '../../assets/images/battle/ninth-battle-map.webp'; import secondBattleMapUrl from '../../assets/images/battle/second-battle-map.webp'; import seventhBattleMapUrl from '../../assets/images/battle/seventh-battle-map.webp'; import seventeenthBattleMapUrl from '../../assets/images/battle/seventeenth-battle-map.svg';