1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-18 18:29:19 +00:00

feat: Add remaining Sword & Shield promos (#768)

This commit is contained in:
2025-05-26 13:53:06 +02:00
committed by GitHub
parent 25df3092d2
commit 8c77025f4e
285 changed files with 10818 additions and 868 deletions

View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SWSH Black Star Promos"
const card: Card = {
set: Set,
name: {
fr: "Pikachu",
de: "Pikachu",
es: "Pikachu",
pt: "Pikachu",
it: "Pikachu",
en: "Pikachu"
},
rarity: "None",
category: "Pokemon",
hp: 60,
types: ["Lightning"],
stage: "Basic",
attacks: [{
cost: ["Lightning", "Lightning"],
name: {
fr: "Donnerschock",
de: "Éclair",
es: "Tuonoshock",
pt: "Trovoada de Choques",
it: "Impactrueno",
en: "Thunder Shock"
},
effect: {
fr: "Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners jetzt paralysiert.",
de: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
es: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato.",
pt: "Jogue 1 moeda. Se sair cara, o Pokémon Ativo do seu oponente ficará Paralisado.",
it: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado.",
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed."
},
damage: 30
}],
retreat: 1,
regulationMark: "D",
description: {
en: "Pikachu that can generate powerful electricity have cheek sacs that are extra soft and super stretchy."
}
}
export default card