import { Card } from "../../../interfaces" import Set from "../SC2b" const card: Card = { set: Set, name: { 'zh-tw': "巨炭山V" }, illustrator: "5ban Graphics", category: "Pokemon", hp: 220, types: ["Fighting"], stage: "Basic", suffix: "V", attacks: [{ name: { 'zh-tw': "灼燒" }, effect: { 'zh-tw': "將對手的戰鬥寶可夢【灼傷】。" }, damage: 90, cost: ["Fighting", "Fighting", "Colorless"] }, { name: { 'zh-tw': "岩石粉碎" }, damage: 180, cost: ["Fighting", "Fighting", "Fighting", "Colorless"] }], weaknesses: [{ type: "Grass", value: "×2" }], retreat: 4, regulationMark: "D" } export default card