import { Card } from '../../../interfaces' import Set from '../Promos' const card: Card = { name: { en: "Articuno", fr: "Artikodin", }, illustrator: "Hitoshi Ariga", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 144, ], hp: 120, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Gust", fr: "Tornade", }, damage: 30, }, { cost: [ "Water", "Water", "Colorless", ], name: { en: "Sheer Cold", fr: "Glaciation", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon can't attack during your opponent's next turn.", fr: "Lancez une pièce. Si c’est face, le Pokémon Défenseur ne peut pas attaquer pendant le prochain tour de votre adversaire.", }, damage: 100, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fightning", value: "-20" }, ], retreat: 1, } export default card