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: "neo1-78", localId: 78, // Card informations name: { en: "Sunkern", }, hp: 40, type: [ Type.GRASS, ], dexId: 191, image: { low: { en: "https://assets.tcgdex.net/en/neo/neo1/78/low", }, high: { en: "https://assets.tcgdex.net/en/neo/neo1/78/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Kagemaru Himeno", attacks: [{ cost: [ Type.GRASS ], name: { en: "Growth", }, text: { en: "Flip a coin. If heads, you may attach up to 2 Energy cards from your hand to Sunkern.", }, },{ cost: [ Type.GRASS, Type.GRASS, Type.GRASS ], name: { en: "Mega Drain", }, text: { en: "Remove a number of damage counters from Sunkern equal to half the damage done to the Defending Pokémon (after applying Weakness and Resistance) (rounded up to the nearest 10). If Sunkern has fewer damage counters than that, remove all of them.", }, damage: 30 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Neo Genesis", code: "neo1" } } export default card