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-115", localId: 115, // Card informations name: { en: "Krabby", }, hp: 50, type: [ Type.WATER, ], dexId: 98, image: { low: { en: "https://assets.tcgdex.net/en/ecard/ecard1/115/low.png", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard1/115/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 119, name: "Shin-ichi Yoshida" }, attacks: [{ cost: [ Type.GRASS, Type.GRASS ], name: { en: "Crabhammer", }, damage: 30 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Expedition Base Set", code: "ecard1" } } export default card