1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-26 01:49:54 +00:00

72 lines
933 B
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 '../Ultra Prism'
const card: Card = {
name: {
en: "Magmar",
fr: "Magmar",
},
illustrator: "Yumi",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
126,
],
hp: 80,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Controlled Burn",
fr: "Feu Contrôlé",
},
effect: {
en: "Discard the top card of your opponent's deck.",
fr: "Défaussez la carte du dessus du deck de votre adversaire.",
},
},
{
cost: [
"Fire",
"Fire",
"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: 80,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 2,
}
export default card