mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
85 lines
1.3 KiB
TypeScript
85 lines
1.3 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: "ex6-111",
|
|
localId: 111,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Mr. Mime ex",
|
|
},
|
|
|
|
hp: 80,
|
|
|
|
type: [
|
|
Type.PSYCHIC,
|
|
],
|
|
|
|
dexId: 122,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/ex/ex6/111/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/ex/ex6/111/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.EX,
|
|
],
|
|
|
|
illustrator: "Ryo Ueda",
|
|
|
|
abilities: [{
|
|
id: 964,
|
|
type: AbilityType.POKEBODY,
|
|
name: {
|
|
en: "Magic Evens",
|
|
},
|
|
text: {
|
|
en: "If Mr. Mime ex would be damaged by an attack, prevent that attack's damage done to Mr. Mime ex if that damage is 20, 40, 60, 80, 100, 120, 140, 160, or 180.",
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.PSYCHIC,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Breakdown",
|
|
},
|
|
text: {
|
|
en: "Count the number of cards in your opponent's hand. Put that many damage counters on the Defending Pokémon.",
|
|
},
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.RARE,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "FireRed & LeafGreen",
|
|
code: "ex6"
|
|
}
|
|
}
|
|
|
|
export default card
|