import { Card } from '../../../interfaces' import Set from '../Sandstorm' const card: Card = { name: { en: "Marill", fr: "Marill" }, illustrator: "Mitsuhiro Arita", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 183, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", "Colorless", ], name: { en: "Double Bubble", fr: "Double bulle" }, effect: { en: "Flip 2 coins. This attack does 10 damage times the number of heads. If either of the coins is heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez deux pièces. Cette attaque inflige 10 dégâts multipliés par le nombre de face. Dès que c'est face, le Pokémon Défenseur est Paralysé." }, damage: "10×", }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card