mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-07 17:57:51 +00:00
79 lines
1.6 KiB
TypeScript
79 lines
1.6 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Call of Legends'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Pachirisu",
|
||
fr: "Pachirisu",
|
||
de: "Pachirisu"
|
||
},
|
||
illustrator: "Noriko Hotta",
|
||
rarity: "Rare Holo",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
417,
|
||
],
|
||
hp: 60,
|
||
types: [
|
||
"Lightning",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Poke-POWER",
|
||
name: {
|
||
en: "Self-Generation",
|
||
fr: "Auto-génération",
|
||
de: "Eigengenerator"
|
||
},
|
||
effect: {
|
||
en: "Once during your turn, when you put Pachirisu from your hand onto your Bench, you may attach up to 2 Lightning Energy cards from your hand to Pachirisu.",
|
||
fr: "Une seule fois pendant votre tour, lorsque vous placez Pachirisu de votre main sur votre Banc, vous pouvez lui attacher 2 cartes Énergie Lightning.",
|
||
de: "Einmal während deines Zuges kannst du, wenn du Pachirisu von deiner Hand auf deine Bank legst, bis zu 2 -Energiekarten von deiner Hand an Pachirisu anlegen."
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
"Lightning",
|
||
],
|
||
name: {
|
||
en: "Shocking Bolt",
|
||
fr: "Éclair neutralisant",
|
||
de: "Schockbolzen"
|
||
},
|
||
effect: {
|
||
en: "Put all Energy cards attached to Pachirisu in the Lost Zone.",
|
||
fr: "Placez toutes les cartes Énergie attachées à Pachirisu dans la Zone Perdue.",
|
||
de: "Lege alle an Pachirisu angelegten Energiekarten ins Nirgendwo."
|
||
},
|
||
damage: 50,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Metal",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|