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