- Added Standard Property
- Changed colors
The maps are stored as a JSON file.
No spaces in the file name
- Name
- Standard
- Size
- Planets Array, and at least one element in it
Type | Values |
---|---|
String | Any |
Type | Values |
---|---|
String | Version of the standard in use without the 'v' |
Example: |
"standard": "0.2",
The elemsnts must by in that order in the planet object, the numbers have to be strings (surrounded by double quotes). The cordinates are distance from the upper right hand corner.
Name | Hex | Order |
---|---|---|
Green | #8ed16c | 1 |
Blue | #3fa6f3 | 2 |
Red | #e25f5f | 3 |
Magenta | #ef6ab8 | 4 |
Orange | #eb8932 | 5 |
Purple | #af6cd1 | 6 |
Neutral Grey | #bbbbbb | 0 |
- The planets must alwasy fit inside the map boundries
- The Quantity of troops for the start values should be equal
- The combined radiuss of the planets should be equal
Use these sparingly:
- 60
- 70
- 75
- 80
- 90
- 100
- 125
- Larger sizes make the value of capturing planets go down.
{
"name": "Example Planet Map",
"size": {
"x": "400",
"y": "400"
},
"standard": "0.2",
"planets": [
{
"radius":"50",
"color": "#8ed16c",
"x": "55",
"y": "55",
"startValue": "20"
},
{
"radius":"50",
"color": "#3fa6f3",
"x": "345",
"y": "55",
"startValue": "20"
},
{
"radius":"75",
"color": "#bbbbbb",
"x": "200",
"y": "200",
"startValue": "20"
},
{
"radius":"50",
"color": "#e25f5f",
"x": "55",
"y": "345",
"startValue": "20"
},
{
"radius":"50",
"color": "#ef6ab8",
"x": "345",
"y": "345",
"startValue": "20"
}
]
}