1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-18 10:19:18 +00:00

feat: Add Stellar Crown (#533)

This commit is contained in:
2024-10-09 23:30:26 +02:00
parent d5995d7723
commit bfe885b508
176 changed files with 9614 additions and 0 deletions

View File

@ -0,0 +1,41 @@
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"
}
export default card