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: "base3-38", localId: 38, // Card informations name: { en: "Kingler", }, hp: 60, type: [ Type.WATER, ], dexId: 99, image: { low: { en: "https://assets.tcgdex.net/en/base/base3/38/low", }, high: { en: "https://assets.tcgdex.net/en/base/base3/38/high", }, }, evolveFrom: { en: "Krabby", }, tags: [ Tag.STAGE1, ], illustrator: "Kagemaru Himeno", attacks: [{ cost: [ Type.WATER ], name: { en: "Flail", }, text: { en: "Does 10 damage times the number of damage counters on Kingler.", }, damage: 10 },{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS ], name: { en: "Crabhammer", }, damage: 40 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Fossil", code: "base3" } } export default card