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: "gym2-58", localId: 58, // Card informations name: { en: "Sabrina's Kadabra", }, hp: 70, type: [ Type.PSYCHIC, ], dexId: 64, image: { low: { en: "https://assets.tcgdex.net/en/gym/gym2/58/low.png", }, high: { en: "https://assets.tcgdex.net/en/gym/gym2/58/high.png", }, }, evolveFrom: { en: "Abra", }, tags: [ Tag.STAGE1, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Life Drain", }, text: { en: "Flip a coin. If heads, put a number of damage counters on the Defending Pokémon so that its remaining HP are 10.", }, },{ cost: [ Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Psyshot", }, damage: 30 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Gym Challenge", code: "gym2" } } export default card