mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
* fix: Added most of the translations Some translations aren't available or are user made without a card image depicted Signed-off-by: Avior <github@avior.me> * fix: Add sets French translations Signed-off-by: Avior <github@avior.me>
86 lines
1.7 KiB
TypeScript
86 lines
1.7 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../POP Series 9'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Pichu",
|
|
fr: "Pichu"
|
|
},
|
|
|
|
illustrator: "Midori Harada",
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
172,
|
|
],
|
|
|
|
hp: 40,
|
|
|
|
types: [
|
|
"Lightning",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
abilities: [
|
|
{
|
|
type: "Poke-POWER",
|
|
name: {
|
|
en: "Baby Evolution",
|
|
fr: "Évolution Bébé"
|
|
},
|
|
effect: {
|
|
en: "Once during your turn (before your attack), you may put Pikachu from your hand onto Pichu (this counts as evolving Pichu) and remove all damage counters from Pichu.",
|
|
fr: "Une seule fois lors de votre tour (avant votre attaque), vous pouvez placer Pikachu de votre main sur Pichu (vous le faites ainsi évoluer) et retirer à Pichu tous ses marqueurs de dégât."
|
|
},
|
|
},
|
|
],
|
|
|
|
attacks: [
|
|
{
|
|
|
|
name: {
|
|
en: "Find a Friend",
|
|
fr: "Trouver un ami"
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If heads, search your deck for a Pokémon, show it to your opponent, and put it into your hand. Shuffle your deck afterward.",
|
|
fr: "Lancez une pièce. Si c'est face, choisissez un Pokémon dans votre deck. Montrez-le à votre adversaire et placez-le dans votre main. Ensuite, mélangez votre deck."
|
|
},
|
|
|
|
},
|
|
],
|
|
|
|
weaknesses: [
|
|
{
|
|
type: "Fighting",
|
|
value: "+10"
|
|
},
|
|
],
|
|
|
|
resistances: [
|
|
{
|
|
type: "Metal",
|
|
value: "-20"
|
|
},
|
|
],
|
|
|
|
description: {
|
|
en: "It plays with others by touching tails and setting off sparks. This appears to be a test of courage.",
|
|
fr: "Il prouve son courage en touchant la queue électrifiée de ses pairs."
|
|
},
|
|
|
|
retreat: 1,
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: false,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card
|