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:
69
data/XY/Roaring Skies/103.ts
Normal file
69
data/XY/Roaring Skies/103.ts
Normal 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
|
Reference in New Issue
Block a user