import { Card } from "../../../interfaces" import Set from "../Extradimensional Crisis" const card: Card = { set: Set, name: { en: "Carvanha" }, illustrator: "Hideki Ishikawa", rarity: "One Diamond", category: "Pokemon", hp: 60, types: ["Water"], description: { en: "It won't attack while it's alone—not even if it\nspots prey. Instead, it waits for other Carvanha to\njoin it, and then the Pokémon attack as a group." }, stage: "Basic", attacks: [{ name: { en: "Bite" }, damage: 20, cost: ["Water"] }], weaknesses: [{ type: "Lightning", value: "+20" }], retreat: 1 } export default card