mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-27 13:22:15 +00:00
81 lines
1.3 KiB
TypeScript
81 lines
1.3 KiB
TypeScript
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 opponent’s Active Pokémon.",
|
||
fr: "Lancez une pièce. Si c’est 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 l’Annihilation",
|
||
},
|
||
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
|