1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +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/sm/sm6/127.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: "sm6-127",
localId: 127,
// 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/sm6/127/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm6/127/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm6/127/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm6/127/high.png",
},
},
evolveFrom: {},
tags: [
Tag.GX,
],
illustrator: {
id: 141,
name: "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.RareUltra,
category: Category.POKEMON,
set: {
name: "Forbidden Light",
code: "sm6"
}
}
export default card