mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-31 03:39:54 +00:00
60 lines
1.5 KiB
TypeScript
60 lines
1.5 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Promos-A"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Pikachu",
|
|
fr: "Pikachu",
|
|
es: "Pikachu",
|
|
it: "Pikachu",
|
|
de: "Pikachu",
|
|
'pt-br': "Pikachu",
|
|
ko: "피카츄"
|
|
},
|
|
|
|
illustrator: "Atsushi Furusawa",
|
|
rarity: "None",
|
|
category: "Pokemon",
|
|
types: ["Lightning"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Gnaw",
|
|
fr: "Ronge",
|
|
es: "Roer",
|
|
it: "Rosicchiamento",
|
|
de: "Nagen",
|
|
'pt-br': "Roída",
|
|
ko: "갉기"
|
|
},
|
|
|
|
cost: ["Lightning"],
|
|
damage: 20
|
|
}],
|
|
|
|
hp: 60,
|
|
|
|
description: {
|
|
en: "When it is angered, it immediately discharges the energy stored in the pouches in its cheeks.",
|
|
fr: "Quand il s'énerve, il libère instantanément\nl'énergie emmagasinée dans les poches de\nses joues.",
|
|
es: "Cuando se enfada, este Pokémon\ndescarga la energía que almacena en\nel interior de las bolsas de las mejillas.",
|
|
it: "Quando s'arrabbia, libera subito l'energia\naccumulata nelle sacche sulle guance.",
|
|
de: "Ist es wütend, entlädt sich augenblicklich die\nElektrizität, die es in seinen Backentaschen\ngespeichert hat.",
|
|
'pt-br': "Quando está com raiva, descarrega\nimediatamente a energia armazenada\nnas bolsas em suas bochechas.",
|
|
ko: "양 볼에는 전기를 저장하는 주머니가 있다.\n화가 나면 저장한 전기를 단숨에 방출한다."
|
|
},
|
|
|
|
weaknesses: [{
|
|
type: "Fighting",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1,
|
|
boosters: []
|
|
}
|
|
|
|
export default card
|