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,76 @@ const card: Card = {
},
name: {
en: "Braviary"
en: "Braviary",
fr: "Gueriaigle",
es: "Braviary",
it: "Braviary",
pt: "Braviary",
de: "Washakwil"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 130,
types: ["Colorless"],
stage: "Stage1"
stage: "Stage1",
illustrator: "SATOSHI NAKAI",
attacks: [{
name: {
en: "Valiant Talons",
fr: "Serres Vaillantes",
es: "Garras Aguerridas",
it: "Artigli della Baldanza",
pt: "Valiant Talons",
de: "Kühne Krallen"
},
effect: {
en: "If your opponents Active Pokémon is an Evolution Pokémon, this attack does 60 more damage.",
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon Évolutif, cette attaque inflige 60 dégâts supplémentaires.",
es: "Si el Pokémon Activo de tu rival es un Pokémon Evolución, este ataque hace 60 puntos de daño más.",
it: "Se il Pokémon attivo del tuo avversario è un Pokémon Evoluzione, questo attacco infligge 60 danni in più.",
pt: "If your opponents Active Pokémon is an Evolution Pokémon, this attack does 60 more damage.",
de: "Wenn das Aktive Pokémon deines Gegners ein Entwicklungs-Pokémon ist, fügt diese Attacke 60 Schadenspunkte mehr zu."
},
damage: "30+",
cost: ["Colorless"]
}, {
name: {
en: "Brave Bird",
fr: "Rapace",
es: "Pájaro Osado",
it: "Baldeali",
pt: "Brave Bird",
de: "Sturzflug"
},
effect: {
en: "This Pokémon also does 50 damage to itself.",
fr: "Ce Pokémon sinflige aussi 50 dégâts.",
es: "Este Pokémon también se hace 50 puntos de daño a sí mismo.",
it: "Questo Pokémon infligge anche 50 danni a se stesso.",
pt: "This Pokémon also does 50 damage to itself.",
de: "Dieses Pokémon fügt auch sich selbst 50 Schadenspunkte zu."
},
damage: 150,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1
}
export default card