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:
60
data-asia/SV/SV6/057.ts
Normal file
60
data-asia/SV/SV6/057.ts
Normal 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
|
Reference in New Issue
Block a user