mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
73 lines
1.1 KiB
TypeScript
73 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Great Encounters'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Magcargo",
|
|
fr: "Volcaropod",
|
|
},
|
|
illustrator: "Mitsuhiro Arita",
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
219,
|
|
],
|
|
hp: 90,
|
|
types: [
|
|
"Fire",
|
|
],
|
|
evolveFrom: {
|
|
en: "Slugma",
|
|
fr: "Limagma",
|
|
},
|
|
stage: "Stage1",
|
|
|
|
abilities: [
|
|
{
|
|
type: "Poke-BODY",
|
|
name: {
|
|
en: "Magma Armor",
|
|
fr: "Magmascudo",
|
|
},
|
|
effect: {
|
|
en: "Magcargo can't be Asleep or Paralyzed.",
|
|
fr: "Volcaropod ne peut pas être Endormi ou Paralysé.",
|
|
},
|
|
},
|
|
],
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Fire",
|
|
"Fire",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Lava Plume",
|
|
fr: "Ébullilave",
|
|
},
|
|
effect: {
|
|
en: "You may discard the top card of your deck. If you do, the Defending Pokémon is now Burned.",
|
|
fr: "Vous pouvez défausser la carte du dessus de votre deck. Le Pokémon Défenseur est alors Brûlé.",
|
|
},
|
|
damage: 60,
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Water",
|
|
value: "+20"
|
|
},
|
|
],
|
|
|
|
retreat: 3,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|