1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-16 21:49:53 +00:00
Khaleeq Ahmad a597759d9d
fix: Pocket card data fixes (#659)
Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
2025-02-19 21:52:42 +01:00

49 lines
752 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Magmortar"
},
illustrator: "KEIICHIRO ITO",
rarity: "Three Diamond",
category: "Pokemon",
hp: 130,
types: ["Fire"],
evolveFrom: {
en: "Magmar"
},
description: {
en: "When Magmortar inhales deeply, the fire burning in its belly intensifies, rising in temperature to over 3,600 degrees Fahrenheit."
},
stage: "Stage1",
attacks: [{
name: {
en: "Bursting Inferno"
},
damage: 100,
cost: ["Fire", "Fire", "Fire", "Fire"],
effect: {
en: "Your opponent's Active Pokémon is now Burned."
}
}],
weaknesses: [{
type: "Water",
value: "+20"
}],
retreat: 3
}
export default card