diff --git a/docs/battle-map-terrain-atlas-pipeline.md b/docs/battle-map-terrain-atlas-pipeline.md index 8b56319..b7da3ff 100644 --- a/docs/battle-map-terrain-atlas-pipeline.md +++ b/docs/battle-map-terrain-atlas-pipeline.md @@ -2,7 +2,7 @@ ## Scope -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. +The first ten 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 @@ -26,6 +26,7 @@ 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 +python scripts/generate-handpaint-map-sample.py --map tenth --webp-quality 90 ``` ## Current Assets @@ -39,6 +40,7 @@ python scripts/generate-handpaint-map-sample.py --map ninth --webp-quality 90 - `src/assets/images/battle/seventh-battle-map.webp` - `src/assets/images/battle/eighth-battle-map.webp` - `src/assets/images/battle/ninth-battle-map.webp` +- `src/assets/images/battle/tenth-battle-map.webp` ## QA Outputs @@ -58,5 +60,7 @@ python scripts/generate-handpaint-map-sample.py --map ninth --webp-quality 90 - `docs/eighth-battle-map-handpaint-preview.png` - `docs/ninth-battle-map-handpaint-before-after.png` - `docs/ninth-battle-map-handpaint-preview.png` +- `docs/tenth-battle-map-handpaint-before-after.png` +- `docs/tenth-battle-map-handpaint-preview.png` Browser screenshots are saved per verification run after build/deploy. diff --git a/docs/tenth-battle-map-handpaint-before-after.png b/docs/tenth-battle-map-handpaint-before-after.png new file mode 100644 index 0000000..de5c599 Binary files /dev/null and b/docs/tenth-battle-map-handpaint-before-after.png differ diff --git a/docs/tenth-battle-map-handpaint-preview.png b/docs/tenth-battle-map-handpaint-preview.png new file mode 100644 index 0000000..301036d Binary files /dev/null and b/docs/tenth-battle-map-handpaint-preview.png differ diff --git a/scripts/generate-handpaint-map-sample.py b/scripts/generate-handpaint-map-sample.py index ccba1ca..84e1825 100644 --- a/scripts/generate-handpaint-map-sample.py +++ b/scripts/generate-handpaint-map-sample.py @@ -100,6 +100,15 @@ MAP_CONFIGS = { "before": BATTLE_IMAGE_DIR / "ninth-battle-map.svg", "seed": 240784, }, + "tenth": { + "slug": "tenth-battle-map", + "terrain_export": "tenthBattleMap", + "units_export": "tenthBattleUnits", + "ally_positions_export": "tenthBattleAllyPositions", + "out": BATTLE_IMAGE_DIR / "tenth-battle-map.webp", + "before": BATTLE_IMAGE_DIR / "tenth-battle-map.svg", + "seed": 240794, + }, } diff --git a/src/assets/images/battle/tenth-battle-map.svg b/src/assets/images/battle/tenth-battle-map.svg deleted file mode 100644 index 474173d..0000000 --- a/src/assets/images/battle/tenth-battle-map.svg +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/assets/images/battle/tenth-battle-map.webp b/src/assets/images/battle/tenth-battle-map.webp new file mode 100644 index 0000000..08d42f2 Binary files /dev/null and b/src/assets/images/battle/tenth-battle-map.webp differ diff --git a/src/game/data/battleMapAssets.ts b/src/game/data/battleMapAssets.ts index 17fc786..501e8d2 100644 --- a/src/game/data/battleMapAssets.ts +++ b/src/game/data/battleMapAssets.ts @@ -40,7 +40,7 @@ import seventhBattleMapUrl from '../../assets/images/battle/seventh-battle-map.w import seventeenthBattleMapUrl from '../../assets/images/battle/seventeenth-battle-map.svg'; import sixteenthBattleMapUrl from '../../assets/images/battle/sixteenth-battle-map.svg'; import sixthBattleMapUrl from '../../assets/images/battle/sixth-battle-map.webp'; -import tenthBattleMapUrl from '../../assets/images/battle/tenth-battle-map.svg'; +import tenthBattleMapUrl from '../../assets/images/battle/tenth-battle-map.webp'; import thirteenthBattleMapUrl from '../../assets/images/battle/thirteenth-battle-map.svg'; import thirtiethBattleMapUrl from '../../assets/images/battle/thirtieth-battle-map.svg'; import thirtyEighthBattleMapUrl from '../../assets/images/battle/thirty-eighth-battle-map.svg';