mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 18:29: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: "Lugia",
|
||||
fr: "Lugia"
|
||||
fr: "Lugia",
|
||||
es: "Lugia",
|
||||
it: "Lugia",
|
||||
pt: "Lugia",
|
||||
de: "Lugia"
|
||||
},
|
||||
|
||||
illustrator: "kodama",
|
||||
rarity: "Common",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Colorless"],
|
||||
@ -18,7 +22,11 @@ const card: Card = {
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Gust",
|
||||
fr: "Tornade"
|
||||
fr: "Tornade",
|
||||
es: "Tornado",
|
||||
it: "Raffica",
|
||||
pt: "Gust",
|
||||
de: "Windstoß"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
@ -26,12 +34,20 @@ const card: Card = {
|
||||
}, {
|
||||
name: {
|
||||
en: "Wind Pressure",
|
||||
fr: "Pression Éolienne"
|
||||
fr: "Pression Éolienne",
|
||||
es: "Presión Eólica",
|
||||
it: "Pressione Ventosa",
|
||||
pt: "Wind Pressure",
|
||||
de: "Winddruck"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "If your opponent has 5 or fewer cards in their hand, this attack does nothing.",
|
||||
fr: "Si votre adversaire a 5 cartes ou moins dans sa main, cette attaque ne fait rien."
|
||||
fr: "Si votre adversaire a 5 cartes ou moins dans sa main, cette attaque ne fait rien.",
|
||||
es: "Si tu rival tiene 5 o menos cartas en su mano, este ataque no hace nada.",
|
||||
it: "Se il tuo avversario ha cinque o meno carte in mano, questo attacco non ha effetto.",
|
||||
pt: "If your opponent has 5 or fewer cards in their hand, this attack does nothing.",
|
||||
de: "Wenn dein Gegner 5 oder weniger Karten auf seiner Hand hat, hat diese Attacke keine Auswirkungen."
|
||||
},
|
||||
|
||||
damage: 250,
|
||||
@ -48,7 +64,23 @@ const card: Card = {
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
retreat: 2,
|
||||
|
||||
description: {
|
||||
en: "It is said to be the guardian of the seas. It is rumored to have been seen on the night of a storm."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
dexId: [249],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
regulationMark: "D"
|
||||
}
|
||||
|
||||
export default card
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user