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: "Flareon",
|
||||
fr: "Pyroli"
|
||||
fr: "Pyroli",
|
||||
es: "Flareon",
|
||||
pt: "Flareon",
|
||||
de: "Flamara"
|
||||
},
|
||||
|
||||
illustrator: "You Iribi",
|
||||
rarity: "Common",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Fire"],
|
||||
@ -23,24 +26,36 @@ const card: Card = {
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Singe",
|
||||
fr: "Roussi"
|
||||
fr: "Roussi",
|
||||
es: "Quemadura",
|
||||
pt: "Singe",
|
||||
de: "Versengung"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your opponent’s Active Pokémon is now Burned.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé."
|
||||
en: "Your opponent's Active Pokémon is now Burned.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé.",
|
||||
es: "El Pokémon Activo de tu rival pasa a estar Quemado.",
|
||||
pt: "Your opponent's Active Pokémon is now Burned.",
|
||||
de: "Das Aktive Pokémon deines Gegners ist jetzt verbrannt."
|
||||
},
|
||||
|
||||
cost: ["Fire"]
|
||||
}, {
|
||||
name: {
|
||||
en: "Kindle",
|
||||
fr: "Enflammer"
|
||||
fr: "Enflammer",
|
||||
es: "Encendido",
|
||||
pt: "Kindle",
|
||||
de: "Anzünden"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Discard an Energy from this Pokémon. If you do, discard an Energy from your opponent’s Active Pokémon.",
|
||||
fr: "Défaussez une Énergie de ce Pokémon. Dans ce cas, défaussez une Énergie du Pokémon Actif de votre adversaire."
|
||||
en: "Discard an Energy from this Pokémon. If you do, discard an Energy from your opponent's Active Pokémon.",
|
||||
fr: "Défaussez une Énergie de ce Pokémon. Dans ce cas, défaussez une Énergie du Pokémon Actif de votre adversaire.",
|
||||
es: "Descarta 1 Energía de este Pokémon. Si lo haces, descarta 1 Energía del Pokémon Activo de tu rival.",
|
||||
pt: "Discard an Energy from this Pokémon. If you do, discard an Energy from your opponent's Active Pokémon.",
|
||||
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel. Wenn du das machst, lege 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
|
||||
},
|
||||
|
||||
damage: 120,
|
||||
@ -52,7 +67,23 @@ const card: Card = {
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
retreat: 2,
|
||||
|
||||
description: {
|
||||
en: "Once it has stored up enough heat, this Pokémon's body temperature can reach up to 1,700 degrees Fahrenheit."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
dexId: [136],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
regulationMark: "D"
|
||||
}
|
||||
|
||||
export default card
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user