diff options
author | teisuru <31881306+teisuru@users.noreply.github.com> | 2023-06-02 21:54:28 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-12-10 18:13:09 +0100 |
commit | 575af7e84f6c516e3cc4a25fee4315de7929fdbe (patch) | |
tree | 3cdde1502d7c1a19c734ca4e6f45fb5a2ddd2059 | |
parent | c17834eafe72a7e6175353efbb9abaf73280652a (diff) | |
download | plantagenet-575af7e84f6c516e3cc4a25fee4315de7929fdbe.tar.gz |
Updated lord "name" to match the ones from rules.js
-rw-r--r-- | play.js | 25 |
1 files changed, 17 insertions, 8 deletions
@@ -68,24 +68,33 @@ const LORD_SALISBURY = find_lord("Salisbury") const LORD_RUTLAND = find_lord("Rutland") const LORD_PEMBROKE = find_lord("Pembroke") const LORD_DEVON = find_lord("Devon") -const LORD_NORTHUMBERLANDY = find_lord("Northumberland") -const LORD_GLOUCESTER = find_lord("Gloucester") +const LORD_NORTHUMBERLAND_Y1 = find_lord("Northumberland Y1") +const LORD_NORTHUMBERLAND_Y2 = find_lord("Northumberland Y2") + +const LORD_GLOUCESTER_1 = find_lord("Gloucester 1") +const LORD_GLOUCESTER_2 = find_lord("Gloucester 2") const LORD_RICHARD_III = find_lord("Richard III") const LORD_NORFOLK = find_lord("Norfolk") -const LORD_WARWICKY = find_lord("WarwickY") +const LORD_WARWICK_Y = find_lord("Warwick Y") const LORD_HENRY_VI = find_lord("Henry VI") const LORD_MARGARET = find_lord("Margaret") -const LORD_SOMERSET = find_lord("Somerset") -const LORD_EXETER = find_lord("Exeter") +const LORD_SOMERSET_1 = find_lord("Somerset 1") +const LORD_SOMERSET_2 = find_lord("Somerset 2") + +const LORD_EXETER_1 = find_lord("Exeter 1") +const LORD_EXETER_2 = find_lord("Exeter 2") + const LORD_BUCKINGHAM = find_lord("Buckingham") const LORD_CLARENCE = find_lord("Clarence") -const LORD_NORTHUMBERLANDL = find_lord("Northumberland") +const LORD_NORTHUMBERLAND_L = find_lord("Northumberland L") + +const LORD_JASPER_TUDOR_1 = find_lord("Jasper Tudor 1") +const LORD_JASPER_TUDOR_2 = find_lord("Jasper Tudor 2") -const LORD_JASPER_TUDOR = find_lord("Jasper Tudor") const LORD_HENRY_TUDOR = find_lord("Henry Tudor") const LORD_OXFORD = find_lord("Oxford") -const LORD_WARWICKL = find_lord("WarwickL") +const LORD_WARWICK_L = find_lord("Warwick L") const first_p1_lord = 0 const last_p1_lord = 13 |