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
825 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldea Evolved"
const card: Card = {
set: Set,
name: {
fr: "Têtampoule",
en: "Tadbulb",
es: "Tadbulb",
it: "Tadbulb",
pt: "Tadbulb",
de: "Blipp"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Lightning"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
fr: "Ruée",
en: "Stampede",
es: "Estampida",
it: "Fuggi Fuggi",
pt: "Estouro",
de: "Zertrampeln"
},
damage: 10
}, {
cost: ["Lightning", "Lightning"],
name: {
fr: "Choc Statique",
en: "Static Shock",
es: "Impacto Estático",
it: "Shock Statico",
pt: "Choque de Estática",
de: "Statischer Schock"
},
damage: 30
}],
retreat: 1,
regulationMark: "G",
variants: {
holo: false
}
}
export default card