mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
93 lines
1.6 KiB
TypeScript
93 lines
1.6 KiB
TypeScript
import Card from '@tcgdex/sdk/interfaces/Card'
|
|
import Type from '@tcgdex/sdk/interfaces/Type'
|
|
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
|
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
|
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
|
import Category from '@tcgdex/sdk/interfaces/Category'
|
|
|
|
const card: Card = {
|
|
|
|
// ids
|
|
id: "smp-SM29",
|
|
localId: "SM29",
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Mimikyu",
|
|
fr: "Mimiqui",
|
|
},
|
|
|
|
hp: 70,
|
|
|
|
type: [
|
|
Type.PSYCHIC,
|
|
],
|
|
|
|
dexId: 778,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/sm/smp/SM29/low",
|
|
fr: "https://assets.tcgdex.net/fr/sm/smp/SM29/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/sm/smp/SM29/high",
|
|
fr: "https://assets.tcgdex.net/fr/sm/smp/SM29/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.BASIC,
|
|
],
|
|
|
|
illustrator: "Mitsuhiro Arita",
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.PSYCHIC
|
|
],
|
|
name: {
|
|
en: "Haunt",
|
|
fr: "Hanter",
|
|
},
|
|
text: {
|
|
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: [
|
|
Type.COLORLESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Astonish",
|
|
fr: "Étonnement",
|
|
},
|
|
text: {
|
|
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,
|
|
|
|
rarity: Rarity.COMMON,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "SM Black Star Promos",
|
|
code: "smp"
|
|
}
|
|
}
|
|
|
|
export default card
|