import { Card } from '../../../interfaces' import Set from '../Emerald' const card: Card = { name: { en: "Relicanth", }, illustrator: "Atsuko Nishida", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 369, ], hp: 70, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Sharp Fin", }, damage: 10, }, { cost: [ "Water", "Colorless", ], name: { en: "Hypno Splash", }, effect: { en: "The Defending Pokémon is now Asleep.", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card