1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

119 lines
2.6 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 '../../../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: "sm5-63",
localId: 63,
// Card informations
name: {
en: "Dawn Wings Necrozma-GX",
fr: "Necrozma Ailes de lAurore-GX",
},
hp: 180,
type: [
Type.PSYCHIC,
],
dexId: 800,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm5/63/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm5/63/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm5/63/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm5/63/high.png",
},
},
evolveFrom: {},
tags: [
Tag.GX,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
abilities: [{
id: 1164,
type: AbilityType.TALENT,
name: {
en: "Invasion",
fr: "Invasion",
},
text: {
en: "Once during your turn (before your attack), if this Pokémon is on your Bench, you may switch it with your Active Pokémon.",
fr: "Une seule fois pendant votre tour (avant votre attaque), si ce Pokémon est sur votre Banc, vous pouvez léchanger avec votre Pokémon Actif.",
}
}],
attacks: [{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.PSYCHIC
],
name: {
en: "Dark Flash",
fr: "Flash Sombre",
},
text: {
en: "This attack's damage isn't affected by Resistance.",
fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance.",
},
damage: 120
},{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.PSYCHIC
],
name: {
en: "Moon's Eclipse-GX",
fr: "Éclipse Lunaire-GX",
},
text: {
en: "You can use this attack only if you have more Prize cards remaining than your opponent. Prevent all effects of attacks, including damage, done to this Pokémon during your opponent's next turn. (You can't use more than 1 GX attack in a game.)",
fr: "Vous pouvez utiliser cette attaque seulement sil vous reste plus de cartes Récompense que votre adversaire. Évitez tous les effets dattaques, y compris les dégâts, infligés à ce Pokémon pendant le prochain tour de votre adversaire. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
damage: 180
}],
weaknesses: [{
type: Type.DARKNESS,
value: "×2"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
retreat: 2,
rarity: Rarity.RareHoloGX,
category: Category.POKEMON,
set: {
name: "Ultra Prism",
code: "sm5"
}
}
export default card