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

52 lines
854 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 "../SC2D"
const card: Card = {
set: Set,
name: {
'zh-tw': "河馬獸"
},
illustrator: "KEIICHIRO ITO",
category: "Pokemon",
hp: 150,
types: ["Fighting"],
description: {
'zh-tw': "偶爾會有石子卡在身體的孔洞裡。因為石居蟹會幫忙把石子拿出來,所以會用心地保護牠們。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "三重粉碎"
},
effect: {
'zh-tw': "擲3次硬幣造成正面出現的次數×80點傷害。"
},
damage: "80×",
cost: ["Fighting", "Fighting", "Colorless"]
}, {
name: {
'zh-tw': "大地粉碎"
},
damage: 150,
cost: ["Fighting", "Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 4,
regulationMark: "D"
}
export default card