import { Card } from '../../../interfaces' import Set from '../Team Up' const card: Card = { name: { en: "Paras", fr: "Paras", es: "Paras", it: "Paras", pt: "Paras", de: "Paras" }, illustrator: "Naoyo Kimura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 46, ], hp: 70, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Scratch", fr: "Griffe", es: "Arañazo", it: "Graffio", pt: "Arranhão", de: "Kratzer" }, damage: 10, }, { cost: [ "Grass", "Colorless", ], name: { en: "Slash", fr: "Tranche", es: "Cuchillada", it: "Lacerazione", pt: "Talho", de: "Schlitzer" }, damage: 20, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 1, } export default card