1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +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

55 lines
766 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../HGSS Black Star Promos'
const card: Card = {
name: {
en: "Smoochum",
},
illustrator: "Midori Harada",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
238,
],
hp: 30,
types: [
"Psychic",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Sweet Sleeping Face",
},
effect: {
en: "As long as Smoochum is Asleep, prevent all damage done to Smoochum from attacks.",
},
},
],
attacks: [
{
name: {
en: "Energy Antics",
},
effect: {
en: "Move an Energy card attached to 1 of your opponent's Pokémon to another one of your opponent's Pokémon. Smoochum is now Asleep.",
},
},
],
}
export default card