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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard1/67/high.png", }, }, evolveFrom: { en: "Ivysaur", }, tags: [ Tag.STAGE2, ], illustrator: { id: 32, name: "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