mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
111 lines
2.2 KiB
TypeScript
111 lines
2.2 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: "sm4-103",
|
||
localId: 103,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Nihilego-GX",
|
||
fr: "Zéroïd-GX",
|
||
},
|
||
|
||
hp: 180,
|
||
|
||
type: [
|
||
Type.PSYCHIC,
|
||
],
|
||
|
||
dexId: 793,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm4/103/low",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm4/103/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm4/103/high",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm4/103/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.GX,
|
||
],
|
||
|
||
illustrator: "5ban Graphics",
|
||
|
||
abilities: [{
|
||
id: 722,
|
||
type: AbilityType.TALENT,
|
||
name: {
|
||
en: "Empty Light",
|
||
fr: "Lumière Vide",
|
||
},
|
||
text: {
|
||
en: "When you play this Pokémon from your hand onto your Bench during your turn, you may leave both Active Pokémon Confused and Poisoned.",
|
||
fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc pendant votre tour, vous pouvez laisser les deux Pokémon Actifs Confus et Empoisonnés.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.PSYCHIC,
|
||
Type.PSYCHIC,
|
||
Type.PSYCHIC
|
||
],
|
||
name: {
|
||
en: "Lock Up",
|
||
fr: "Cage",
|
||
},
|
||
text: {
|
||
en: "The Defending Pokémon can't retreat during your opponent's next turn.",
|
||
fr: "Le Pokémon Défenseur ne peut pas battre en retraite pendant le prochain tour de votre adversaire.",
|
||
},
|
||
damage: 120
|
||
},{
|
||
cost: [
|
||
Type.PSYCHIC,
|
||
Type.PSYCHIC,
|
||
Type.PSYCHIC
|
||
],
|
||
name: {
|
||
en: "Symbiont-GX",
|
||
fr: "Parasite-GX",
|
||
},
|
||
text: {
|
||
en: "Add the top 2 cards of your opponent's deck to their Prize cards. (You can't use more than 1 GX attack in a game.)",
|
||
fr: "Ajoutez les 2 cartes du dessus du deck de votre adversaire à ses cartes Récompense. (Vous ne pouvez utiliser qu’une attaque GX par partie.)",
|
||
},
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.PSYCHIC,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 2,
|
||
|
||
rarity: Rarity.ULTRARARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Crimson Invasion",
|
||
code: "sm4"
|
||
}
|
||
}
|
||
|
||
export default card
|