1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +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

78
data/XY/Promos/XY08.ts Normal file
View File

@ -0,0 +1,78 @@
import { Card } from '../../../interfaces'
import Set from '../Promos'
const card: Card = {
name: {
en: "Yveltal-EX",
fr: "Xerneas-EX",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
717,
],
hp: 170,
types: [
"Darkness",
],
suffix: "EX",
attacks: [
{
cost: [
"Darkness",
"Colorless",
],
name: {
en: "Evil Ball",
fr: "Percée",
},
effect: {
en: "This attack does 20 more damage times the amount of Energy attached to both Active Pokémon.",
fr: "Cette attaque inflige 30 dégâts à l'un des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
damage: 20,
},
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Y Cyclone",
fr: "Explosion X",
},
effect: {
en: "Move an Energy from this Pokémon to 1 of your Benched Pokémon.",
fr: "Ce Pokémon ne peut pas utiliser Explosion X pendant votre prochain tour.",
},
damage: 90,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
retreat: 2,
}
export default card