1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-24 08:59:55 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

86 lines
1.3 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 '../SM Black Star Promos'
const card: Card = {
name: {
en: "Pikachu",
fr: "Pikachu",
es: "Pikachu",
it: "Pikachu",
pt: "Pikachu",
de: "Pikachu"
},
illustrator: "Megumi Mizutani",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
25,
],
hp: 60,
types: [
"Lightning",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Pika Shield",
fr: "Pika Bouclier",
es: "Escudo Pika",
it: "Pika-Difesa",
pt: "Escudo Pikachu",
de: "Pika-Schutz"
},
effect: {
en: "This Pokémon cant be Paralyzed.",
fr: "Ce Pokémon ne peut pas être Paralysé.",
es: "Este Pokémon no puede pasar a estar Paralizado.",
it: "Questo Pokémon non può venire paralizzato.",
pt: "Este Pokémon não pode ser Paralisado.",
de: "Dieses Pokémon kann nicht paralysiert werden."
},
},
],
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Static Shock",
fr: "Choc Statique",
es: "Impacto Estático",
it: "Shock statico",
pt: "Choque de Estática",
de: "Statischer Schock"
},
damage: 10,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
}
export default card