diff options
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() { |