1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon d4be6fa84f
fix: Add Diamond & Pearl French translations (#179)
* fix: Add the two first sets

Signed-off-by: Avior <github@avior.me>

* fix: Add DP, DP Black Star and Mysterious Treasures

Signed-off-by: Avior <github@avior.me>
2021-11-22 18:11:03 +00:00

86 lines
1.3 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Stormfront'
const card: Card = {
name: {
en: "Pikachu",
fr: "Pikachu"
},
illustrator: "Hajime Kusajima",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
25,
],
hp: 70,
types: [
"Lightning",
],
evolveFrom: {
fr: "Pikachu",
},
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Pika Punch",
fr: "Pika-poing",
},
damage: 20,
},
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Speed Bolt",
fr: "Boulon vitesse",
},
effect: {
en: "If Pikachu evolved from Pichu during this turn, prevent all effects of an attack, including damage, done to Pikachu during your opponent's next turn.",
fr: "Si Pikachu a évolué de Pichu lors de ce tour, prévenez tous les effets d'une attaque, dégâts inclus, infligés à Pikachu lors du prochain tour de votre adversaire.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Fighting",
value: "+10"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 2,
description: {
fr: "Il vit en forêt avec ses pairs. Il accumule l'électricité dans les poches de ses joues."
}
}
export default card