mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 18:29:19 +00:00
Sword & Shield Fixes (#84)
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
This commit is contained in:
@ -5,11 +5,16 @@ const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Jolteon"
|
||||
en: "Jolteon",
|
||||
fr: "Voltali",
|
||||
es: "Jolteon",
|
||||
it: "Jolteon",
|
||||
pt: "Jolteon",
|
||||
de: "Blitza"
|
||||
},
|
||||
|
||||
illustrator: "Yuu Nishida",
|
||||
rarity: "Common",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Lightning"],
|
||||
@ -20,21 +25,41 @@ const card: Card = {
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Energize"
|
||||
en: "Energize",
|
||||
fr: "Énergisant",
|
||||
es: "Vigorizar",
|
||||
it: "Energizza",
|
||||
pt: "Energize",
|
||||
de: "Energiezufuhr"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Attach a Lightning Energy card from your discard pile to this Pokémon."
|
||||
en: "Attach a Lightning Energy card from your discard pile to this Pokémon.",
|
||||
fr: "Attachez une carte Énergie Lightning de votre pile de défausse à ce Pokémon.",
|
||||
es: "Une 1 carta de Energía Lightning de tu pila de descartes a este Pokémon.",
|
||||
it: "Assegna a questo Pokémon una carta Energia Lightning dalla tua pila degli scarti.",
|
||||
pt: "Attach a Lightning Energy card from your discard pile to this Pokémon.",
|
||||
de: "Lege 1 Lightning-Energiekarte aus deinem Ablagestapel an dieses Pokémon an."
|
||||
},
|
||||
|
||||
cost: ["Lightning"]
|
||||
}, {
|
||||
name: {
|
||||
en: "Thunder"
|
||||
en: "Thunder",
|
||||
fr: "Fatal-Foudre",
|
||||
es: "Trueno",
|
||||
it: "Tuono",
|
||||
pt: "Thunder",
|
||||
de: "Donner"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This Pokémon also does 30 damage to itself."
|
||||
en: "This Pokémon also does 30 damage to itself.",
|
||||
fr: "Ce Pokémon s'inflige aussi 30 dégâts.",
|
||||
es: "Este Pokémon también se hace 30 puntos de daño a sí mismo.",
|
||||
it: "Questo Pokémon infligge anche 30 danni a se stesso.",
|
||||
pt: "This Pokémon also does 30 damage to itself.",
|
||||
de: "Dieses Pokémon fügt auch sich selbst 30 Schadenspunkte zu."
|
||||
},
|
||||
|
||||
damage: 160,
|
||||
@ -44,7 +69,24 @@ const card: Card = {
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}]
|
||||
}],
|
||||
|
||||
description: {
|
||||
en: "If it is angered or startled, the fur all over its body bristles like sharp needles that pierce foes."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
retreat: 0,
|
||||
dexId: [135],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
regulationMark: "D"
|
||||
}
|
||||
|
||||
export default card
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user