mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
81 lines
1.5 KiB
TypeScript
81 lines
1.5 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: "sm11-133",
|
||
localId: 133,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Sableye",
|
||
fr: "Ténéfix",
|
||
},
|
||
|
||
hp: 80,
|
||
|
||
type: [
|
||
Type.DARKNESS,
|
||
],
|
||
|
||
dexId: 302,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm11/133/low",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm11/133/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm11/133/high",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm11/133/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: "Suwama Chiaki",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.DARKNESS
|
||
],
|
||
name: {
|
||
en: "Mirror Gem",
|
||
fr: "Gemme Miroir",
|
||
},
|
||
text: {
|
||
en: "During your opponent's next turn, if this Pokémon is damaged by an attack (even if it is Knocked Out), put 8 damage counters on the Attacking Pokémon.",
|
||
fr: "Pendant le prochain tour de votre adversaire, si ce Pokémon subit les dégâts d’une attaque (même s’il est mis K.O.), placez 8 marqueurs de dégâts sur le Pokémon Attaquant.",
|
||
},
|
||
damage: 10
|
||
}],
|
||
|
||
|
||
|
||
|
||
|
||
retreat: 1,
|
||
|
||
rarity: Rarity.UNCOMMON,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Unified Minds",
|
||
code: "sm11"
|
||
}
|
||
}
|
||
|
||
export default card
|