1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-20 23:29:55 +00:00

66 lines
893 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Mysterious Treasures'
const card: Card = {
name: {
en: "Pichu",
},
illustrator: "Yuka Morii",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
172,
],
hp: 40,
types: [
"Lightning",
],
stage: "Basic",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Baby Evolution",
},
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.",
},
},
],
attacks: [
{
name: {
en: "Chupi",
},
effect: {
en: "Flip a coin. If tails, this attack does nothing.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fightning",
value: "+10"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
}
export default card