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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/base/base3/38/high.png", }, }, evolveFrom: { en: "Krabby", }, tags: [ Tag.STAGE1, ], illustrator: { id: 0, name: "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