1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-18 23:49:49 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

80
data/XY/Promos/XY32.ts Normal file
View File

@ -0,0 +1,80 @@
import { Card } from '../../../interfaces'
import Set from '../Promos'
const card: Card = {
name: {
en: "Yveltal",
fr: "Yveltal",
},
illustrator: "Masakazu Fukuda",
rarity: "Common",
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 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: "Fightning",
value: "-20"
},
],
retreat: 2,
}
export default card