import { Card } from "../../../interfaces" import Set from "../Wisdom of Sea and Sky" const card: Card = { set: Set, name: { en: "Wooper" }, illustrator: "Shibuzoh.", rarity: "One Diamond", category: "Pokemon", hp: 70, types: ["Water"], description: { en: "This Pokémon lives in cold water. It will leave the\nwater to search for food when it gets cold outside." }, stage: "Basic", attacks: [{ name: { en: "Rain Splash" }, damage: 30, cost: ["Water", "Colorless"] }], weaknesses: [{ type: "Lightning", value: "+20" }], retreat: 1 } export default card