1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon dc4d1bd6cb
Fix HeartGold SoulSilver datas (#73)
* Update

Signed-off-by: Avior <github@avior.me>

* Update datas

Signed-off-by: Avior <github@avior.me>

* Finished fix

Signed-off-by: Avior <github@avior.me>

* Updated some more

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Some more updates

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-09-29 21:43:33 +00:00

88 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Triumphant'
const card: Card = {
name: {
en: "Magmortar",
fr: "Maganon",
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
467,
],
hp: 100,
types: [
"Fire",
],
evolveFrom: {
en: "Magmar",
fr: "Magmar",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Top Burner",
fr: "Super pyro",
},
effect: {
en: "For each Fire Energy attached to Magmortar, discard the top card from your opponents deck. Then, flip a coin. If tails, discard all Fire Energy attached to Magmortar.",
fr: "Pour chaque carte Énergie Fire attachée à Maganon, défaussez la carte du dessus du deck de votre adversaire. Lancez ensuite une pièce. Si cest pile, défaussez toutes les cartes Énergie Fire attachées à Maganon.",
},
},
{
cost: [
"Fire",
"Fire",
"Colorless",
],
name: {
en: "Burst Punch",
fr: "Poing denfer",
},
effect: {
en: "The Defending Pokémon is now Burned.",
fr: "Le Pokémon Défenseur est maintenant Brûlé.",
},
damage: 60,
},
],
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: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card