1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 19:09:54 +00:00

77 lines
1.2 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 '../Unified Minds'
const card: Card = {
name: {
en: "Magmortar",
fr: "Maganon",
},
illustrator: "KEIICHIRO ITO",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
467,
],
hp: 130,
types: [
"Fire",
],
evolveFrom: {
en: "Magmar",
fr: "Magmar",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Smoke Bomb",
fr: "Bombe Fumante",
},
effect: {
en: "If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack doesn't happen.",
fr: "Si le Pokémon Défenseur essaie dattaquer pendant le prochain tour de votre adversaire, ce dernier lance une pièce. Si cest pile, lattaque nest pas lancée.",
},
damage: 50,
},
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Flamethrower",
fr: "Lance-Flammes",
},
effect: {
en: "Discard an Energy from this Pokémon.",
fr: "Défaussez une Énergie de ce Pokémon.",
},
damage: 120,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 3,
}
export default card