1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 16:42:10 +00:00
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
815 B
TypeScript

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