1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

50
data-asia/S/S9a/037.ts Normal file
View File

@ -0,0 +1,50 @@
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