import { Card } from '../../../interfaces' import Set from '../Delta Species' const card: Card = { name: { en: "Azumarill δ", }, 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", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20, }, { cost: [ "Water", "Colorless", "Colorless", ], name: { en: "Rolling Tackle", }, damage: 50, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card