1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

52 lines
907 B
TypeScript
Raw Permalink 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 "../SV5s"
const card: Card = {
set: Set,
name: {
id: "Magcargo"
},
illustrator: "Mitsuhiro Arita",
category: "Pokemon",
hp: 120,
types: ["Fire"],
description: {
id: "Cangkang di punggung Magcargo mudah mengelupas, terkadang api bersuhu tinggi yang mengalir di dalam tubuhnya tersembur dari cangkang tersebut."
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
id: "Daerah Lava"
},
effect: {
id: "Selama Pokémon ini ada di Arena, pada giliran lawan, tiap kali Pokémon Bertarung lawan kembali ke Cadangan, ubah kondisi Pokémon Bertarung yang baru menjadi Luka Bakar."
}
}],
attacks: [{
name: {
id: "Heat Blast"
},
damage: 100,
cost: ["Fire", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 4,
regulationMark: "H"
}
export default card