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: "ex1-35", localId: 35, // Card informations name: { en: "Kirlia", }, hp: 70, type: [ Type.PSYCHIC, ], dexId: 281, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex1/35/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex1/35/high.png", }, }, evolveFrom: { en: "Ralts", }, tags: [ Tag.STAGE1, ], illustrator: { id: 32, name: "Atsuko Nishida" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Dazzle Dance", }, text: { en: "Flip a coin. If heads, each Defending Pokémon is now Confused.", }, },{ cost: [ Type.PSYCHIC ], name: { en: "Life Drain", }, text: { en: "Flip a coin. If heads, put damage counters on the Defending Pokémon until it is 10 HP away from being Knocked Out.", }, }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Ruby & Sapphire", code: "ex1" } } export default card