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: "xy6-17", localId: 17, // Card informations name: { en: "Articuno", fr: "Artikodin", }, hp: 120, type: [ Type.WATER, ], dexId: 144, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy6/17/low", fr: "https://assets.tcgdex.net/fr/xy/xy6/17/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy6/17/high", fr: "https://assets.tcgdex.net/fr/xy/xy6/17/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "5ban Graphics", abilities: [{ id: -1, type: AbilityType.ANCIENTTRAIT, name: { fr: "Plus Δ", }, text: { fr: "Si le Pokémon de votre adversaire est mis K.O. par les dégâts d'une attaque de ce Pokémon, récupérez une carte Récompense supplémentaire.", } }], attacks: [{ cost: [ Type.WATER ], name: { en: "Chilling Sigh", fr: "Soupir Polaire", }, text: { en: "Your opponent's Active Pokémon is now Asleep.", fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.", }, },{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS ], name: { en: "Tri Edge", fr: "Triple Tranchant", }, text: { en: "Flip 3 coins. This attack does 40 more damage for each heads.", fr: "Lancez 3 pièces. Cette attaque inflige 40 dégâts supplémentaires pour chaque côté face.", }, damage: 20 }], weaknesses: [{ type: Type.METAL, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], retreat: 2, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Roaring Skies", code: "xy6" } } export default card