1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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

View File

@ -0,0 +1,69 @@
import { Card } from '../../../interfaces'
import Set from '../Roaring Skies'
const card: Card = {
name: {
en: "Hydreigon-EX",
fr: "Trioxhydre-EX",
},
illustrator: "Ryo Ueda",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
635,
],
hp: 180,
types: [
"Dragon",
],
suffix: "EX",
abilities: [
{
type: "Ability",
name: {
en: "Dragon Road",
fr: "Voie du Dragon",
},
effect: {
en: "If there is any Stadium card in play, the Retreat Cost of each of your Dragon Pokémon in play is ColorlessColorless less.",
fr: "S'il y a une carte Stade en jeu, le Coût de Retraite de chacun de vos Pokémon Dragon en jeu est diminué de ColorlessColorless.",
},
},
],
attacks: [
{
cost: [
"Psychic",
"Darkness",
"Colorless",
],
name: {
en: "Shred",
fr: "Déchiquetage",
},
effect: {
en: "This attack's damage isn't affected by any effects on your opponent's Active Pokémon.",
fr: "Les dégâts de cette attaque ne sont affectés par aucun effet en action sur le Pokémon Actif de votre adversaire.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Fairy",
value: "×2"
},
],
retreat: 3,
}
export default card