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-8", localId: 8, // Card informations name: { en: "Dustox", fr: "Papinox", }, hp: 130, type: [ Type.GRASS, ], dexId: 269, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy6/8/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy6/8/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy6/8/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy6/8/high.png", }, }, evolveFrom: { en: "Cascoon", fr: "Blindalys", }, tags: [ Tag.STAGE2, ], illustrator: { id: 28, name: "match" }, 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.GRASS ], name: { en: "Flap", fr: "Battement", }, damage: 20 },{ cost: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Wind Shard", fr: "Éclat Volant", }, text: { en: "This attack does 50 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Cette attaque inflige 50 dégâts à l'un des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, }], weaknesses: [{ type: Type.FIRE, value: "×2" }], retreat: 1, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Roaring Skies", code: "xy6" } } export default card