mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-24 12:59:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
75
data/Black & White/Dragons Exalted/92.ts
Normal file
75
data/Black & White/Dragons Exalted/92.ts
Normal file
@ -0,0 +1,75 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Dragons Exalted'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Giratina-EX",
|
||||
fr: "Giratina-EX",
|
||||
},
|
||||
illustrator: "Eske Yoshinob",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
487,
|
||||
],
|
||||
hp: 180,
|
||||
types: [
|
||||
"Dragon",
|
||||
],
|
||||
|
||||
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Grass",
|
||||
"Psychic",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Shred",
|
||||
fr: "Déchiquetage",
|
||||
},
|
||||
effect: {
|
||||
en: "This attack's damage isn't affected by any effects on the Defending Pokémon.",
|
||||
fr: "Les dégâts de cette attaque ne sont affectés par aucun effet en action sur le Pokémon Défenseur.",
|
||||
},
|
||||
damage: 90,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Grass",
|
||||
"Psychic",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Dragon Pulse",
|
||||
fr: "Dracochoc",
|
||||
},
|
||||
effect: {
|
||||
en: "Discard the top 3 cards of your deck.",
|
||||
fr: "Défaussez les 3 cartes du dessus de votre deck.",
|
||||
},
|
||||
damage: 130,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Dragon",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user