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:
@ -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 opponent’s 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 opponent’s 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 s’inflige 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
|
Reference in New Issue
Block a user