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

81 lines
1.7 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: 60,
types: ["Lightning"],
attacks: [{
name: {
en: "Quick Attack",
fr: "Vive-Attaque",
es: "Ataque Rápido",
it: "Attacco Rapido",
pt: "Ataque Rápido",
de: "Ruckzuckhieb"
},
damage: "10+",
effect: {
en: "Flip a coin. If heads, this attack does 10 more damage.",
fr: "Si cest face, cette attaque inflige 10 dégâts supplémentaires.",
es: "Lanza 1 moneda. Si sale cara, este ataque hace 10 puntos de daño más.",
it: "Lancia una moneta. Se esce testa, questo attacco infligge 10 danni in più.",
pt: "Jogue 1 moeda. Se sair cara, este ataque causará 10 pontos de dano a mais.",
de: "Wirf 1 Münze. Bei Kopf fügt diese Attacke 10 Schadenspunkte mehr zu."
},
cost: ["Colorless"]
}, {
name: {
en: "Thunderbolt",
fr: "Tonnerre",
es: "Rayo",
it: "Fulmine",
pt: "Relâmpago",
de: "Donnerblitz"
},
damage: 80,
effect: {
en: "Discard all Energy from this Pokémon.",
fr: "Défaussez toute lÉnergie de ce Pokémon.",
es: "Descarta todas las Energías de este Pokémon.",
it: "Scarta tutte le Energie assegnate a questo Pokémon.",
pt: "Descarte todas as Energias deste Pokémon.",
de: "Lege alle Energien von diesem Pokémon auf deinen Ablagestapel."
},
cost: ["Lightning", "Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
resistances: [{
type: "Metal",
value: "-20"
}],
retreat: 1
}
export default card