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

47 lines
675 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 "../S8"
const card: Card = {
set: Set,
name: {
'zh-tw': "小拳石"
},
illustrator: "OKACHEKE",
category: "Pokemon",
hp: 80,
types: ["Fighting"],
description: {
'zh-tw': "會用雙手攀登險峻的山崖。人們似乎是在目睹牠那姿態之後才開始了抱石攀岩運動。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "滾動"
},
damage: 10,
cost: ["Fighting"]
}, {
name: {
'zh-tw': "打擊"
},
damage: 20,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "E"
}
export default card