import { Card } from "../../../interfaces" import Set from "../Shining Revelry" const card: Card = { set: Set, name: { en: "Tentacruel" }, illustrator: "match", rarity: "Two Diamond", category: "Pokemon", hp: 100, types: ["Water"], evolveFrom: { en: "Tentacool" }, description: { en: "When the red orbs on Tentacruel's head glow brightly, watch out. The Pokémon is about to fire off a burst of ultrasonic waves." }, stage: "Stage1", attacks: [{ name: { en: "Wave Splash" }, damage: 40, cost: ["Water"] }], weaknesses: [{ type: "Lightning", value: "+20" }], retreat: 1 } export default card