import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Milcery", fr: "Crèmy" }, illustrator: "Mina Nakai", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Colorless", ], name: { en: "Aromatherapy", fr: "Aromathérapie" }, effect: { en: "Heal 10 damage from each of your Pokémon.", fr: "Soignez 10 dégâts de chacun de vos Pokémon." }, }, { cost: [ "Psychic", "Colorless", ], name: { en: "Tackle", fr: "Charge" }, damage: 20, }, ], weaknesses: [ { type: "Metal", value: "×2" }, ], retreat: 1, hp: 50, types: ["Psychic"] } export default card