1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

87 lines
2.1 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
name: {
en: "Braviary",
fr: "Gueriaigle",
es: "Braviary",
it: "Braviary",
pt: "Braviary",
de: "Washakwil"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 130,
types: ["Colorless"],
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