1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-23 16:49:53 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

59 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../SM Black Star Promos'
const card: Card = {
dexId: [25],
set: Set,
name: {
en: "Pikachu",
fr: "Pikachu",
es: "Pikachu",
it: "Pikachu",
pt: "Pikachu",
de: "Pikachu"
},
rarity: "Rare",
category: "Pokemon",
hp: 70,
types: ["Lightning"],
attacks: [{
name: {
en: "Thunder Jolt",
fr: "Secousse Tonnerre",
es: "Sacudida Atronadora",
it: "Scoppiotuono",
pt: "Choque do Trovão",
de: "Donnerrüttler"
},
damage: 40,
effect: {
en: "This Pokémon does 20 damage to itself.",
fr: "Ce Pokémon sinflige 20 dégâts.",
es: "Este Pokémon se hace 20 puntos de daño a sí mismo.",
it: "Questo Pokémon infligge 20 danni a se stesso.",
pt: "Este Pokémon causa 20 pontos de dano a si mesmo.",
de: "Dieses Pokémon fügt sich selbst 20 Schadenspunkte zu."
},
cost: ["Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
resistances: [{
type: "Metal",
value: "-20"
}],
retreat: 1
}
export default card