mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-23 12:29:18 +00:00
54 lines
717 B
TypeScript
54 lines
717 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Scarlet & Violet"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Quaxly",
|
|
fr: "Coiffeton",
|
|
es: "Quaxly",
|
|
it: "Quaxly",
|
|
pt: "Quaxly",
|
|
de: "Kwaks"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Water"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Pound",
|
|
fr: "Écras'Face",
|
|
es: "Destructor",
|
|
it: "Botta",
|
|
pt: "Pancada",
|
|
de: "Klaps"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Water", "Colorless"],
|
|
|
|
name: {
|
|
en: "Kick",
|
|
fr: "Koud'Pied",
|
|
es: "Patada",
|
|
it: "Calcio",
|
|
pt: "Chute",
|
|
de: "Tritt"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "G"
|
|
}
|
|
|
|
export default card |