1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +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

92 lines
1.4 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",
},
illustrator: "Hajime Kusajima",
rarity: "Rare",
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",
},
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.",
},
damage: "50×",
},
{
cost: [
"Fire",
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Mantle Bazooka",
fr: "Bazoocape",
},
effect: {
en: "Discard 2 Fire Energy attached to Magmortar.",
fr: "Défaussez 2 cartes Énergie Fire attachées à Maganon.",
},
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