import { Card } from '../../../interfaces' import Set from '../Plasma Freeze' const card: Card = { name: { en: "Tornadus-EX", fr: "Boréas-EX", }, illustrator: "Eske Yoshinob", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 641, ], hp: 180, types: [ "Colorless", ], suffix: "EX", attacks: [ { cost: [ "Colorless", ], name: { en: "Windfall", fr: "Rafale de Vent", }, effect: { en: "Shuffle your hand into your deck. Then, draw 6 cards.", fr: "Mélangez votre main avec votre deck. Ensuite, piochez 6 cartes.", }, }, { cost: [ "Colorless", "Colorless", "Colorless", "Colorless", ], name: { en: "Jet Blast", fr: "Rafale d'Explosions", }, effect: { en: "Does 30 more damage for each Plasma Energy attached to this Pokémon.", fr: "Inflige 30 dégâts supplémentaires pour chaque Énergie Plasma attachée à ce Pokémon.", }, damage: 60, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 2, } export default card