import { Card } from "../../../interfaces" import Set from "../Wisdom of Sea and Sky" const card: Card = { set: Set, name: { en: "Kingdra ex" }, illustrator: "Takumi Wada", rarity: "Two Star", category: "Pokemon", hp: 170, types: ["Water"], evolveFrom: { en: "Seadra" }, stage: "Stage2", suffix: "EX", attacks: [{ name: { en: "Stormy Prison" }, damage: 90, cost: ["Water", "Water"], effect: { en: "During your opponent's next turn, the Defending Pokémon can't retreat." } }], weaknesses: [{ type: "Lightning", value: "+20" }], retreat: 1 } export default card