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

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