mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-01 23:22:11 +00:00
92 lines
1.6 KiB
TypeScript
92 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: "col1-47",
|
|
localId: 47,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Mime Jr.",
|
|
fr: "Mime Jr.",
|
|
},
|
|
|
|
hp: 30,
|
|
|
|
type: [
|
|
Type.PSYCHIC,
|
|
],
|
|
|
|
dexId: 439,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/col/col1/47/low.png",
|
|
fr: "https://assets.tcgdex.net/fr/col/col1/47/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/col/col1/47/high.png",
|
|
fr: "https://assets.tcgdex.net/fr/col/col1/47/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.BASIC,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 63,
|
|
name: "Noriko Hotta"
|
|
},
|
|
|
|
abilities: [{
|
|
id: 48,
|
|
type: AbilityType.POKEBODY,
|
|
name: {
|
|
en: "Sweet Sleeping Face",
|
|
fr: "Joli visage endormi",
|
|
},
|
|
text: {
|
|
en: "As long as Mime Jr. is Asleep, prevent all damage done to Mime Jr. by attacks.",
|
|
fr: "Tant que Mime Jr. est Endormi, prévenez tous les dégâts qui peuvent lui être infligés par des attaques.",
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Sleepy Lost",
|
|
fr: "Berceuse perdue",
|
|
},
|
|
text: {
|
|
en: "Put the top card of your opponent's deck in the Lost Zone. Mime Jr. is now Asleep.",
|
|
fr: "Placez la carte du dessus du deck de votre adversaire dans la Zone Perdue. Mime Jr. est maintenant Endormi.",
|
|
},
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.Uncommon,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Call of Legends",
|
|
code: "col1"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|