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-7", localId: 7, // Card informations name: { en: "Dustox", fr: "Papinox", }, hp: 140, type: [ Type.GRASS, ], dexId: 269, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy6/7/low", fr: "https://assets.tcgdex.net/fr/xy/xy6/7/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy6/7/high", fr: "https://assets.tcgdex.net/fr/xy/xy6/7/high", }, }, evolveFrom: { en: "Cascoon", fr: "Blindalys", }, tags: [ Tag.STAGE2, ], illustrator: "Akira Komayama", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Psybeam", fr: "Rafale Psy", }, text: { en: "Your opponent's Active Pokémon is now Confused.", fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.", }, damage: 30 },{ cost: [ Type.GRASS, Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Twilight Poison", fr: "Poison Nocturne", }, text: { en: "Your opponent's Active Pokémon is now Asleep and Poisoned.", fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi et Empoisonné.", }, damage: 80 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], retreat: 2, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Roaring Skies", code: "xy6" } } export default card