mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
95 lines
1.5 KiB
TypeScript
95 lines
1.5 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: "dpp-DP20",
|
|
localId: "DP20",
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Magmortar",
|
|
},
|
|
|
|
hp: 100,
|
|
|
|
type: [
|
|
Type.FIRE,
|
|
],
|
|
|
|
dexId: 467,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/dp/dpp/DP20/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/dp/dpp/DP20/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Magmar",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE1,
|
|
],
|
|
|
|
illustrator: "Hiroaki Ito",
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.FIRE,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Smoke Bomb",
|
|
},
|
|
text: {
|
|
en: "If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing.",
|
|
},
|
|
damage: 30
|
|
},{
|
|
cost: [
|
|
Type.FIRE,
|
|
Type.FIRE,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Flame Drum",
|
|
},
|
|
text: {
|
|
en: "If Magby isn't anywhere under Magmortar, discard 2 Energy cards from your hand. (If you can't discard 2 Energy cards from your hand, this attack does nothing.)",
|
|
},
|
|
damage: 80
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.WATER,
|
|
value: "+30"
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.COMMON,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "DP Black Star Promos",
|
|
code: "dpp"
|
|
}
|
|
}
|
|
|
|
export default card
|