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

55 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 "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "ノズパス",
'zh-tw': "朝北鼻",
th: "โนซพาส"
},
illustrator: "AKIRA EGAWA",
rarity: "Common",
category: "Pokemon",
dexId: [299],
hp: 80,
types: ["Fighting"],
description: {
ja: "ピンチになると 磁力を 強め まわりにある 鉄の 塊を 引き寄せて 身を守ることも ある。",
'zh-tw': "陷入危機時,有時會 增強磁力將附近的鐵塊 吸引過來保護身體。",
th: "เมื่ออยู่ในภาวะคับขัน บางครั้งมันก็จะปกป้องตัวเองโดยการทำให้พลังงานแม่เหล็กรุนแรงขึ้น เพื่อดึงดูดก้อนเหล็กที่อยู่โดยรอบเข้าหาตัวเอง"
},
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "パワーラッシュ",
'zh-tw': "力量猛攻",
th: "พาวเวอร์รัช"
},
damage: 60,
effect: {
ja: "コインを1回投げウラなら、次の自分の番、このポケモンはワザが使えない。",
'zh-tw': "擲1次硬幣若為反面則在下個自己的回合這隻寶可夢無法使用招式。",
th: "ทอยเหรียญ 1 ครั้งถ้าออกก้อย เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้"
}
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card