1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 09:29:19 +00:00

Updated Evolving Skies with attacks and other languages

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-08-28 16:54:37 +02:00
parent 90ebef01cf
commit b46b2c4fb9
194 changed files with 8779 additions and 436 deletions

View File

@ -12,14 +12,62 @@ const card: Card = {
},
name: {
en: "Lanturn"
en: "Lanturn",
fr: "Lanturn",
es: "Lanturn",
it: "Lanturn",
pt: "Lanturn",
de: "Lanturn"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 120,
types: ["Lightning"],
stage: "Stage1"
stage: "Stage1",
illustrator: "ryoma uratsuka",
attacks: [{
name: {
en: "Blinding Beam",
fr: "Rayon Éblouissant",
es: "Rayo Cegador",
it: "Raggio Accecante",
pt: "Blinding Beam",
de: "Blendender Schein"
},
effect: {
en: "During your opponents next turn, if the Defending Pokémon tries to attack, your opponent flips a coin. If tails, that attack doesnt happen.",
fr: "Pendant le prochain tour de votre adversaire, si le Pokémon Défenseur essaie dattaquer, votre adversaire lance une pièce. Si cest pile, lattaque nest pas lancée.",
es: "Durante el próximo turno de tu rival, si el Pokémon Defensor intenta atacar, tu rival lanza 1 moneda. Si sale cruz, ese ataque no se hace.",
it: "Se durante il prossimo turno del tuo avversario il Pokémon difensore prova ad attaccare, il tuo avversario lancia una moneta. Se esce croce, quellattacco non ha luogo.",
pt: "During your opponents next turn, if the Defending Pokémon tries to attack, your opponent flips a coin. If tails, that attack doesnt happen.",
de: "Wenn das Verteidigende Pokémon während des nächsten Zuges deines Gegners versucht anzugreifen, wirft dein Gegner 1 Münze. Bei Zahl wird jene Attacke nicht ausgeführt."
},
damage: 40,
cost: ["Lightning", "Colorless"]
}, {
name: {
en: "Electro Ball",
fr: "Boule Élek",
es: "Bola Voltio",
it: "Energisfera",
pt: "Electro Ball",
de: "Elektroball"
},
damage: 120,
cost: ["Lightning", "Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2
}
export default card