1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 13:22:15 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

81 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../XY Black Star Promos'
const card: Card = {
name: {
en: "Yveltal",
fr: "Yveltal",
},
illustrator: "Masakazu Fukuda",
rarity: "None",
category: "Pokemon",
set: Set,
dexId: [
717,
],
hp: 130,
types: [
"Darkness",
],
stage: "Basic",
attacks: [
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Air Crash",
fr: "Crash Aérien",
},
effect: {
en: "Flip a coin. If heads, discard an Energy attached to your opponents Active Pokémon.",
fr: "Lancez une pièce. Si cest face, défaussez une Énergie attachée au Pokémon Actif de votre adversaire.",
},
damage: 50,
},
{
cost: [
"Darkness",
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Wings of Destruction",
fr: "Ailes de lAnnihilation",
},
effect: {
en: "If your opponent has Xerneas (including Xerneas-EX) in play, this attack does 40 more damage.",
fr: "Si votre adversaire a Xerneas (y compris Xerneas-EX) en jeu, cette attaque inflige 40 dégâts supplémentaires.",
},
damage: "80",
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "20"
},
],
retreat: 2,
}
export default card