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,14 @@ const card: Card = {
|
||||
|
||||
name: {
|
||||
en: "Duraludon",
|
||||
fr: "Duralugon"
|
||||
fr: "Duralugon",
|
||||
es: "Duraludon",
|
||||
pt: "Duraludon",
|
||||
de: "Duraludon"
|
||||
},
|
||||
|
||||
illustrator: "Ryuta Fuse",
|
||||
rarity: "Common",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Metal"],
|
||||
@ -18,7 +21,10 @@ const card: Card = {
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Metal Claw",
|
||||
fr: "Griffe Acier"
|
||||
fr: "Griffe Acier",
|
||||
es: "Garra Metal",
|
||||
pt: "Metal Claw",
|
||||
de: "Metallklaue"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
@ -26,12 +32,18 @@ const card: Card = {
|
||||
}, {
|
||||
name: {
|
||||
en: "Steel Beam",
|
||||
fr: "Métalaser"
|
||||
fr: "Métalaser",
|
||||
es: "Metaláser",
|
||||
pt: "Steel Beam",
|
||||
de: "Stahlstrahl"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This Pokémon also does 40 damage to itself.",
|
||||
fr: "Ce Pokémon s’inflige aussi 40 dégâts."
|
||||
fr: "Ce Pokémon s'inflige aussi 40 dégâts.",
|
||||
es: "Este Pokémon también se hace 40 puntos de daño a sí mismo.",
|
||||
pt: "This Pokémon also does 40 damage to itself.",
|
||||
de: "Dieses Pokémon fügt auch sich selbst 40 Schadenspunkte zu."
|
||||
},
|
||||
|
||||
damage: 150,
|
||||
@ -48,7 +60,23 @@ const card: Card = {
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
retreat: 2,
|
||||
|
||||
description: {
|
||||
en: "Its body resembles polished metal, and it's both lightweight and strong. The only drawback is that it rusts easily."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
dexId: [884],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
regulationMark: "D"
|
||||
}
|
||||
|
||||
export default card
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user