mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
73 lines
912 B
TypeScript
73 lines
912 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Secret Wonders'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Magmar",
|
|
fr: "Magmar",
|
|
de: "Magmar"
|
|
},
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
126,
|
|
],
|
|
hp: 70,
|
|
types: [
|
|
"Fire",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Fire Punch",
|
|
fr: "Poing de feu",
|
|
de: "Feuerschlag"
|
|
},
|
|
|
|
damage: 10,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Fire",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Smog",
|
|
fr: "Purédpois",
|
|
de: "Smog"
|
|
},
|
|
effect: {
|
|
en: "The Defending Pokémon is now Poisoned.",
|
|
fr: "Le Pokémon Défenseur est maintenant Empoisonné.",
|
|
de: "Das Verteidigende Pokémon ist jetzt vergiftet."
|
|
},
|
|
damage: 20,
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Water",
|
|
value: "+20"
|
|
},
|
|
],
|
|
|
|
retreat: 2,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|