mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
46 lines
630 B
TypeScript
46 lines
630 B
TypeScript
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
|