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

58 lines
1.0 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: "HYOGONOSUKE",
category: "Pokemon",
hp: 120,
types: ["Fighting"],
description: {
'zh-tw': "進化後變得只用後腳就能站立。如果被牠的角刺中, 就連岩石也會被開出洞來。",
ja: "進化して 後ろ足だけで 立つようになった。 ツノで 突くと 岩石にも 穴を 開けてしまう。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "角鑽",
ja: "つのドリル"
},
damage: 30,
cost: ["Fighting"]
}, {
name: {
'zh-tw': "猛撞",
ja: "とっしん"
},
effect: {
'zh-tw': "這隻寶可夢也受到30點傷害。",
ja: "このポケモンにも30ダメージ。"
},
damage: 120,
cost: ["Fighting", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "F",
rarity: "Common",
dexId: [112]
}
export default card