1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00

66 lines
801 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Holon Phantoms'
const card: Card = {
name: {
en: "Sableye",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
302,
],
hp: 60,
types: [
"Darkness",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Paralyzing Gaze",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
},
},
{
cost: [
"Darkness",
"Colorless",
],
name: {
en: "Knock Off",
},
effect: {
en: "Choose 1 card from your opponent's hand without looking and discard it.",
},
damage: 10,
},
],
resistances: [
{
type: "Colorless",
value: "-30"
},
],
}
export default card