import { Card } from "../../../interfaces" import Set from "../SVP Black Star Promos" const card: Card = { set: Set, name: { en: "Fuecoco", fr: "Chochodile", es: "Fuecoco", it: "Fuecoco", pt: "Fuecoco", de: "Krokel" }, rarity: "None", category: "Pokemon", hp: 80, types: ["Fire"], stage: "Basic", attacks: [{ cost: ["Fire"], name: { en: "Tackle", fr: "Charge", es: "Placaje", it: "Azione", pt: "Investida", de: "Tackle" }, damage: 20 }], retreat: 2, regulationMark: "G" } export default card