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

80 lines
1.2 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: "Xerneas",
},
illustrator: "5ban Graphics",
rarity: "None",
category: "Pokemon",
set: Set,
dexId: [
717,
],
hp: 130,
types: [
"Darkness",
],
stage: "Basic",
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Oblivion Wing",
fr: "Mort-Ailes",
},
effect: {
en: "Attach a Darkness Energy card from your discard pile to 1 of your Benched Pokémon.",
fr: "Attachez une carte Énergie Darkness de votre pile de défausse à lun de vos Pokémon de Banc.",
},
damage: 30
},
{
cost: [
"Darkness",
"Darkness",
"Colorless",
],
name: {
en: "Darkness Blade",
fr: "Lame Obscure",
},
effect: {
en: "Flip a coin. If tails, this Pokémon cant attack during your next turn.",
fr: "Lancez une pièce. Si cest pile, ce Pokémon ne peut pas attaquer pendant votre prochain tour.",
},
damage: 100,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 2,
}
export default card