import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "pl3-16", localId: 16, // Card informations name: { en: "Articuno", fr: "Artikodin", }, hp: 100, type: [ Type.WATER, ], dexId: 144, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl3/16/low", fr: "https://assets.tcgdex.net/fr/pl/pl3/16/low", }, high: { en: "https://assets.tcgdex.net/en/pl/pl3/16/high", fr: "https://assets.tcgdex.net/fr/pl/pl3/16/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Mitsuhiro Arita", attacks: [{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Sharp Beak", fr: "Bec aiguisé", }, text: { en: "Flip a coin. If heads, this attack does 30 damage plus 10 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts plus 10 dégâts supplémentaires.", }, damage: 30 },{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Ice Beam", fr: "Laser glace", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.", }, damage: 50 }], weaknesses: [{ type: Type.METAL, value: "+30" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], retreat: 2, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Supreme Victors", code: "pl3" } } export default card