1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-23 12:29:18 +00:00
Files
cards-database/data/Scarlet & Violet/Scarlet & Violet/052.ts
Florian Bouillon 3c93a3534c
Some checks failed
Build / build (push) Failing after 59s
feat: Add Scarlet & violet three first sets (#446)
2023-11-12 14:56:22 +01:00

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