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: "ecard1-67", localId: 67, // Card informations name: { en: "Venusaur", }, hp: 100, type: [ Type.GRASS, ], dexId: 3, image: { low: { en: "https://assets.tcgdex.net/en/ecard/ecard1/67/low", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard1/67/high", }, }, evolveFrom: { en: "Ivysaur", }, tags: [ Tag.STAGE2, ], illustrator: "Atsuko Nishida", attacks: [{ cost: [ Type.GRASS ], name: { en: "Leech Seed", }, text: { en: "If this attack damages the Defending Pokémon (after applying Weakness and Resistance), remove 1 damage counter from Venusaur, is it has any.", }, damage: 20 },{ cost: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Fury Swipes", }, text: { en: "Flip 3 coins. This attack does 30 damage times the number of heads.", }, damage: 30 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Expedition Base Set", code: "ecard1" } } export default card