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

59 lines
885 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldea Evolved"
const card: Card = {
dexId: [101],
set: Set,
name: {
fr: "Électrode",
en: "Electrode",
es: "Electrode",
it: "Electrode",
pt: "Electrode",
de: "Lektrobal"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 90,
types: ["Lightning"],
stage: "Stage1",
attacks: [{
cost: ["Lightning"],
name: {
fr: "Boule Éclair",
en: "Lightning Ball",
es: "Bola Relámpago",
it: "Fulminpalla",
pt: "Bola de Raios",
de: "Kugelblitz"
},
damage: 60
}, {
cost: ["Colorless", "Colorless", "Colorless"],
name: {
fr: "Roulé-Boulé",
en: "Rolling Tackle",
es: "Placaje Giro",
it: "Rollazione",
pt: "Golpe de Colisão Rolante",
de: "Rolltackle"
},
damage: 90
}],
retreat: 1,
regulationMark: "G",
variants: {
holo: false
}
}
export default card