1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

65 lines
1.5 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "サンド",
'zh-tw': "穿山鼠",
th: "แซนด์"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Tetsu Kayama",
dexId: [27],
hp: 60,
types: ["Fighting"],
description: {
ja: "どんなに 高い ところから 落ちても 体を 丸めれば バウンドできて 助かるのだ。",
'zh-tw': "不管從多高的地方掉下, 只要把身體蜷成一團 就可以藉著反彈而得救。",
th: "ไม่ว่าจะตกลงมาจากที่ที่สูงขนาดไหนก็ตาม หากมันม้วนตัวกลมแล้วกระดอนไปมาก็จะปลอดภัย"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ころがる",
'zh-tw': "滾動",
th: "กลิ้ง"
},
damage: 10
}, {
cost: ["Fighting", "Colorless"],
name: {
ja: "ダブルひっかき",
'zh-tw': "雙重抓",
th: "ข่วนทวีคูณ"
},
damage: "20×",
effect: {
ja: "コインを2回投げ、オモテの数×20ダメージ。",
'zh-tw': "擲2次硬幣造成正面出現的次數×20點傷害。",
th: "ทอยเหรียญ 2 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x20"
}
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card