1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-23 16:49:53 +00:00
Florian Bouillon f4af0d04be
Make Each Promos Series Names unique to be clearly identifiable (#15)
* Changed folder and the automatics imports changes

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>

* Fixed SM promos missing the correct set

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-04-29 12:04:12 +02:00

61 lines
742 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../XY Black Star Promos'
const card: Card = {
name: {
en: "Sableye",
fr: "Ténéfix",
},
illustrator: "match",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
302,
],
hp: 70,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Energy Hunt",
fr: "Stop Θ",
},
effect: {
en: "Flip 3 coins. For each heads, attach a basic Energy card from your discard pile to your Benched Pokémon-EX in any way you like.",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Claw Slash",
},
damage: 20,
},
],
retreat: 2,
}
export default card