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

44 lines
846 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: 90,
types: ["Fighting"],
description: {
'zh-tw': "三胞胎的地鼠,擁有能夠挖掘到地下100公里深的潛力。沒人知道牠在地下的部分究竟長成什麼樣子。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "三重頭擊"
},
effect: {
'zh-tw': "擲3次硬幣造成正面出現的次數×60點傷害。若全部為正面則在下個對手的回合這隻寶可夢不會受到招式的傷害與效果的影響。"
},
damage: "60×",
cost: ["Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card