import { Card } from '../../../interfaces' import Set from '../Emerging Powers' const card: Card = { name: { en: "Sandile", fr: "Mascaïman", es: "Sandile", it: "Sandile", pt: "Sandile", de: "Ganovil" }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 551, ], hp: 70, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", "Colorless", ], name: { en: "Bite", fr: "Morsure", }, damage: 20, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], retreat: 2, } export default card