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

89 lines
1.3 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: "ex6-110",
localId: 110,
// Card informations
name: {
en: "Mr. Mime ex",
},
hp: 80,
type: [
Type.PSYCHIC,
],
dexId: 122,
image: {
low: {
en: "https://assets.tcgdex.net/en/ex/ex6/110/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/ex/ex6/110/high.png",
},
},
evolveFrom: {},
tags: [
Tag.EX,
],
illustrator: {
id: 1,
name: "Ryo Ueda"
},
abilities: [{
id: 962,
type: AbilityType.POKEBODY,
name: {
en: "Magic Odds",
},
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 10, 30, 50, 70, 90, 110, 130, 150, or 170.",
}
}],
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.RareHoloEX,
category: Category.POKEMON,
set: {
name: "FireRed & LeafGreen",
code: "ex6"
}
}
export default card