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

58 lines
1.2 KiB
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 "../S9a"
const card: Card = {
set: Set,
name: {
'zh-tw': "河馬獸",
ja: "カバルドン"
},
illustrator: "Kyoko Umemoto",
category: "Pokemon",
hp: 150,
types: ["Fighting"],
description: {
'zh-tw': "偶爾會有石子卡在身體的孔洞裡。因為石居蟹會幫忙把石子拿出來, 所以會用心地保護牠們。",
ja: "体の 穴には たまに 石が 詰まる。 石を 取ってくれるので イシズマイを 大切に 守る。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "咬住",
ja: "かみつく"
},
damage: 80,
cost: ["Fighting", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "沙之吐息",
ja: "サンドブレス"
},
effect: {
'zh-tw': "選擇2個這隻寶可夢身上附加的能量將其丟棄。",
ja: "このポケモンについているエネルギーを2個選び、トラッシュする。"
},
damage: 180,
cost: ["Fighting", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 4,
regulationMark: "F",
rarity: "Uncommon",
dexId: [450]
}
export default card