mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
52 lines
907 B
TypeScript
52 lines
907 B
TypeScript
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 |