import { Card } from '../../../interfaces' import Set from '../Delta Species' const card: Card = { name: { en: "Azumarill δ", fr: "Azumarill δ ESPÈCES DELTA" }, illustrator: "Atsuko Nishida", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 184, ], hp: 80, types: [ "Water", "Metal", ], evolveFrom: { en: "Marill", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Bubblebeam", fr: "Bulle d'O" }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé." }, damage: 20, }, { cost: [ "Water", "Colorless", "Colorless", ], name: { en: "Rolling Tackle", fr: "Roulé-boulé" }, damage: 50, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card