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: "Rayquaza",
|
||||
fr: "Rayquaza"
|
||||
fr: "Rayquaza",
|
||||
es: "Rayquaza",
|
||||
pt: "Rayquaza",
|
||||
de: "Rayquaza"
|
||||
},
|
||||
|
||||
illustrator: "so-taro",
|
||||
rarity: "Common",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Colorless"],
|
||||
@ -18,12 +21,18 @@ const card: Card = {
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Jaw Lock",
|
||||
fr: "Croque Fort"
|
||||
fr: "Croque Fort",
|
||||
es: "Presa Maxilar",
|
||||
pt: "Jaw Lock",
|
||||
de: "Fesselbiss"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "During your opponent’s next turn, the Defending Pokémon can’t retreat.",
|
||||
fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas battre en retraite."
|
||||
en: "During your opponent's next turn, the Defending Pokémon can't retreat.",
|
||||
fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas battre en retraite.",
|
||||
es: "Durante el próximo turno de tu rival, el Pokémon Defensor no puede retirarse.",
|
||||
pt: "During your opponent's next turn, the Defending Pokémon can't retreat.",
|
||||
de: "Während des nächsten Zuges deines Gegners kann sich das Verteidigende Pokémon nicht zurückziehen."
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
@ -31,12 +40,18 @@ const card: Card = {
|
||||
}, {
|
||||
name: {
|
||||
en: "Power Blast",
|
||||
fr: "Violente Déflagration"
|
||||
fr: "Violente Déflagration",
|
||||
es: "Estallido Vigoroso",
|
||||
pt: "Power Blast",
|
||||
de: "Powerschuss"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Discard an Energy from this Pokémon.",
|
||||
fr: "Défaussez une Énergie de ce Pokémon."
|
||||
fr: "Défaussez une Énergie de ce Pokémon.",
|
||||
es: "Descarta 1 Energía de este Pokémon.",
|
||||
pt: "Discard an Energy from this Pokémon.",
|
||||
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel."
|
||||
},
|
||||
|
||||
damage: 120,
|
||||
@ -53,7 +68,23 @@ const card: Card = {
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
retreat: 2,
|
||||
|
||||
description: {
|
||||
en: "It flies in the ozone layer, way up high in the sky. Until recently, no one had ever seen it."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
dexId: [384],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
regulationMark: "D"
|
||||
}
|
||||
|
||||
export default card
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user