import { Card } from '../../../interfaces' import Set from '../Battle Styles' const card: Card = { set: Set, name: { en: "Silicobra", fr: "Dunaja" }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", hp: 80, types: ["Fighting"], attacks: [{ name: { en: "Tail Whap", fr: "Queue Battoir" }, damage: 10, cost: ["Fighting"] }, { name: { en: "Mud Shot", fr: "Tir de Boue" }, damage: 60, cost: ["Fighting", "Fighting", "Colorless"] }], weaknesses: [{ type: "Grass", value: "×2" }], retreat: 2, regulationMark: "E" } export default card