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

73
data/XY/Promos/XY19.ts Normal file
View File

@ -0,0 +1,73 @@
import { Card } from '../../../interfaces'
import Set from '../Promos'
const card: Card = {
name: {
en: "Delphox-EX",
fr: "Goupelin-EX",
},
illustrator: "5ban Graphics",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
655,
],
hp: 170,
types: [
"Fire",
],
suffix: "EX",
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Psybeam",
fr: "Rafale Psy",
},
effect: {
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Confused.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Confus.",
},
damage: 20,
},
{
cost: [
"Fire",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Wonder Flare",
fr: "Flamme Miracle",
},
effect: {
en: "Your opponent reveals his or her hand. This attack does 40 more damage for each Energy card in your opponent's hand.",
fr: "Votre adversaire montre sa main. Cette attaque inflige 40 dégâts supplémentaires pour chaque carte Énergie dans la main de votre adversaire.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 2,
}
export default card