import { Card } from '../../../interfaces' import Set from '../Primal Clash' const card: Card = { name: { en: "Marill", fr: "Marill", }, illustrator: "Shigenori Negishi", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 183, ], hp: 70, types: [ "Fairy", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Tackle", fr: "Charge", }, damage: 10, }, { cost: [ "Fairy", "Colorless", ], name: { en: "Rollout", fr: "Roulade", }, damage: 20, }, ], weaknesses: [ { type: "Metal", value: "×2" }, ], resistances: [ { type: "Darkness", value: "-20" }, ], retreat: 2, } export default card