1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +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

55 lines
1.1 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldea Evolved"
const card: Card = {
dexId: [871],
set: Set,
name: {
fr: "Wattapik",
en: "Pincurchin",
es: "Pincurchin",
it: "Pincurchin",
pt: "Pincurchin",
de: "Britzigel"
},
rarity: "Common",
category: "Pokemon",
hp: 80,
types: ["Lightning"],
stage: "Basic",
attacks: [{
cost: ["Lightning", "Lightning", "Lightning"],
name: {
fr: "Écrasement Piquant",
en: "Needle Crush",
es: "Aplastamiento de Agujas",
it: "Agodistruzione",
pt: "Espinho Esmagador",
de: "Schmetternadel"
},
effect: {
fr: "Défaussez une Énergie du Pokémon Actif de votre adversaire.",
en: "Discard an Energy from your opponent's Active Pokémon.",
es: "Descarta 1 Energía del Pokémon Activo de tu rival.",
it: "Scarta un'Energia dal Pokémon attivo del tuo avversario.",
pt: "Descarte uma Energia do Pokémon Ativo do seu oponente.",
de: "Lege 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
},
damage: 70
}],
retreat: 2,
regulationMark: "G",
variants: {
holo: false
}
}
export default card