mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-01 12:22:02 +00:00
feat: Add Brilliant Stars (#250)
This commit is contained in:
50
data/Sword & Shield/Brilliant Stars/052.ts
Normal file
50
data/Sword & Shield/Brilliant Stars/052.ts
Normal file
@@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Brilliant Stars"
|
||||
|
||||
const card: Card = {
|
||||
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"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user