1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59: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

114
cards/sm/sm3/153.ts Normal file
View File

@ -0,0 +1,114 @@
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: "sm3-153",
localId: 153,
// Card informations
name: {
en: "Necrozma-GX",
fr: "Necrozma-GX",
},
hp: 180,
type: [
Type.PSYCHIC,
],
dexId: 800,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm3/153/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm3/153/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm3/153/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm3/153/high.png",
},
},
evolveFrom: {},
tags: [
Tag.GX,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
abilities: [{
id: 1136,
type: AbilityType.TALENT,
name: {
en: "Light's End",
fr: "Extinction des Feux",
},
text: {
en: "Prevent all damage done to this Pokémon by attacks from Colorless Pokémon.",
fr: "Évitez tous les dégâts infligés à ce Pokémon par des attaques des Pokémon Colorless.",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Prismatic Burst",
fr: "Explosion Prismatique",
},
text: {
en: "Discard all Psychic Energy from this Pokémon. This attack does 60 more damage for each card you discarded in this way.",
fr: "Défaussez toute lÉnergie Psychic de ce Pokémon. Cette attaque inflige 60 dégâts supplémentaires pour chaque carte défaussée de cette façon.",
},
damage: 10
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Black Ray-GX",
fr: "Rayon Noir-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.)",
fr: "Cette attaque inflige 100 dégâts à chacun des Pokémon-GX et Pokémon-EX de votre adversaire. Ces dégâts ne sont pas affectés par la Faiblesse ou la Résistance. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 2,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Burning Shadows",
code: "sm3"
}
}
export default card