1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

56 lines
821 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 "../SV6a"
const card: Card = {
set: Set,
name: {
'zh-tw': "噗隆隆"
},
illustrator: "HAGIYA Kaoru",
category: "Pokemon",
hp: 70,
types: ["Metal"],
description: {
'zh-tw': "鋼鐵身軀才是本體。 會貼在岩石上將其成分 轉換成活動用的能量。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "硬化"
},
effect: {
'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害「-30」點。"
},
cost: ["Metal"]
}, {
name: {
'zh-tw': "魯莽頭擊"
},
damage: 20,
cost: ["Metal", "Metal"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 1,
regulationMark: "H",
rarity: "Common"
}
export default card