1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 01:49:19 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

101
cards/xy/xy7/57.ts Normal file
View File

@ -0,0 +1,101 @@
import Card from '../../../interfaces/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "xy7-57",
localId: 57,
// Card informations
name: {
en: "Giratina-EX",
fr: "Giratina-EX",
},
hp: 170,
type: [
Type.DRAGON,
],
dexId: 487,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy7/57/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy7/57/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy7/57/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy7/57/high.png",
},
},
evolveFrom: {},
tags: [
Tag.EX,
],
illustrator: {
id: 116,
name: "PLANETA"
},
abilities: [{
id: 1287,
type: AbilityType.TALENT,
name: {
en: "Renegade Pulse",
fr: "Onde Renégate",
},
text: {
en: "Prevent all effects of attacks, including damage, done to this Pokémon by your opponent's Mega Evolution Pokémon.",
fr: "Évitez tous les effets d'attaques, y compris les dégâts, infligés à ce Pokémon par les Pokémon Méga-Évolution de votre adversaire.",
}
}],
attacks: [{
cost: [
Type.GRASS,
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Chaos Wheel",
fr: "Roue Chaotique",
},
text: {
en: "Your opponent can't play any Pokémon Tool, Special Energy, or Stadium cards from his or her hand during his or her next turn.",
fr: "Votre adversaire ne peut pas jouer de cartes Outil Pokémon, Énergie spéciale ou Stade de sa main pendant son prochain tour.",
},
damage: 100
}],
weaknesses: [{
type: Type.FAIRY,
value: "×2"
}],
retreat: 3,
rarity: Rarity.RareHoloEX,
category: Category.POKEMON,
set: {
name: "Ancient Origins",
code: "xy7"
}
}
export default card