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: "xy9-94", localId: 94, // Card informations name: { en: "Purugly", fr: "Chaffreux", }, hp: 100, type: [ Type.COLORLESS, ], dexId: 432, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy9/94/low", fr: "https://assets.tcgdex.net/fr/xy/xy9/94/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy9/94/high", fr: "https://assets.tcgdex.net/fr/xy/xy9/94/high", }, }, evolveFrom: { en: "Glameow", fr: "Chaglam", }, tags: [ Tag.STAGE1, ], illustrator: "Kagemaru Himeno", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Slash", fr: "Tranche", }, damage: 30 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Nyan Press", fr: "Charge Miaou", }, text: { en: "Flip a coin. If heads, this attack does 40 more damage. If tails, your opponent's Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 40 dégâts supplémentaires. Si c'est pile, le Pokémon Actif de votre adversaire est maintenant Paralysé.", }, damage: 40 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 2, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "BREAKpoint", code: "xy9" } } export default card