mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
44 lines
710 B
TypeScript
44 lines
710 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S7R"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "穿山王"
|
||
},
|
||
|
||
illustrator: "Kyoko Umemoto",
|
||
category: "Pokemon",
|
||
hp: 120,
|
||
types: ["Fighting"],
|
||
|
||
description: {
|
||
'zh-tw': "擅長用厚實的爪子來爬樹。也有許多穿山王會直接把樹上當成睡覺的地方。"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "挖出攻擊"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "從自己的棄牌區任意選擇1張卡,在給對手看過後加入手牌。"
|
||
},
|
||
|
||
damage: 60,
|
||
cost: ["Fighting", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Grass",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |