1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

97 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Unleashed'
const card: Card = {
name: {
en: "Magmortar",
fr: "Maganon",
de: "Magbrant"
},
illustrator: "Hajime Kusajima",
rarity: "Rare Holo",
category: "Pokemon",
set: Set,
dexId: [
467,
],
hp: 110,
types: [
"Fire",
],
evolveFrom: {
en: "Magmar",
fr: "Magmar",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Hard Crush",
fr: "Écrasdur",
de: "Heftiger Zermalmer"
},
effect: {
en: "Discard the top 3 cards from your deck. This attack does 50 damage times the number of Energy cards you discarded.",
fr: "Défaussez les 3 cartes du dessus de votre deck. Cette attaque inflige 50 dégâts multipliés par le nombre de cartes Énergie que vous avez défaussées.",
de: "Lege die obersten 3 Karten deines Decks auf deinen Ablagestapel. Dieser Angriff fügt 50 Schadenspunkte mal der Anzahl abgelegter Energiekarten zu."
},
damage: "50x",
},
{
cost: [
"Fire",
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Mantle Bazooka",
fr: "Bazoocape",
de: "Verhüllte Panzerfaust"
},
effect: {
en: "Discard 2 Fire Energy attached to Magmortar.",
fr: "Défaussez 2 cartes Énergie Fire attachées à Maganon.",
de: "Lege 2 an Magbrant angelgte -Energien auf deinen Ablagestapel."
},
damage: 100,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 2,
description: {
en: "It blasts fireballs of over 3,600 degrees Fahrenheit out of its arms. Its breath also sears and sizzles."
},
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card