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: "xy2-42", localId: 42, // Card informations name: { en: "Espurr", fr: "Psystigri", }, hp: 60, type: [ Type.PSYCHIC, ], dexId: 677, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy2/42/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy2/42/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy2/42/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy2/42/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 4, name: "5ban Graphics" }, attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Psyshot", fr: "Piqûre Psy", }, damage: 10 },{ cost: [ Type.PSYCHIC, Type.COLORLESS ], name: { en: "Fake Out", fr: "Bluff", }, text: { en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.", }, damage: 10 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Flashfire", code: "xy2" } } export default card