mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-27 13:22:15 +00:00
98 lines
1.6 KiB
TypeScript
98 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-SM163",
|
||
localId: "SM163",
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Mimikyu",
|
||
fr: "Mimiqui",
|
||
},
|
||
|
||
hp: 70,
|
||
|
||
type: [
|
||
Type.FAIRY,
|
||
],
|
||
|
||
dexId: 778,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/sm/smp/SM163/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/sm/smp/SM163/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/sm/smp/SM163/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/sm/smp/SM163/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 62,
|
||
name: "Saya Tsuruta"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.FAIRY
|
||
],
|
||
name: {
|
||
en: "Mimic",
|
||
fr: "Copie",
|
||
},
|
||
text: {
|
||
en: "Shuffle your hand into your deck. Then, draw a card for each card in your opponent's hand.",
|
||
fr: "Mélangez votre main avec votre deck. Ensuite, piochez une carte pour chaque carte dans la main de votre adversaire.",
|
||
},
|
||
},{
|
||
cost: [
|
||
Type.FAIRY,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Play Rough",
|
||
fr: "Câlinerie",
|
||
},
|
||
text: {
|
||
en: "Flip a coin. If heads, this attack does 20 more damage.",
|
||
fr: "Lancez une pièce. Si c’est face, cette attaque inflige 20 dégâts supplémentaires.",
|
||
},
|
||
damage: 20
|
||
}],
|
||
|
||
|
||
|
||
|
||
|
||
retreat: 1,
|
||
|
||
rarity: Rarity.Common,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "SM Black Star Promos",
|
||
code: "smp"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|