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: "ex7-12", localId: 12, // Card informations name: { en: "Kingdra", }, hp: 120, type: [ Type.WATER, ], dexId: 230, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex7/12/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex7/12/high", }, }, evolveFrom: { en: "Seadra", }, tags: [ Tag.STAGE2, ], illustrator: "Kagemaru Himeno", abilities: [{ id: 1234, type: AbilityType.POKEBODY, name: { en: "Dragon Veil", }, text: { en: "As long as Kingdra is in play, each of your Active Pokémon has no Weakness.", } }], attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Hyper Whirlpool", }, text: { en: "Flip a coin until you get tails. For each heads, discard an Energy card attached to the Defending Pokémon.", }, damage: 20 },{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Aqua Sonic", }, text: { en: "This attack's damage is not affected by Resistance.", }, damage: 50 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Team Rocket Returns", code: "ex7" } } export default card