diff options
author | Joël Simoneau <simoneaujoel@gmail.com> | 2025-03-11 14:46:57 -0400 |
---|---|---|
committer | Joël Simoneau <simoneaujoel@gmail.com> | 2025-03-11 14:46:57 -0400 |
commit | 5ddbd10e61f3ce3f795e54cf5c58d6972ba2b49d (patch) | |
tree | c3c0d3df71bb3c0dc876eba2aec0a1dd1e2bd56a /rules.js | |
parent | 212b8f0ceb297a58ce92238a011cea765e693c76 (diff) | |
download | vijayanagara-5ddbd10e61f3ce3f795e54cf5c58d6972ba2b49d.tar.gz |
Update cards
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 17 |
1 files changed, 5 insertions, 12 deletions
@@ -344,22 +344,16 @@ function this_card() { } function goto_card() { - if (this_card() >= 37 && this_card() <= 39) { + if (this_card() >= 37 && this_card() <= 40) { log_h1("Mongol Invaders C" + this_card()) goto_mongol_invaders(BK) - } else if (this_card() >= 40 && this_card() <= 42) { + } else if (this_card() >= 41 && this_card() <= 44) { log_h1("Mongol Invaders C" + this_card()) goto_mongol_invaders(VE) - } else if (this_card() === 45) { - log_h1("C" + this_card()) // Zenith of the Delhi Sultanate - succession() - } else if (this_card() === 46) { - log_h1("C" + this_card()) // Rise of the Rebel Sultans - succession() - } else if (this_card() === 47) { - log_h1("C" + this_card()) // Lords of the Deccan + } else if (this_card() >= 45 && this_card() <= 47) { + log_h1("C" + this_card()) succession() - } else if (this_card() === 43 || this_card() === 44) { + } else if (this_card() === 48 || this_card() === 49) { log_h1("C" + this_card()) // Timurid Empire } else { log_h1("C" + this_card()) @@ -376,7 +370,6 @@ function resume_event_card() { goto_eligible() else end_card() - } function end_card() { |