import { Card } from "../../../interfaces" import Set from "../Genetic Apex" const card: Card = { set: Set, name: { en: "Tentacruel" }, illustrator: "kodama", category: "Pokemon", hp: 110, types: ["Water"], stage: "Stage1", evolveFrom: { en: "Tentacool" }, attacks: [{ cost: ["Water", "Colorless"], name: { en: "Poison Tentacles" }, effect: { en: "Your opponent's Active Pokémon is now Poisoned." }, damage: "50" }], weaknesses: [{ type: "Lightning", value: "+20" }], retreat: 2, rarity: "Two Diamond", 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.", } } export default card