mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
70 lines
900 B
TypeScript
70 lines
900 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../POP Series 6'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Pachirisu",
|
|
},
|
|
illustrator: "Atsuko Nishida",
|
|
rarity: "Rare",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
417,
|
|
],
|
|
hp: 70,
|
|
types: [
|
|
"Lightning",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Minor Errand-Running",
|
|
},
|
|
effect: {
|
|
en: "Search your deck for a basic Energy card, show it to your opponent, and put it into your hand. Shuffle your deck afterward.",
|
|
},
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Lightning",
|
|
],
|
|
name: {
|
|
en: "Thunder Jolt",
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If tails, Pachirisu does 10 damage to itself.",
|
|
},
|
|
damage: 20,
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Fighting",
|
|
value: "+20"
|
|
},
|
|
],
|
|
resistances: [
|
|
{
|
|
type: "Metal",
|
|
value: "-20"
|
|
},
|
|
],
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|