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

60
data-asia/SV/SV6/057.ts Normal file
View File

@ -0,0 +1,60 @@
import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "サンド",
'zh-tw': "穿山鼠"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Tetsu Kayama",
dexId: [27],
hp: 60,
types: ["Fighting"],
description: {
ja: "どんなに 高い ところから 落ちても 体を 丸めれば バウンドできて 助かるのだ。",
'zh-tw': "不管從多高的地方掉下, 只要把身體蜷成一團 就可以藉著反彈而得救。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ころがる",
'zh-tw': "滾動"
},
damage: 10
}, {
cost: ["Fighting", "Colorless"],
name: {
ja: "ダブルひっかき",
'zh-tw': "雙重抓"
},
damage: "20×",
effect: {
ja: "コインを2回投げ、オモテの数×20ダメージ。",
'zh-tw': "擲2次硬幣造成正面出現的次數×20點傷害。"
}
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card