import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "smp-SM144", localId: "SM144", // Card informations name: { en: "Articuno", fr: "Artikodin", }, hp: 120, type: [ Type.WATER, ], dexId: 144, image: { low: { en: "https://assets.tcgdex.net/en/sm/smp/SM144/low.png", fr: "https://assets.tcgdex.net/fr/sm/smp/SM144/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/smp/SM144/high.png", fr: "https://assets.tcgdex.net/fr/sm/smp/SM144/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 67, name: "Hitoshi Ariga" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Gust", fr: "Tornade", }, damage: 30 },{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS ], name: { en: "Sheer Cold", fr: "Glaciation", }, text: { 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: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "SM Black Star Promos", code: "smp" } } export default card