mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 17:09:19 +00:00
feat: Add Scarlet & violet three first sets (#446)
Some checks failed
Build / build (push) Failing after 59s
Some checks failed
Build / build (push) Failing after 59s
This commit is contained in:
50
data/Scarlet & Violet/Paldea Evolved/072.ts
Normal file
50
data/Scarlet & Violet/Paldea Evolved/072.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldea Evolved"
|
||||
|
||||
const card: Card = {
|
||||
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"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user