|
| 1 | +import { BasicNemesisCard } from '../../../../aer-types/types' |
| 2 | + |
| 3 | +export const basicNemesisCards: BasicNemesisCard[] = [ |
| 4 | + { |
| 5 | + id: 'BladeStorm-BS', |
| 6 | + expansion: 'BS', |
| 7 | + tier: 1, |
| 8 | + type: 'Attack', |
| 9 | + name: 'Blade Storm', |
| 10 | + effect: ` |
| 11 | + <p> |
| 12 | + Gravehold suffers 3 damage. The player with the fewest opened breaches suffers 2 damage. |
| 13 | + </p> |
| 14 | + `, |
| 15 | + }, |
| 16 | + { |
| 17 | + id: 'HexofVulnerability-BS', |
| 18 | + expansion: 'BS', |
| 19 | + tier: 1, |
| 20 | + type: 'Power', |
| 21 | + name: 'Hex of Vulnerability', |
| 22 | + power: 3, |
| 23 | + effect: ` |
| 24 | + <p> |
| 25 | + <b>To Discard:</b> Spend 6 <span class="aether">Æ</span>.<br /> |
| 26 | + <br /> |
| 27 | + <b>Power 3:</b> Place this card next to the player with the most life. For the rest of the game, when that player suffers damage, they suffer 1 additional damage. |
| 28 | + </p> |
| 29 | + `, |
| 30 | + }, |
| 31 | + { |
| 32 | + id: 'ThrongCommander-BS', |
| 33 | + expansion: 'BS', |
| 34 | + tier: 1, |
| 35 | + type: 'Minion', |
| 36 | + name: 'Throng Commander', |
| 37 | + shields: 3, |
| 38 | + hp: 1, |
| 39 | + effect: ` |
| 40 | + <p> |
| 41 | + <b>Persistent:</b> If there are two or more other minions in play, Gravehold suffers 6 damage and discard this minion. Otherwise, any player suffers 2 damage. |
| 42 | + </p> |
| 43 | + `, |
| 44 | + }, |
| 45 | + { |
| 46 | + id: 'Divert-BS', |
| 47 | + expansion: 'BS', |
| 48 | + tier: 2, |
| 49 | + type: 'Attack', |
| 50 | + name: 'Divert', |
| 51 | + effect: ` |
| 52 | + <p> |
| 53 | + The player with the most expensive prepped spell casts that spell. The damage that spell deals must be dealt to the player who cast it instead of to a minion or the nemesis. |
| 54 | + </p> |
| 55 | + `, |
| 56 | + }, |
| 57 | + { |
| 58 | + id: 'Depreciate-BS', |
| 59 | + expansion: 'BS', |
| 60 | + tier: 2, |
| 61 | + type: 'Power', |
| 62 | + name: 'Depreciate', |
| 63 | + power: 2, |
| 64 | + effect: ` |
| 65 | + <p> |
| 66 | + <b>To Discard:</b> Spend 7 <span class="aether">Æ</span>.<br /> |
| 67 | + <br /> |
| 68 | + <b>Power 2:</b> Unleash twice. The player with the most expensive card in hand destroys that card and then gains a card of the same type that costs less from any supply pile. That player suffers 2 damage. |
| 69 | + </p> |
| 70 | + `, |
| 71 | + }, |
| 72 | + { |
| 73 | + id: 'ArmoredHaze-BS', |
| 74 | + expansion: 'BS', |
| 75 | + tier: 2, |
| 76 | + type: 'Minion', |
| 77 | + name: 'Armored Haze', |
| 78 | + shields: 4, |
| 79 | + hp: 1, |
| 80 | + effect: ` |
| 81 | + <p> |
| 82 | + <b>Persistent:</b> Any player suffers 1 damage for each shield token this minion has. Then, this minion suffers 1 damage. |
| 83 | + </p> |
| 84 | + `, |
| 85 | + }, |
| 86 | + { |
| 87 | + id: 'Muster-BS', |
| 88 | + expansion: 'BS', |
| 89 | + tier: 3, |
| 90 | + type: 'Attack', |
| 91 | + name: 'Muster', |
| 92 | + effect: ` |
| 93 | + <p> |
| 94 | + Unleash twice. Each minion in plays gains 5 life. |
| 95 | + </p> |
| 96 | + `, |
| 97 | + }, |
| 98 | + { |
| 99 | + id: 'BreachTunnel-BS', |
| 100 | + expansion: 'BS', |
| 101 | + tier: 3, |
| 102 | + type: 'Power', |
| 103 | + name: 'Breach Tunnel', |
| 104 | + power: 4, |
| 105 | + effect: ` |
| 106 | + <p> |
| 107 | + <b>Power 4:</b> If each player has at least one closed breach, the nemesis overwhelms them and the players lose. |
| 108 | + </p> |
| 109 | + `, |
| 110 | + }, |
| 111 | + { |
| 112 | + id: 'MailedShade-BS', |
| 113 | + expansion: 'BS', |
| 114 | + tier: 3, |
| 115 | + type: 'Minion', |
| 116 | + name: 'Mailed Shade', |
| 117 | + shields: 1, |
| 118 | + hp: 8, |
| 119 | + effect: ` |
| 120 | + <p> |
| 121 | + This minion can only be dealt damage by spells cast from a III breach.<br /> |
| 122 | + <br /> |
| 123 | + <b>Persistent:</b> Unleash twice. |
| 124 | + </p> |
| 125 | + `, |
| 126 | + }, |
| 127 | +] |
0 commit comments