import { Card } from '../../../interfaces' import Set from '../Forbidden Light' const card: Card = { name: { en: "Skiddo", fr: "Cabriolaine", }, illustrator: "Suwama Chiaki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 672, ], hp: 70, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Grass", ], name: { en: "Growth", fr: "Croissance", }, effect: { en: "Attach a Grass Energy card from your hand to this Pokémon.", fr: "Attachez une carte Énergie Grass de votre main à ce Pokémon.", }, }, { cost: [ "Grass", "Colorless", "Colorless", ], name: { en: "Razor Leaf", fr: "Tranch’Herbe", }, damage: 40, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 2, } export default card