import { Card } from '../../../interfaces' import Set from '../Emerald' const card: Card = { name: { en: "Relicanth", fr: "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", fr: "Aileron aiguisé" }, damage: 10, }, { cost: [ "Water", "Colorless", ], name: { en: "Hypno Splash", fr: "Hypnoplouf" }, effect: { en: "The Defending Pokémon is now Asleep.", fr: "Le Pokémon Défenseur est maintenant Endormi." }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card