1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-30 03:19:55 +00:00

61 lines
904 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",
variants: {
normal: false,
reverse: false
},
illustrator: "Souichirou Gunjima"
}
export default card