1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

57 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 "../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