import { Card } from "../../../interfaces" import Set from "../Shining Revelry" const card: Card = { set: Set, name: { en: "Tentacool" }, illustrator: "Shibuzoh.", rarity: "One Diamond", category: "Pokemon", hp: 70, types: ["Water"], description: { en: "Tentacool is not a particularly strong swimmer. It drifts across the surface of shallow seas as it searches for prey." }, stage: "Basic", attacks: [{ name: { en: "Rain Splash" }, damage: 10, cost: ["Water"] }], weaknesses: [{ type: "Lightning", value: "+20" }], retreat: 1 } export default card