1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 18:39:54 +00:00

51 lines
869 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Unified Minds'
const card: Card = {
name: {
en: "Sableye",
fr: "Ténéfix",
},
illustrator: "Suwama Chiaki",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
302,
],
hp: 80,
types: [
"Darkness",
],
stage: "Basic",
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Mirror Gem",
fr: "Gemme Miroir",
},
effect: {
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 dune attaque (même sil est mis K.O.), placez 8 marqueurs de dégâts sur le Pokémon Attaquant.",
},
damage: 10,
},
],
retreat: 1,
}
export default card