import { Card } from '../../../interfaces' import Set from '../Sword & Shield' const card: Card = { name: { en: "Chewtle", fr: "Khélocrok", es: "Chewtle", it: "Chewtle", pt: "Chewtle", de: "Kamehaps" }, illustrator: "Mina Nakai", rarity: "Common", category: "Pokemon", set: Set, hp: 80, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Bite", fr: "Morsure", es: "Mordisco", it: "Morso", pt: "Mordida", de: "Biss" }, damage: 30, }, { cost: [ "Water", "Colorless", "Colorless", ], name: { en: "Water Gun", fr: "Pistolet à O", es: "Pistola Agua", it: "Pistolacqua", pt: "Revólver d'Água", de: "Aquaknarre" }, damage: 50, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], retreat: 2, regulationMark: "D", variants: { normal: true, reverse: true, holo: false, firstEdition: false }, description: { en: "It starts off battles by attacking with its rock-hard horn, but as soon as the opponent flinches, this Pokémon bites down and never lets go." }, dexId: [833] } export default card