summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorteisuru <31881306+teisuru@users.noreply.github.com>2024-02-13 11:01:17 +0100
committerteisuru <31881306+teisuru@users.noreply.github.com>2024-02-13 11:01:17 +0100
commit5aca19ad110178ec0e49194447cfaec0f9107af0 (patch)
tree302c3f1d112c460a8478b93dd422b1a5f8dfaae7 /tools
parent31263040d106df7ed44db21cc254cfc357c6a459 (diff)
downloadplantagenet-5aca19ad110178ec0e49194447cfaec0f9107af0.tar.gz
change gendata dather than data directly...
Diffstat (limited to 'tools')
-rw-r--r--tools/gendata.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/gendata.js b/tools/gendata.js
index 4fbf017..1ae7c25 100644
--- a/tools/gendata.js
+++ b/tools/gendata.js
@@ -765,6 +765,7 @@ let way_sea_3 = ["English Channel", "Bristol","Pembroke","Harlech", "Dover", "Ha
let way_exile_1 = ["Burgundy", "Bamburgh", "Newcastle", "Scarborough", "Ravenspur", "Lynn", "Ipswich", "North Sea"].map(name => locmap[name]).sort(cmpnum)
let way_exile_2 = ["France", "English Channel", "Dover", "Hastings", "Calais", "Arundel", "Southampton", "Dorchester", "Exeter", "Plymouth", "Truro"].map(name => locmap[name]).sort(cmpnum)
let way_exile_3 = ["Ireland", "Irish Sea", "Bristol","Pembroke","Harlech"].map(name => locmap[name]).sort(cmpnum)
+let way_exile_4 = ["Scotland", "Bamburgh", "Newcastle", "Scarborough", "Ravenspur", "Lynn", "Ipswich", "North Sea"].map(name => locmap[name]).sort(cmpnum)
let way_port_1 = ["Bamburgh", "Newcastle", "Scarborough", "Ravenspur", "Lynn", "Ipswich", "North Sea"].map(name => locmap[name]).sort(cmpnum)
let way_port_2 = ["Dover", "Hastings", "Calais", "Arundel", "Southampton", "Dorchester", "Exeter", "Plymouth", "Truro", "English Channel"].map(name => locmap[name]).sort(cmpnum)
@@ -779,6 +780,7 @@ let sea_3 = locmap["Irish Sea"]
let exile_1 = locmap["Burgundy"]
let exile_2 = locmap["France"]
let exile_3 = locmap["Ireland"]
+let exile_4 = locmap["Scotland"]
let port_1 = ["Bamburgh", "Newcastle", "Scarborough", "Ravenspur", "Lynn", "Ipswich"].map(name => locmap[name]).sort(cmpnum)
let port_2 = ["Dover", "Hastings", "Calais", "Arundel", "Southampton", "Dorchester", "Exeter", "Plymouth", "Truro"].map(name => locmap[name]).sort(cmpnum)
@@ -1711,6 +1713,7 @@ print("exile_boxes:" + JSON.stringify(exile_boxes) + ",")
print("exile_1:" + JSON.stringify(exile_1) + ",")
print("exile_2:" + JSON.stringify(exile_2) + ",")
print("exile_3:" + JSON.stringify(exile_3) + ",")
+print("exile_4:" + JSON.stringify(exile_4) + ",")
print("sea_1:" + JSON.stringify(sea_1) + ",")
print("sea_2:" + JSON.stringify(sea_2) + ",")
print("sea_3:" + JSON.stringify(sea_3) + ",")
@@ -1721,6 +1724,7 @@ print("all_ports:" + JSON.stringify(all_ports) + ",")
print("way_exile_1:" + JSON.stringify(way_exile_1) + ",")
print("way_exile_2:" + JSON.stringify(way_exile_2) + ",")
print("way_exile_3:" + JSON.stringify(way_exile_3) + ",")
+print("way_exile_4:" + JSON.stringify(way_exile_4) + ",")
print("way_sea_1:" + JSON.stringify(way_sea_1) + ",")
print("way_sea_2:" + JSON.stringify(way_sea_2) + ",")
print("way_sea_3:" + JSON.stringify(way_sea_3) + ",")