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: "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.png", fr: "https://assets.tcgdex.net/fr/xy/xy6/17/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy6/17/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy6/17/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 4, name: "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