mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
50 lines
887 B
TypeScript
50 lines
887 B
TypeScript
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 |