mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 12:52:13 +00:00
102 lines
1.7 KiB
TypeScript
102 lines
1.7 KiB
TypeScript
import Card from '@tcgdex/sdk/interfaces/Card'
|
||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: "xyp-XY63",
|
||
localId: "XY63",
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "M Absol-EX",
|
||
fr: "M Absol-EX",
|
||
},
|
||
|
||
hp: 210,
|
||
|
||
type: [
|
||
Type.DARKNESS,
|
||
],
|
||
|
||
dexId: 359,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/xy/xyp/XY63/low",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xyp/XY63/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/xy/xyp/XY63/high",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xyp/XY63/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Absol-EX",
|
||
fr: "Absol-EX",
|
||
},
|
||
|
||
tags: [
|
||
Tag.MEGA,
|
||
],
|
||
|
||
illustrator: "5ban Graphics",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.DARKNESS,
|
||
Type.DARKNESS
|
||
],
|
||
name: {
|
||
en: "Disaster Wing",
|
||
fr: "Règle des Méga-Évolutions",
|
||
},
|
||
text: {
|
||
en: "Discard the top card of your opponent's deck. If that card is a Trainer card, this attack does 80 more damage.",
|
||
},
|
||
damage: 80
|
||
},{
|
||
cost: [
|
||
Type.DARKNESS,
|
||
Type.DARKNESS
|
||
],
|
||
name: {
|
||
fr: "Aile du Désastre",
|
||
},
|
||
text: {
|
||
fr: "Défaussez la carte du dessus du deck de votre adversaire. Si c'est une carte Dresseur, cette attaque inflige 80 dégâts supplémentaires.",
|
||
},
|
||
damage: "80+"
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIGHTING,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.PSYCHIC,
|
||
value: "-20"
|
||
}],
|
||
|
||
retreat: 2,
|
||
|
||
rarity: Rarity.COMMON,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "XY Black Star Promos",
|
||
code: "xyp"
|
||
}
|
||
}
|
||
|
||
export default card
|