1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

54 lines
948 B
TypeScript
Raw 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 "../SV4s"
const card: Card = {
set: Set,
name: {
id: "Camerupt"
},
illustrator: "satoma",
category: "Pokemon",
hp: 130,
types: ["Fire"],
description: {
id: "Camerupt hidup di kawah gunung berapi. Punuk di punggungnya terkenal mengeluarkan erupsi besar setiap 10 tahun sekali."
},
stage: "Stage1",
attacks: [{
name: {
id: "Api Penghangus"
},
effect: {
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Luka Bakar."
},
cost: ["Fire"]
}, {
name: {
id: "Meriam Batu Letusan"
},
effect: {
id: "Pemain dapat memilih 1 Energi {Petarung} yang dikenakan pada Pokémon ini, lalu membuangnya ke Trash. Jika dilakukan, kerusakan yang diberikan bertambah sejumlah 120."
},
damage: "120+",
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card