1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00
Florian Bouillon c52ed815bb
feat: Add Scarlet & Violet Promos (#607)
* feat: ADd set datas

Signed-off-by: Avior <git@avior.me>

* feat: Add cards

Signed-off-by: Avior <git@avior.me>

---------

Signed-off-by: Avior <git@avior.me>
2024-12-03 09:32:33 +01:00

54 lines
809 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../SVP Black Star Promos"
const card: Card = {
set: Set,
name: {
en: "Quaxwell",
fr: "Canarbello",
es: "Quaxwell",
it: "Quaxwell",
pt: "Quaxwell",
de: "Fuentente"
},
rarity: "None",
category: "Pokemon",
hp: 90,
types: ["Water"],
stage: "Stage1",
attacks: [{
cost: ["Water"],
name: {
en: "Water Gun",
fr: "Pistolet à O",
es: "Pistola Agua",
it: "Pistolacqua",
pt: "Revólver d'Água",
de: "Aquaknarre"
},
damage: 30
}, {
cost: ["Water", "Colorless"],
name: {
en: "Wave Splash",
fr: "Grosse Vague",
es: "Chapoteo Ondulante",
it: "Schizzi d'Onda",
pt: "Onda Borrifante",
de: "Wellenplatscher"
},
damage: 50
}],
retreat: 1,
regulationMark: "G"
}
export default card