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

52 lines
862 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 "../S4a"
const card: Card = {
set: Set,
name: {
'zh-tw': "轟擂金剛猩"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 170,
types: ["Grass"],
description: {
'zh-tw': "能夠透過打鼓來控制特別的樹樁中的力量,操縱樹根進行戰鬥。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "怒氣律動"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。從自己的牌庫選擇最多2張【草】能量卡附於自己的1隻寶可夢身上。並且重洗牌庫。"
}
}],
attacks: [{
name: {
'zh-tw': "頭突"
},
damage: 140,
cost: ["Grass", "Grass", "Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card