diff options
author | teisuru <31881306+teisuru@users.noreply.github.com> | 2023-08-31 22:33:16 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-12-10 18:16:55 +0100 |
commit | 75c6b72df894aca18a6380a5e279bb11587e0143 (patch) | |
tree | 75cc94de964fdb70387d339b452df63aa23f2604 | |
parent | 1def1b2bb2b749bbf6e358875b6ebe1f8e7da8fb (diff) | |
download | plantagenet-75c6b72df894aca18a6380a5e279bb11587e0143.tar.gz |
Sail done
full implementation done
-rw-r--r-- | data.js | 6 | ||||
-rw-r--r-- | rules.js | 37 | ||||
-rw-r--r-- | tools/gendata.js | 6 |
3 files changed, 39 insertions, 10 deletions
@@ -12,9 +12,9 @@ port_3:[5,6,26], 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_sea_1:[0,1,14,15,17,19,20,21,22,24,35,37,51,56,57,60], -way_sea_2:[0,1,5,6,14,15,17,19,20,21,22,24,26,35,37,51,56,57,58], -way_sea_3:[14,14,15,15,17,17,19,19,20,20,21,21,22,22,24,24,51,51,59], +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:[14,14,15,15,17,17,19,19,20,20,21,21,22,22,24,24,51,51,58,59], way_port_1:[0,1,35,37,56,57,60], way_port_2:[14,15,17,19,20,21,22,24,51,58], way_port_3:[5,6,26,59], @@ -3612,8 +3612,8 @@ states.sail = { let here = get_lord_locale(game.command) let ships = count_group_ships() - // CAPABILITY SHIPS x2 - // CAPABILITY MOVE EVERYWHERE WITH SHIPS + // TODO CAPABILITY SHIPS x2 + // TODO CAPABILITY MOVE EVERYWHERE WITH SHIPS let prov = count_group_assets(PROV) let cart = count_group_assets(CART) @@ -3625,8 +3625,37 @@ states.sail = { if (overflow_prov <= 0 && overflow_cart <= 0) { view.prompt = `Sail: Select a destination Seaport.` - var port = data.locales[here] - for (let to of data.seaports) { + let from = 0 + switch(true){ + case data.exile_1.includes(here): + from = data.way_exile_1 + break; + case data.exile_2.includes(here): + from = data.way_exile_2 + break; + case data.exile_3.includes(here): + from = data.way_exile_3 + break; + case data.sea_1.includes(here): + from = data.way_sea_1 + break; + case data.sea_2.includes(here): + from = data.way_sea_2 + break; + case data.sea_3.includes(here): + from = data.way_sea_3 + break; + case data.port_1.includes(here): + from = data.way_port_1 + break; + case data.port_2.includes(here): + from = data.way_port_2 + break; + case data.port_3.includes(here): + from = data.way_port_3 + break; + } + for (let to of from) { if (to === here) continue if (!has_enemy_lord(to)) diff --git a/tools/gendata.js b/tools/gendata.js index b916056..d673f71 100644 --- a/tools/gendata.js +++ b/tools/gendata.js @@ -715,9 +715,9 @@ road("Scarborough, York") road("York, Ravenspur") road("Ravenspur, Lincoln") -let way_sea_1 = ["North Sea", "Bamburgh", "Newcastle", "Scarborough", "Ravenspur", "Lynn", "Ipswich", "Dover", "Hastings", "Calais", "Arundel", "Southampton", "Dorchester", "Exeter", "Plymouth", "Truro"].map(name => locmap[name]).sort(cmpnum) -let way_sea_2 = ["Bristol","Pembroke","Harlech", "English Channel","Bamburgh", "Newcastle", "Scarborough", "Ravenspur", "Lynn", "Ipswich","Dover", "Hastings", "Calais", "Arundel", "Southampton", "Dorchester", "Exeter", "Plymouth", "Truro" ].map(name => locmap[name]).sort(cmpnum) -let way_sea_3 = ["Dover", "Hastings", "Calais", "Arundel", "Southampton", "Dorchester", "Exeter", "Plymouth", "Truro", "Dover", "Hastings", "Calais", "Arundel", "Southampton", "Dorchester", "Exeter", "Plymouth", "Truro","Irish Sea"].map(name => locmap[name]).sort(cmpnum) +let way_sea_1 = ["North Sea", "English Channel", "Bamburgh", "Newcastle", "Scarborough", "Ravenspur", "Lynn", "Ipswich", "Dover", "Hastings", "Calais", "Arundel", "Southampton", "Dorchester", "Exeter", "Plymouth", "Truro"].map(name => locmap[name]).sort(cmpnum) +let way_sea_2 = ["English Channel","North Sea", "Irish Sea", "Bristol","Pembroke","Harlech", "English Channel","Bamburgh", "Newcastle", "Scarborough", "Ravenspur", "Lynn", "Ipswich","Dover", "Hastings", "Calais", "Arundel", "Southampton", "Dorchester", "Exeter", "Plymouth", "Truro" ].map(name => locmap[name]).sort(cmpnum) +let way_sea_3 = ["English Channel", "Dover", "Hastings", "Calais", "Arundel", "Southampton", "Dorchester", "Exeter", "Plymouth", "Truro", "Dover", "Hastings", "Calais", "Arundel", "Southampton", "Dorchester", "Exeter", "Plymouth", "Truro","Irish Sea"].map(name => locmap[name]).sort(cmpnum) 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) |