1
0
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:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

55
data-asia/SV/SV5a/043.ts Normal file
View File

@ -0,0 +1,55 @@
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