1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59: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

53
data-asia/S/S9a/041.ts Normal file
View File

@ -0,0 +1,53 @@
import { Card } from "../../../interfaces"
import Set from "../S9a"
const card: Card = {
set: Set,
name: {
'zh-tw': "沙河馬",
ja: "ヒポポタス"
},
illustrator: "nagimiso",
category: "Pokemon",
hp: 100,
types: ["Fighting"],
description: {
'zh-tw': "體型碩大而笨重,但由於會掘開土壤藏身其中,因此難以發現其蹤跡。 情緒激動時會從鼻中噴出沙子。",
ja: "体 大きく 鈍重なれど 土壌を掘りて 潜むゆえに 姿 捉えるは 困難なり。 気 昂りしとき 鼻より 砂を吹く。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "擲泥",
ja: "どろかけ"
},
damage: 30,
cost: ["Fighting", "Colorless"]
}, {
name: {
'zh-tw': "滾動衝撞",
ja: "ころがりタックル"
},
damage: 90,
cost: ["Fighting", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 4,
regulationMark: "F",
rarity: "Common",
dexId: [449]
}
export default card