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-94", localId: 94, // Card informations name: { en: "Bulbasaur", }, hp: 50, type: [ Type.GRASS, ], dexId: 1, image: { low: { en: "https://assets.tcgdex.net/en/ecard/ecard1/94/low.png", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard1/94/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 127, name: "Sachi Matoba" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Tackle", }, damage: 10 },{ cost: [ Type.GRASS, Type.COLORLESS ], name: { en: "Poison Seed", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned.", }, }], weaknesses: [{ type: Type.FIRE, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Expedition Base Set", code: "ecard1" } } export default card