mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-23 16:49:53 +00:00
81 lines
1.7 KiB
TypeScript
81 lines
1.7 KiB
TypeScript
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 c’est 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 |