mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +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: "smp-SM58",
|
||
localId: "SM58",
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Necrozma-GX",
|
||
},
|
||
|
||
hp: 180,
|
||
|
||
type: [
|
||
Type.PSYCHIC,
|
||
],
|
||
|
||
dexId: 800,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/sm/smp/SM58/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/sm/smp/SM58/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.GX,
|
||
],
|
||
|
||
illustrator: "5ban Graphics",
|
||
|
||
abilities: [{
|
||
id: 1136,
|
||
type: AbilityType.TALENT,
|
||
name: {
|
||
en: "Light's End",
|
||
},
|
||
text: {
|
||
en: "Prevent all damage done to this Pokémon by attacks from Colorless Pokémon.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Prismatic Burst",
|
||
},
|
||
text: {
|
||
en: "Discard all Psychic Energy from this Pokémon. This attack does 60 more damage for each card you discarded in this way.",
|
||
},
|
||
damage: 10
|
||
},{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Black Ray-GX",
|
||
},
|
||
text: {
|
||
en: "This attack does 100 damage to each of your opponent's Pokémon-GX and Pokémon-EX. This damage isn't affected by Weakness or Resistance. (You can't use more than 1 GX attack in a game.)",
|
||
},
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.PSYCHIC,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
|
||
|
||
rarity: Rarity.COMMON,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "SM Black Star Promos",
|
||
code: "smp"
|
||
}
|
||
}
|
||
|
||
export default card
|