import { Card } from '../../../interfaces' import Set from '../Burning Shadows' const card: Card = { name: { en: "Marill", fr: "Marill", }, illustrator: "Asako Ito", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 183, ], hp: 60, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Bubble", fr: "Écume", }, effect: { en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Rollout", fr: "Roulade", }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, } export default card