1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +00:00

79 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 '../Promos'
const card: Card = {
name: {
en: "Diancie-EX",
fr: "Diancie-EX",
},
illustrator: "5ban Graphics",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
719,
],
hp: 140,
types: [
"Fairy",
],
suffix: "EX",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Moonblast",
fr: "Pouvoir Lunaire",
},
effect: {
en: "During your opponent's next turn, any damage done by attacks from the Defending Pokémon is reduced by 20 (before applying Weakness and Resistance).",
fr: "Pendant le prochain tour de votre adversaire, tous les dégâts infligés par des attaques du Pokémon Défenseur sont réduits de 20 (avant application de la Faiblesse et de la Résistance).",
},
damage: 20,
},
{
cost: [
"Fairy",
"Fairy",
"Colorless",
],
name: {
en: "Luminous Swirl",
fr: "Tourbillon Lumineux",
},
effect: {
en: "Flip 2 coins. This attack does 40 more damage for each heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 40 dégâts supplémentaires pour chaque côté face.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
resistances: [
{
type: "Darkness",
value: "-20"
},
],
retreat: 2,
}
export default card