1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 13:22:15 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

97 lines
1.6 KiB
TypeScript

import Card from '../../../interfaces/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../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.png",
fr: "https://assets.tcgdex.net/fr/sm/smp/SM29/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/smp/SM29/high.png",
fr: "https://assets.tcgdex.net/fr/sm/smp/SM29/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 9,
name: "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