import { Card } from '../../../interfaces' import Set from '../Shining Fates' const card: Card = { set: Set, name: { fr: "Nigosier", en: "Cramorant" }, illustrator: "HYOGONOSUKE", rarity: "Uncommon", category: "Pokemon", hp: 90, types: ["Water"], attacks: [{ name: { fr: "Tir Projeté", en: "Spit-Out Shot" }, effect: { fr: "Cette attaque inflige 50 dégâts à l’un des Pokémon de Banc de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", en: "This attack does 50 damage to 1 of your opponent’s Benched Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)" }, cost: ["Water", "Water"] }], weaknesses: [{ type: "Lightning", value: "×2" }], retreat: 1, regulationMark: "E" } export default card