1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-07 06:31:58 +00:00

Initial Database

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-19 16:19:09 +01:00
commit be94e712b8
12302 changed files with 1142705 additions and 0 deletions

88
cards/ex/ex6/111.ts Normal file
View File

@@ -0,0 +1,88 @@
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-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.png",
},
high: {
en: "https://assets.tcgdex.net/en/ex/ex6/111/high.png",
},
},
evolveFrom: {},
tags: [
Tag.EX,
],
illustrator: {
id: 1,
name: "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.RareHoloEX,
category: Category.POKEMON,
set: {
name: "FireRed & LeafGreen",
code: "ex6"
}
}
export default card