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

52 lines
832 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 "../SCB"
const card: Card = {
set: Set,
name: {
'zh-tw': "嘎啦嘎啦"
},
illustrator: "Narumi Sato",
category: "Pokemon",
hp: 110,
types: ["Fighting"],
description: {
'zh-tw': "會節奏性地敲響骨頭,藉此與夥伴進行聯絡。節奏有著將近50種不同變化。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "戰鬥盔甲"
},
effect: {
'zh-tw': "這隻寶可夢受到招式的傷害「-30」點。"
}
}, {
name: {
'zh-tw': "骨頭回力鏢"
},
effect: {
'zh-tw': "擲2次硬幣造成正面出現的次數×90點傷害。"
},
damage: "90×",
cost: ["Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card