mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18:09: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:
@ -6,11 +6,15 @@ const card: Card = {
|
||||
|
||||
name: {
|
||||
en: "Morpeko V",
|
||||
fr: "Morpeko V"
|
||||
fr: "Morpeko V",
|
||||
es: "Morpeko V",
|
||||
it: "Morpeko V",
|
||||
pt: "Morpeko V",
|
||||
de: "Morpeko V"
|
||||
},
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
rarity: "Common",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 170,
|
||||
types: ["Lightning"],
|
||||
@ -18,12 +22,20 @@ const card: Card = {
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Spark",
|
||||
fr: "Étincelle"
|
||||
fr: "Étincelle",
|
||||
es: "Chispa",
|
||||
it: "Scintilla",
|
||||
pt: "Spark",
|
||||
de: "Funkensprung"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This attack also does 20 damage to 1 of your opponent’s Benched Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)",
|
||||
fr: "Cette attaque inflige aussi 20 dégâts à l’un des Pokémon de Banc de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)"
|
||||
en: "This attack also does 20 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
fr: "Cette attaque inflige aussi 20 dégâts à l'un des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||||
es: "Este ataque también hace 20 puntos de daño a 1 de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
|
||||
it: "Questo attacco infligge anche 20 danni a uno dei Pokémon nella panchina del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.",
|
||||
pt: "This attack also does 20 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
de: "Diese Attacke fügt auch 1 Pokémon auf der Bank deines Gegners 20 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
@ -31,12 +43,20 @@ const card: Card = {
|
||||
}, {
|
||||
name: {
|
||||
en: "Electro Wheel",
|
||||
fr: "Électro Roue"
|
||||
fr: "Électro Roue",
|
||||
es: "Electrorrueda",
|
||||
it: "Ruota Elettrica",
|
||||
pt: "Electro Wheel",
|
||||
de: "Elektrorad"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Discard an Energy from this Pokémon. If you do, switch it with 1 of your Benched Pokémon.",
|
||||
fr: "Défaussez une Énergie de ce Pokémon. Dans ce cas, échangez-le contre l’un de vos Pokémon de Banc."
|
||||
fr: "Défaussez une Énergie de ce Pokémon. Dans ce cas, échangez-le contre l'un de vos Pokémon de Banc.",
|
||||
es: "Descarta 1 Energía de este Pokémon. Si lo haces, cámbialo por 1 de tus Pokémon en Banca.",
|
||||
it: "Scarta un'Energia da questo Pokémon. Se lo fai, scambialo con uno della tua panchina.",
|
||||
pt: "Discard an Energy from this Pokémon. If you do, switch it with 1 of your Benched Pokémon.",
|
||||
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel. Wenn du das machst, tausche es gegen 1 Pokémon auf deiner Bank aus."
|
||||
},
|
||||
|
||||
damage: 150,
|
||||
@ -48,7 +68,19 @@ const card: Card = {
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
retreat: 2,
|
||||
stage: "Basic",
|
||||
dexId: [877],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
regulationMark: "D",
|
||||
suffix: "V"
|
||||
}
|
||||
|
||||
export default card
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user