1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,71 @@
import { Card } from '../../../interfaces'
import Set from '../Stormfront'
const card: Card = {
name: {
en: "Pichu",
fr: "Pichu",
},
illustrator: "Atsuko Nishida",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
172,
],
hp: 50,
types: [
"Lightning",
],
evolveFrom: {
fr: "Pichu",
},
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: "Electric Circuit",
fr: "Circuit électrique",
},
effect: {
en: "Search your discard pile for up to 4 Lightning Energy cards, show them to your opponent, and put them into your hand.",
fr: "Cherchez dans votre pile de défausse jusqu'à 4 cartes Énergie (L), montrez-les à votre adversaire et placez-les dans votre main.",
},
},
],
weaknesses: [
{
type: "Fightning",
value: "+10"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
}
export default card