mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
89 lines
1.1 KiB
TypeScript
89 lines
1.1 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: "dp2-54",
|
|
localId: 54,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Magmar",
|
|
},
|
|
|
|
hp: 70,
|
|
|
|
type: [
|
|
Type.FIRE,
|
|
],
|
|
|
|
dexId: 126,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp2/54/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp2/54/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.BASIC,
|
|
],
|
|
|
|
illustrator: "Mitsuhiro Arita",
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.FIRE
|
|
],
|
|
name: {
|
|
en: "Flare",
|
|
},
|
|
damage: 20
|
|
},{
|
|
cost: [
|
|
Type.FIRE,
|
|
Type.FIRE,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Flamethrower",
|
|
},
|
|
text: {
|
|
en: "Discard an Energy attached to Magmar.",
|
|
},
|
|
damage: 50
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.WATER,
|
|
value: "+20"
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.UNCOMMON,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Mysterious Treasures",
|
|
code: "dp2"
|
|
}
|
|
}
|
|
|
|
export default card
|