1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00

55 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 "../SCC"
const card: Card = {
set: Set,
name: {
'zh-tw': "轟擂金剛猩"
},
illustrator: "Hitoshi Ariga",
category: "Pokemon",
hp: 180,
types: ["Grass"],
description: {
'zh-tw': "打鼓技巧最高超的那一隻會成為首領。性情溫和,重視族群的和諧相處。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "木之吸取"
},
effect: {
'zh-tw': "將這隻寶可夢恢復「30」HP。"
},
damage: 60,
cost: ["Grass", "Colorless"]
}, {
name: {
'zh-tw': "怒濤連打"
},
effect: {
'zh-tw': "將自己的場上寶可夢身上附加的任意數量的能量丟棄增加其張數×30點傷害。"
},
damage: "120+",
cost: ["Grass", "Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "E"
}
export default card