1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

75 lines
1.1 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Power Keepers'
const card: Card = {
name: {
en: "Sableye",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
302,
],
hp: 60,
types: [
"Psychic",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Synergy Effect",
},
effect: {
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: [
"Colorless",
],
name: {
en: "Down Draw",
},
effect: {
en: "Draw 2 cards from the bottom of your deck.",
},
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Feint Attack",
},
effect: {
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: "Colorless",
value: "-30"
},
],
}
export default card