mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
80 lines
1.3 KiB
TypeScript
80 lines
1.3 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Fossil'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Magmar",
|
||
fr: "Magmar"
|
||
},
|
||
|
||
illustrator: "Mitsuhiro Arita",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
126,
|
||
],
|
||
|
||
hp: 70,
|
||
|
||
types: [
|
||
"Fire",
|
||
],
|
||
|
||
evolveFrom: {
|
||
en: "Magby",
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fire",
|
||
],
|
||
name: {
|
||
en: "Smokescreen",
|
||
fr: "Brouillard"
|
||
},
|
||
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 does nothing.",
|
||
fr: "Si le Pokémon Défenseur essaie d'attaquer pendant le prochain tour de votre adversaire, votre adversaire doit lancer une pièce. Si c'est pile, cette attaque n'a aucun effet."
|
||
},
|
||
damage: 10,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fire",
|
||
"Fire",
|
||
],
|
||
|
||
name: {
|
||
en: "Smog",
|
||
fr: "Purédpois"
|
||
},
|
||
|
||
effect: {
|
||
en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned.",
|
||
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Empoisonné."
|
||
},
|
||
|
||
damage: 20
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Water",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
description: {
|
||
fr: "On le trouve dans le coeur des volcans où il est très difficile à repérer. On compte très peu de captures de ce Pokémon."
|
||
}
|
||
}
|
||
|
||
export default card
|