import { Card } from '../../../interfaces' import Set from '../Primal Clash' const card: Card = { name: { en: "Drilbur", fr: "Rototaupe", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 529, ], hp: 60, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Fury Swipes", fr: "Combo-Griffe", }, effect: { en: "Flip 3 coins. This attack does 10 damage times the number of heads.", fr: "Lancez 3 pièces. Cette attaque inflige 10 dégâts multipliés par le nombre de côtés face.", }, damage: "10×", }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 2, } export default card