mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
98 lines
1.6 KiB
TypeScript
98 lines
1.6 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: "ex16-22",
|
|
localId: 22,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Sableye",
|
|
},
|
|
|
|
hp: 60,
|
|
|
|
type: [
|
|
Type.PSYCHIC,
|
|
],
|
|
|
|
dexId: 302,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/ex/ex16/22/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/ex/ex16/22/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.BASIC,
|
|
],
|
|
|
|
illustrator: "Ken Sugimori",
|
|
|
|
abilities: [{
|
|
id: 3,
|
|
type: AbilityType.POKEBODY,
|
|
name: {
|
|
en: "Synergy Effect",
|
|
},
|
|
text: {
|
|
en: "If Phoebe's Stadium is in play, prevent all damage done to Sableye by attacks from your opponent's Pokémon-ex.",
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Down Draw",
|
|
},
|
|
text: {
|
|
en: "Draw 2 cards from the bottom of your deck.",
|
|
},
|
|
},{
|
|
cost: [
|
|
Type.PSYCHIC,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Feint Attack",
|
|
},
|
|
text: {
|
|
en: "Choose 1 of your opponent's Pokémon. This attack does 20 damage to that Pokémon. This attack's damage isn't affected by Weakness, Resistance, Poké-Powers, Poké-Bodies, or any other effects on that Pokémon.",
|
|
},
|
|
}],
|
|
|
|
|
|
|
|
resistances: [{
|
|
type: Type.COLORLESS,
|
|
value: "-30"
|
|
}],
|
|
|
|
|
|
|
|
rarity: Rarity.RARE,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Power Keepers",
|
|
code: "ex16"
|
|
}
|
|
}
|
|
|
|
export default card
|