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: "Donphan",
|
||||
fr: "Donphan"
|
||||
fr: "Donphan",
|
||||
es: "Donphan",
|
||||
it: "Donphan",
|
||||
pt: "Donphan",
|
||||
de: "Donphan"
|
||||
},
|
||||
|
||||
illustrator: "Eri Yamaki",
|
||||
rarity: "Common",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 150,
|
||||
types: ["Fighting"],
|
||||
@ -23,12 +27,20 @@ const card: Card = {
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Earthquake",
|
||||
fr: "Séisme"
|
||||
fr: "Séisme",
|
||||
es: "Terremoto",
|
||||
it: "Terremoto",
|
||||
pt: "Earthquake",
|
||||
de: "Erdbeben"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This attack also does 20 damage to each of your Benched Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)",
|
||||
fr: "Cette attaque inflige aussi 20 dégâts à chacun de vos Pokémon de Banc. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)"
|
||||
en: "This attack also does 20 damage to each of your Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
fr: "Cette attaque inflige aussi 20 dégâts à chacun de vos Pokémon de Banc. (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 cada uno de tus Pokémon en Banca. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
|
||||
it: "Questo attacco infligge anche 20 danni a ciascuno dei Pokémon nella tua panchina. Non applicare debolezza e resistenza ai Pokémon in panchina.",
|
||||
pt: "This attack also does 20 damage to each of your Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
de: "Diese Attacke fügt auch jedem Pokémon auf deiner Bank 20 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
|
||||
},
|
||||
|
||||
damage: 120,
|
||||
@ -36,7 +48,11 @@ const card: Card = {
|
||||
}, {
|
||||
name: {
|
||||
en: "Heavy Impact",
|
||||
fr: "Gros Impact"
|
||||
fr: "Gros Impact",
|
||||
es: "Impacto Pesado",
|
||||
it: "Impatto Pesante",
|
||||
pt: "Heavy Impact",
|
||||
de: "Schwerer Einschlag"
|
||||
},
|
||||
|
||||
damage: 90,
|
||||
@ -48,7 +64,23 @@ const card: Card = {
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 4
|
||||
retreat: 4,
|
||||
|
||||
description: {
|
||||
en: "The longer and bigger its tusks, the higher its rank in its herd. The tusks take long to grow."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
dexId: [232],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
regulationMark: "D"
|
||||
}
|
||||
|
||||
export default card
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user