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

60 lines
1.3 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 "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "ヒトツキ",
'zh-tw': "獨劍鞘",
th: "ฮิโตทซึกิ"
},
illustrator: "Nagomi Nijo",
rarity: "Common",
category: "Pokemon",
dexId: [679],
hp: 60,
types: ["Metal"],
description: {
ja: "剣の 鍔の 青い 目玉が ヒトツキの 本体。 古びた 布で 人の 生気を 吸い取る。",
'zh-tw': "獨劍鞘護手上的藍色眼珠是牠的本體。會用陳舊的布吸取人類的精氣。",
th: "ตาสีฟ้าบนกระบังดาบคือตัวจริงของฮิโตทซึกิ ดูดเอาพลังชีวิตของคนไปด้วยผ้าเก่า ๆ"
},
stage: "Basic",
attacks: [{
cost: ["Metal"],
name: {
ja: "とつげき",
'zh-tw': "突擊",
th: "ประจัญบาน"
},
damage: 30,
effect: {
ja: "このポケモンにも10ダメージ。",
'zh-tw': "這隻寶可夢也受到10點傷害。",
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 10 ด้วย"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card