mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 01:19:18 +00:00
feat: Add Brilliant Stars (#250)
This commit is contained in:
63
data/Sword & Shield/Brilliant Stars/TG05.ts
Normal file
63
data/Sword & Shield/Brilliant Stars/TG05.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Brilliant Stars"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Zekrom",
|
||||
fr: "Zekrom",
|
||||
es: "Zekrom",
|
||||
it: "Zekrom",
|
||||
pt: "Zekrom",
|
||||
de: "Zekrom"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Lightning"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Slash",
|
||||
fr: "Tranche",
|
||||
es: "Cuchillada",
|
||||
it: "Lacerazione",
|
||||
pt: "Talho",
|
||||
de: "Schlitzer"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Lightning", "Lightning", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Wild Shock",
|
||||
fr: "Éclair Sauvage",
|
||||
es: "Voltio Salvaje",
|
||||
it: "Shock Feroce",
|
||||
pt: "Choque Selvagem",
|
||||
de: "Wilder Schock"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This Pokémon also does 60 damage to itself. Your opponent's Active Pokémon is now Paralyzed.",
|
||||
fr: "Ce Pokémon s'inflige aussi 60 dégâts. Le Pokémon Actif de votre adversaire est maintenant Paralysé.",
|
||||
es: "Este Pokémon también se hace 60 puntos de daño a sí mismo. El Pokémon Activo de tu rival pasa a estar Paralizado.",
|
||||
it: "Questo Pokémon infligge anche 60 danni a se stesso. Il Pokémon attivo del tuo avversario viene paralizzato.",
|
||||
pt: "Este Pokémon também causa 60 pontos de dano a si mesmo. O Pokémon Ativo do seu oponente agora está Paralisado.",
|
||||
de: "Dieses Pokémon fügt auch sich selbst 60 Schadenspunkte zu. Das Aktive Pokémon deines Gegners ist jetzt paralysiert."
|
||||
},
|
||||
|
||||
damage: 130
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "D"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user