diff options
-rw-r--r-- | data.js | 2 | ||||
-rw-r--r-- | tools/gendata.js | 4 |
2 files changed, 6 insertions, 0 deletions
@@ -4,6 +4,7 @@ exile_boxes:[52,53,54,55], exile_1:55, exile_2:52, exile_3:54, +exile_4:53, sea_1:60, sea_2:58, sea_3:59, @@ -14,6 +15,7 @@ all_ports:[0,1,5,6,14,15,17,19,20,21,22,24,26,35,37,51,56,57], way_exile_1:[0,1,35,37,55,56,57,60], way_exile_2:[14,15,17,19,20,21,22,24,51,52,58], way_exile_3:[5,6,26,54,59], +way_exile_4:[0,1,35,37,53,56,57,60], way_sea_1:[0,1,14,15,17,19,20,21,22,24,35,37,51,56,57,58,60], way_sea_2:[0,1,5,6,14,15,17,19,20,21,22,24,26,35,37,51,56,57,58,58,59,60], way_sea_3:[5,6,14,15,17,19,20,21,22,24,26,51,58,59], 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) + ",") |