import { Card } from "../../../interfaces" import Set from "../Stellar Crown" const card: Card = { set: Set, name: { en: "Chewtle", fr: "Khélocrok", es: "Chewtle", it: "Chewtle", pt: "Chewtle", de: "Kamehaps" }, rarity: "Common", category: "Pokemon", hp: 80, types: ["Water"], stage: "Basic", attacks: [{ cost: ["Colorless", "Colorless", "Colorless"], name: { en: "Headbutt", fr: "Coup d'Boule", es: "Golpe Cabeza", it: "Bottintesta", pt: "Cabeçada", de: "Kopfnuss" }, damage: 60 }], retreat: 2, regulationMark: "H", variants: { holo: false } } export default card