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

75 lines
976 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "Ash's Pikachu",
fr: "Pikachu de Sacha",
},
illustrator: "2017 Pikachu Project",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
25,
],
hp: 70,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Quick Attack",
fr: "Vive-Attaque",
},
effect: {
en: "Flip a coin. If heads, this attack does 10 more damage.",
fr: "Lancez une pièce. Si cest face, cette attaque inflige 10 dégâts supplémentaires.",
},
damage: 10,
},
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Electro Ball",
fr: "Boule Élek",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
}
export default card