import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Dreepy", fr: "Fantyrm" }, illustrator: "Akira Komayama", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Psychic", ], name: { en: "Quick Attack", fr: "Vive-Attaque" }, effect: { en: "Flip a coin. If heads, this attack does 10 more damage.", fr: "Lancez une pièce. Si c’est face, cette attaque inflige 10 dégâts supplémentaires." }, damage: "10+", }, ], weaknesses: [ { type: "Darkness", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], retreat: 1, hp: 60, types: ["Psychic"] } export default card