1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon 6ca1ae94ed
Updated Cards to use new Rarities
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 13:58:48 +02:00

98 lines
2.1 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "sm75-78",
localId: 78,
// Card informations
name: {
en: "Ultra Necrozma-GX",
fr: "Ultra-Necrozma-GX",
},
hp: 190,
type: [
Type.DRAGON,
],
dexId: 800,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm75/78/low",
fr: "https://assets.tcgdex.net/fr/sm/sm75/78/low",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm75/78/high",
fr: "https://assets.tcgdex.net/fr/sm/sm75/78/high",
},
},
evolveFrom: {},
tags: [
Tag.GX,
],
illustrator: "PLANETA Igarashi",
attacks: [{
cost: [
Type.PSYCHIC,
Type.METAL
],
name: {
en: "Photon Geyser",
fr: "Photo-Geyser",
},
text: {
en: "Discard all basic Psychic Energy from this Pokémon. This attack does 80 more damage for each card you discarded in this way.",
fr: "Défaussez toute lÉnergie Psychic de base de ce Pokémon. Cette attaque inflige 80 dégâts supplémentaires pour chaque carte défaussée de cette façon.",
},
damage: 20
},{
cost: [
Type.PSYCHIC,
Type.METAL
],
name: {
en: "Sky-Scorching Light-GX",
fr: "Lumière Apocalyptique-GX",
},
text: {
en: "You can use this attack only if the total of both players' remaining Prize cards is 6 or less. Put 6 damage counters on each of your opponent's Pokémon. (You can't use more than 1 GX attack in a game.)",
fr: "Vous ne pouvez utiliser cette attaque que sil reste un total de 6 cartes Récompense ou moins aux deux joueurs. Placez 6 marqueurs de dégâts sur chacun des Pokémon de votre adversaire. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
}],
weaknesses: [{
type: Type.FAIRY,
value: "×2"
}],
retreat: 2,
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Dragon Majesty",
code: "sm75"
}
}
export default card