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

50 lines
887 B
TypeScript
Raw 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: "Scav",
category: "Pokemon",
hp: 100,
types: ["Fighting"],
description: {
'zh-tw': "頭腦很差但力氣很大,只要撞擊就能把 高樓大廈撞得粉粹。",
ja: "頭は 悪いが 力が 強く 高層ビルも 体当たりで コナゴナに 粉砕する。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "猛撞",
ja: "とっしん"
},
effect: {
'zh-tw': "這隻寶可夢也受到20點傷害。",
ja: "このポケモンにも20ダメージ。"
},
damage: 70,
cost: ["Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "F",
rarity: "Common",
dexId: [111]
}
export default card