1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

70 lines
1.3 KiB
TypeScript
Raw Permalink 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 '../Jungle'
const card: Card = {
name: {
en: "Pikachu",
fr: "Pikachu",
de: "Pikachu"
},
illustrator: "Ken Sugimori",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
25,
],
hp: 50,
types: [
"Lightning",
],
evolveFrom: {
en: "Pichu",
},
stage: "Basic",
attacks: [
{
cost: [
"Lightning",
"Lightning",
],
name: {
en: "Spark",
fr: "Étincelle",
de: "Funkensprung"
},
effect: {
en: "If your opponent has any Benched Pokémon, choose 1 of them and this attack does 10 damage to it. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Si votre adversaire a au moins 1 Pokémon sur son Banc, choisissez l'un d'eux ; cette attaque lui inflige 10 dégâts. (Ne pas appliquer la Faiblesse et la Résistance au Pokémon du Banc.)",
de: "Falls dein Gegner irgendwelche Pokémon auf der Bank hat, wählt er eines von ihnen und dieser Angriff fügt ihm 10 Schadenspunkte zu. (Schwäche und Resistenz für Pokémon auf der Bank nicht anwenden.)"
},
damage: 20,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
description: {
fr: "Quand plusieurs de ces Pokémon se réunissent, ils provoquent de gigantesques orages."
},
variants: {
wPromo: true
}
}
export default card