import { Card } from '../../../interfaces' import Set from '../Sword & Shield' const card: Card = { name: { en: "Silicobra", fr: "Dunaja", es: "Silicobra", it: "Silicobra", pt: "Silicobra", de: "Salanga" }, illustrator: "Hitoshi Ariga", rarity: "Common", category: "Pokemon", set: Set, hp: 70, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Headbutt", fr: "Coup d'Boule", es: "Golpe Cabeza", it: "Bottintesta", pt: "Cabeçada", de: "Kopfnuss" }, damage: 10, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Tail Whap", fr: "Queue Battoir", es: "Coletón", it: "Codabotta", pt: "Surra de Cauda", de: "Schweifvertrimmer" }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, regulationMark: "D", variants: { normal: true, reverse: true, holo: false, firstEdition: false }, description: { en: "As it digs, it swallows sand and stores it in its neck pouch. The pouch can hold more than 17 pounds of sand." }, dexId: [843] } export default card