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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex7/12/high.png", }, }, evolveFrom: { en: "Seadra", }, tags: [ Tag.STAGE2, ], illustrator: { id: 0, name: "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.RareHolo, category: Category.POKEMON, set: { name: "Team Rocket Returns", code: "ex7" } } export default card