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

82 lines
1.8 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../SWSH Black Star Promos'
const card: Card = {
set: Set,
name: {
en: "Pikachu",
fr: "Pikachu",
es: "Pikachu",
it: "Pikachu",
pt: "Pikachu",
de: "Pikachu"
},
illustrator: "Hideki Ishikawa",
rarity: "None",
category: "Pokemon",
hp: 70,
types: ["Lightning"],
attacks: [{
name: {
en: "Iron Tail",
fr: "Queue de Fer",
es: "Cola Férrea",
it: "Codacciaio",
pt: "Cauda de Ferro",
de: "Eisenschweif"
},
effect: {
en: "Flip a coin until you get tails. This attack does 30 damage for each heads.",
fr: "Lancez une pièce jusqu'à obtenir un côté pile. Cette attaque inflige 30 dégâts pour chaque côté face.",
es: "Lanza 1 moneda hasta que salga cruz. Este ataque hace 30 puntos de daño por cada cara.",
it: "Lancia una moneta finché non esce croce. Questo attacco infligge 30 danni ogni volta che esce testa.",
pt: "Jogue 1 moeda até sair coroa. Este ataque causa 30 pontos de dano para cada cara.",
de: "Wirf so lange 1 Münze, bis zum ersten Mal das Ergebnis Zahl kommt. Diese Attacke fügt 30 Schadenspunkte pro Kopf zu."
},
damage: "30×",
cost: ["Colorless", "Colorless"]
}, {
name: {
en: "Electro Ball",
fr: "Boule Élek",
es: "Bola Voltio",
it: "Energisfera",
pt: "Bola Elétrica",
de: "Elektroball"
},
damage: 60,
cost: ["Lightning", "Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
description: {
en: "Pikachu that can generate powerful electricity have cheek sacs that are extra soft and super stretchy."
},
stage: "Basic",
dexId: [25],
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
regulationMark: "D"
}
export default card