mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-06 21:39:55 +00:00
54 lines
1.3 KiB
TypeScript
54 lines
1.3 KiB
TypeScript
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 |