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: "ecard2-H14", localId: "H14", // Card informations name: { en: "Kingdra", }, hp: 120, type: [ Type.WATER, ], dexId: 230, evolveFrom: { en: "Seadra", }, tags: [ Tag.STAGE2, ], illustrator: "Atsuko Nishida", abilities: [{ id: 915, type: AbilityType.POKEPOWER, name: { en: "Water Cyclone", }, text: { en: "As often as you like during your turn (before your attack), you may move a Water Energy card from your Active Pokémon to 1 of your Benched Pokémon. This power can't be used if Kingdra is affected by a Special Condition.", } }], attacks: [{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Rapids", }, text: { en: "Flip a coin. If heads, discard 1 Energy card attached to the Defending Pokémon, if any.", }, damage: 50 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Aquapolis", code: "ecard2" } } export default card