mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 01:49: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: "Zamazenta",
|
||||
fr: "Zamazenta"
|
||||
fr: "Zamazenta",
|
||||
es: "Zamazenta",
|
||||
it: "Zamazenta",
|
||||
pt: "Zamazenta",
|
||||
de: "Zamazenta"
|
||||
},
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "Common",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Metal"],
|
||||
@ -20,19 +24,31 @@ const card: Card = {
|
||||
|
||||
name: {
|
||||
en: "Sturdy Shield",
|
||||
fr: "Bouclier Solide"
|
||||
fr: "Bouclier Solide",
|
||||
es: "Escudo Robusto",
|
||||
it: "Scudo Robusto",
|
||||
pt: "Sturdy Shield",
|
||||
de: "Robuster Schild"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This Pokémon takes 20 less damage from attacks (after applying Weakness and Resistance).",
|
||||
fr: "Ce Pokémon subit 20 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance)."
|
||||
fr: "Ce Pokémon subit 20 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance).",
|
||||
es: "Los ataques hacen 20 puntos de daño menos a este Pokémon (después de aplicar Debilidad y Resistencia).",
|
||||
it: "Questo Pokémon subisce 20 danni in meno dagli attacchi, dopo aver applicato debolezza e resistenza.",
|
||||
pt: "This Pokémon takes 20 less damage from attacks (after applying Weakness and Resistance).",
|
||||
de: "Diesem Pokémon werden durch Attacken 20 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Headbang",
|
||||
fr: "Frappe de Tête"
|
||||
fr: "Frappe de Tête",
|
||||
es: "Cabecear",
|
||||
it: "Scuotitesta",
|
||||
pt: "Headbang",
|
||||
de: "Headbangen"
|
||||
},
|
||||
|
||||
damage: 130,
|
||||
@ -49,7 +65,23 @@ const card: Card = {
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
retreat: 2,
|
||||
|
||||
description: {
|
||||
en: "Its ability to deflect any attack led to it being known as the Fighting Master's Shield. It was feared and respected by all."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
dexId: [889],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
regulationMark: "D"
|
||||
}
|
||||
|
||||
export default card
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user