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: "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.png", fr: "https://assets.tcgdex.net/fr/xy/xy9/94/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy9/94/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy9/94/high.png", }, }, evolveFrom: { en: "Glameow", fr: "Chaglam", }, tags: [ Tag.STAGE1, ], illustrator: { id: 0, name: "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