mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 02:19:17 +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: "Decidueye",
|
||||
fr: "Archéduc"
|
||||
fr: "Archéduc",
|
||||
es: "Decidueye",
|
||||
it: "Decidueye",
|
||||
pt: "Decidueye",
|
||||
de: "Silvarro"
|
||||
},
|
||||
|
||||
illustrator: "Souichirou Gunjima",
|
||||
rarity: "Common",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Grass"],
|
||||
@ -25,24 +29,40 @@ const card: Card = {
|
||||
|
||||
name: {
|
||||
en: "Deep Forest Camo",
|
||||
fr: "Camouflage Sylvestre"
|
||||
fr: "Camouflage Sylvestre",
|
||||
es: "Camuflaje Forestal",
|
||||
it: "Camuffamento Forestale",
|
||||
pt: "Deep Forest Camo",
|
||||
de: "Waldtarnung"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Prevent all damage done to this Pokémon by attacks from your opponent’s Pokémon V and Pokémon-GX.",
|
||||
fr: "Évitez tous les dégâts infligés à ce Pokémon par les attaques des Pokémon-V et Pokémon-GX de votre adversaire."
|
||||
en: "Prevent all damage done to this Pokémon by attacks from your opponent's Pokémon V and Pokémon-GX.",
|
||||
fr: "Évitez tous les dégâts infligés à ce Pokémon par les attaques des Pokémon-V et Pokémon-GX de votre adversaire.",
|
||||
es: "Evita todo el daño infligido a este Pokémon por ataques de los Pokémon V y Pokémon-GX de tu rival.",
|
||||
it: "Previeni tutti i danni inflitti a questo Pokémon dagli attacchi dei Pokémon-V e dei Pokémon-GX del tuo avversario.",
|
||||
pt: "Prevent all damage done to this Pokémon by attacks from your opponent's Pokémon V and Pokémon-GX.",
|
||||
de: "Verhindere allen Schaden, der diesem Pokémon durch Attacken von Pokémon-V und Pokémon-GX deines Gegners zugefügt wird."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Splitting Arrow",
|
||||
fr: "Flèche Fendante"
|
||||
fr: "Flèche Fendante",
|
||||
es: "Flecha Dividida",
|
||||
it: "Freccia Scissa",
|
||||
pt: "Splitting Arrow",
|
||||
de: "Spaltpfeil"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This attack also does 20 damage to 2 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 à 2 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 2 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 à 2 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 2 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 due 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 2 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
de: "Diese Attacke fügt auch 2 Pokémon auf der Bank deines Gegners 20 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
|
||||
},
|
||||
|
||||
damage: 90,
|
||||
@ -54,7 +74,23 @@ const card: Card = {
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
retreat: 2,
|
||||
|
||||
description: {
|
||||
en: "As if wielding a bow, it launches the arrow quills hidden among the feathers of its wings. Decidueye's shots never miss."
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
dexId: [724],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
regulationMark: "D"
|
||||
}
|
||||
|
||||
export default card
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user