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: "neo1-62", localId: 62, // Card informations name: { en: "Horsea", }, hp: 50, type: [ Type.WATER, ], dexId: 116, image: { low: { en: "https://assets.tcgdex.net/en/neo/neo1/62/low", }, high: { en: "https://assets.tcgdex.net/en/neo/neo1/62/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Miki Tanaka", attacks: [{ cost: [ Type.WATER, Type.WATER ], name: { en: "Fin Slap", }, text: { en: "If an attack damaged Horsea during your opponent's last turn, this attack does 20 damage plus 10 more damage. If not, this attack does 20 damage.", }, damage: 20 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Neo Genesis", code: "neo1" } } export default card