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: "gym1-78", localId: 78, // Card informations name: { en: "Erika's Oddish", }, hp: 50, type: [ Type.GRASS, ], dexId: 43, image: { low: { en: "https://assets.tcgdex.net/en/gym/gym1/78/low", }, high: { en: "https://assets.tcgdex.net/en/gym/gym1/78/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Ken Sugimori", attacks: [{ cost: [ Type.GRASS ], name: { en: "Blot", }, text: { en: "If there are any damage counters on Erika's Oddish, remove 1 of them.", }, },{ cost: [ Type.GRASS, Type.COLORLESS ], name: { en: "Sporadic Sponging", }, text: { en: "If Erika's Oddish has any damage counters on it, flip a coin. If heads, remove 1 of those damage counters.", }, damage: 20 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Gym Heroes", code: "gym1" } } export default card