1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 01:07:53 +00:00

70 lines
841 B
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 '../Promos'
const card: Card = {
name: {
en: "Pikachu",
fr: "Pikachu",
},
illustrator: "Megumi Mizutani",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
25,
],
hp: 60,
types: [
"Lightning",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Pika Shield",
fr: "Pika Bouclier",
},
effect: {
en: "This Pokémon can't be Paralyzed.",
fr: "Ce Pokémon ne peut pas être Paralysé.",
},
},
],
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Static Shock",
fr: "Choc Statique",
},
damage: 10,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
}
export default card