feat: add three bundled scenario fixtures and manifest
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"id": "hold-the-line",
|
||||
"name": "Hold the Line",
|
||||
"battlefield": {
|
||||
"width": 10,
|
||||
"height": 8,
|
||||
"terrain": {
|
||||
"2:2": "forest", "2:3": "forest", "2:4": "forest", "2:5": "forest",
|
||||
"3:2": "forest", "3:3": "forest"
|
||||
}
|
||||
},
|
||||
"units": [
|
||||
{ "id": "alpha-1", "teamId": "alpha", "position": { "x": 2, "y": 3 }, "maxHealth": 14, "health": 14, "attack": 3, "defense": 5, "speed": 2, "archetype": "defender", "abilities": [] },
|
||||
{ "id": "alpha-2", "teamId": "alpha", "position": { "x": 2, "y": 4 }, "maxHealth": 14, "health": 14, "attack": 3, "defense": 5, "speed": 2, "archetype": "defender", "abilities": [] },
|
||||
{ "id": "alpha-3", "teamId": "alpha", "position": { "x": 2, "y": 5 }, "maxHealth": 14, "health": 14, "attack": 3, "defense": 5, "speed": 2, "archetype": "defender", "abilities": [] },
|
||||
{ "id": "bravo-1", "teamId": "bravo", "position": { "x": 9, "y": 1 }, "maxHealth": 8, "health": 8, "attack": 5, "defense": 2, "speed": 3, "archetype": "striker", "abilities": ["area_damage"] },
|
||||
{ "id": "bravo-2", "teamId": "bravo", "position": { "x": 9, "y": 3 }, "maxHealth": 8, "health": 8, "attack": 5, "defense": 2, "speed": 3, "archetype": "striker", "abilities": ["area_damage"] },
|
||||
{ "id": "bravo-3", "teamId": "bravo", "position": { "x": 9, "y": 7 }, "maxHealth": 7, "health": 7, "attack": 2, "defense": 2, "speed": 3, "archetype": "support", "abilities": ["heal"] },
|
||||
{ "id": "bravo-4", "teamId": "bravo", "position": { "x": 9, "y": 4 }, "maxHealth": 6, "health": 6, "attack": 3, "defense": 1, "speed": 5, "archetype": "scout", "abilities": [] }
|
||||
],
|
||||
"deploymentZones": {
|
||||
"alpha": { "teamId": "alpha", "positions": [{ "x": 2, "y": 3 }, { "x": 2, "y": 4 }, { "x": 2, "y": 5 }] },
|
||||
"bravo": { "teamId": "bravo", "positions": [{ "x": 9, "y": 1 }, { "x": 9, "y": 3 }, { "x": 9, "y": 7 }, { "x": 9, "y": 4 }] }
|
||||
},
|
||||
"objectives": {
|
||||
"objective-1": { "id": "objective-1", "position": { "x": 4, "y": 4 } }
|
||||
},
|
||||
"victoryCondition": "hold_objective",
|
||||
"holdRoundsRequired": 3
|
||||
}
|
||||
Reference in New Issue
Block a user