mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
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>
This commit is contained in:
64
data/Sun & Moon/SM Black Star Promos/SM29.ts
Normal file
64
data/Sun & Moon/SM Black Star Promos/SM29.ts
Normal file
@ -0,0 +1,64 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../SM Black Star Promos'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Mimikyu",
|
||||
fr: "Mimiqui",
|
||||
},
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
778,
|
||||
],
|
||||
hp: 70,
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Psychic",
|
||||
],
|
||||
name: {
|
||||
en: "Haunt",
|
||||
fr: "Hanter",
|
||||
},
|
||||
effect: {
|
||||
en: "Put 1 damage counter on your opponent's Active Pokémon.",
|
||||
fr: "Placez 1 marqueur de dégâts sur le Pokémon Actif de votre adversaire.",
|
||||
},
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Astonish",
|
||||
fr: "Étonnement",
|
||||
},
|
||||
effect: {
|
||||
en: "Choose a random card from your opponent's hand. Your opponent reveals that card and shuffles it into their deck.",
|
||||
fr: "Choisissez une carte au hasard de la main de votre adversaire. Votre adversaire montre la carte choisie et la mélange avec son deck.",
|
||||
},
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user