diff --git a/docs/battle-map-terrain-atlas-pipeline.md b/docs/battle-map-terrain-atlas-pipeline.md index 1baf142..69aedd1 100644 --- a/docs/battle-map-terrain-atlas-pipeline.md +++ b/docs/battle-map-terrain-atlas-pipeline.md @@ -2,7 +2,7 @@ ## Scope -The first six 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 seven 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 @@ -23,6 +23,7 @@ python scripts/generate-handpaint-map-sample.py --map third --webp-quality 90 python scripts/generate-handpaint-map-sample.py --map fourth --webp-quality 90 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 ``` ## Current Assets @@ -33,6 +34,7 @@ python scripts/generate-handpaint-map-sample.py --map sixth --webp-quality 90 - `src/assets/images/battle/fourth-battle-map.webp` - `src/assets/images/battle/fifth-battle-map.webp` - `src/assets/images/battle/sixth-battle-map.webp` +- `src/assets/images/battle/seventh-battle-map.webp` ## QA Outputs @@ -46,5 +48,7 @@ python scripts/generate-handpaint-map-sample.py --map sixth --webp-quality 90 - `docs/fifth-battle-map-handpaint-preview.png` - `docs/sixth-battle-map-handpaint-before-after.png` - `docs/sixth-battle-map-handpaint-preview.png` +- `docs/seventh-battle-map-handpaint-before-after.png` +- `docs/seventh-battle-map-handpaint-preview.png` Browser screenshots are saved per verification run after build/deploy. diff --git a/docs/seventh-battle-map-handpaint-before-after.png b/docs/seventh-battle-map-handpaint-before-after.png new file mode 100644 index 0000000..7100f9d Binary files /dev/null and b/docs/seventh-battle-map-handpaint-before-after.png differ diff --git a/docs/seventh-battle-map-handpaint-preview.png b/docs/seventh-battle-map-handpaint-preview.png new file mode 100644 index 0000000..3eeac6a Binary files /dev/null and b/docs/seventh-battle-map-handpaint-preview.png differ diff --git a/scripts/generate-handpaint-map-sample.py b/scripts/generate-handpaint-map-sample.py index dd3fafa..7a35e77 100644 --- a/scripts/generate-handpaint-map-sample.py +++ b/scripts/generate-handpaint-map-sample.py @@ -73,6 +73,15 @@ MAP_CONFIGS = { "before": BATTLE_IMAGE_DIR / "sixth-battle-map.svg", "seed": 240754, }, + "seventh": { + "slug": "seventh-battle-map", + "terrain_export": "seventhBattleMap", + "units_export": "seventhBattleUnits", + "ally_positions_export": "seventhBattleAllyPositions", + "out": BATTLE_IMAGE_DIR / "seventh-battle-map.webp", + "before": BATTLE_IMAGE_DIR / "seventh-battle-map.svg", + "seed": 240764, + }, } diff --git a/src/assets/images/battle/seventh-battle-map.svg b/src/assets/images/battle/seventh-battle-map.svg deleted file mode 100644 index 90a435c..0000000 --- a/src/assets/images/battle/seventh-battle-map.svg +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/assets/images/battle/seventh-battle-map.webp b/src/assets/images/battle/seventh-battle-map.webp new file mode 100644 index 0000000..052f546 Binary files /dev/null and b/src/assets/images/battle/seventh-battle-map.webp differ diff --git a/src/game/data/battleMapAssets.ts b/src/game/data/battleMapAssets.ts index 7cdc3a4..a838605 100644 --- a/src/game/data/battleMapAssets.ts +++ b/src/game/data/battleMapAssets.ts @@ -36,7 +36,7 @@ import fourthBattleMapUrl from '../../assets/images/battle/fourth-battle-map.web import nineteenthBattleMapUrl from '../../assets/images/battle/nineteenth-battle-map.svg'; import ninthBattleMapUrl from '../../assets/images/battle/ninth-battle-map.svg'; import secondBattleMapUrl from '../../assets/images/battle/second-battle-map.webp'; -import seventhBattleMapUrl from '../../assets/images/battle/seventh-battle-map.svg'; +import seventhBattleMapUrl from '../../assets/images/battle/seventh-battle-map.webp'; 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';