1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
TCGdex [Bot] 7e3cf7aa08
editor: fix Paldea Evolved variants (#510)
Co-authored-by: Aviortheking <git@avior.me>
2024-07-03 16:28:15 +02:00

58 lines
838 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: "Uncommon",
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: {
holo: false
}
}
export default card