mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
57 lines
1.3 KiB
TypeScript
57 lines
1.3 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../Brilliant Stars"
|
||
|
||
const card: Card = {
|
||
dexId: [417],
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Pachirisu",
|
||
fr: "Pachirisu",
|
||
es: "Pachirisu",
|
||
it: "Pachirisu",
|
||
pt: "Pachirisu",
|
||
de: "Pachirisu"
|
||
},
|
||
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
hp: 70,
|
||
types: ["Lightning"],
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
cost: ["Lightning", "Colorless"],
|
||
|
||
name: {
|
||
en: "Windup Thunder",
|
||
fr: "Tonnerre Mécanique",
|
||
es: "Trueno a Cuerda",
|
||
it: "Tuono Caricato",
|
||
pt: "Trovão de Corda",
|
||
de: "Aufziehdonner"
|
||
},
|
||
|
||
effect: {
|
||
en: "This attack does 30 damage for each Pokémon Tool attached to all of your Pokémon.",
|
||
fr: "Cette attaque inflige 30 dégâts pour chaque Outil Pokémon attaché à tous vos Pokémon.",
|
||
es: "Este ataque hace 30 puntos de daño por cada Herramienta Pokémon unida a todos tus Pokémon.",
|
||
it: "Questo attacco infligge 30 danni per ogni carta Oggetto Pokémon assegnata ai tuoi Pokémon.",
|
||
pt: "Este ataque causa 30 pontos de dano para cada Ferramenta Pokémon ligada a todos os seus Pokémon.",
|
||
de: "Diese Attacke fügt für jede an alle deine Pokémon angelegte Pokémon-Ausrüstung 30 Schadenspunkte zu."
|
||
},
|
||
|
||
damage: "30×"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "F",
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
}
|
||
}
|
||
|
||
export default card |