1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +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

75
data-asia/SV/SV3a/072.ts Normal file
View File

@ -0,0 +1,75 @@
import { Card } from "../../../interfaces"
import Set from "../SV3a"
const card: Card = {
set: Set,
name: {
ja: "ナットレイ",
'zh-tw': "堅果啞鈴",
th: "นัทเทรย์"
},
illustrator: "Kurata So",
category: "Pokemon",
dexId: [598],
hp: 140,
types: ["Metal"],
description: {
ja: "鋼より 硬い 棘を もつ。 触手の 棘を 突き刺し 岩壁を 這って 移動する。",
'zh-tw': "擁有比鋼鐵還堅硬的尖刺。會利用觸手上的尖刺 攀附在岩壁上移動。",
th: "มีหนามที่แข็งกว่าเหล็ก คลานข้ามกำแพงหินด้วยการจิ้มหนามที่เป็นหนวดรับความรู้สึกลงไปในหิน"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
ja: "かたいからだ",
'zh-tw': "堅硬身軀",
th: "ร่างแข็งแกร่ง"
},
effect: {
ja: "このポケモンが受けるワザのダメージは「-30」される。",
'zh-tw': "這隻寶可夢受到招式的傷害「-30」點。",
th: "แดเมจของท่าต่อสู้ที่โปเกมอนนี้จะได้รับจะถูก [-30]"
}
}],
attacks: [{
cost: ["Metal", "Colorless"],
name: {
ja: "スピニングニードル",
'zh-tw': "旋轉尖刺",
th: "สปินนิงนีดเดิ้ล"
},
damage: 50,
effect: {
ja: "次の自分の番、このポケモンの「スピニングニードル」のダメージは「+100」される。",
'zh-tw': "在下個自己的回合,這隻寶可夢「旋轉尖刺」的傷害「+100」點。",
th: "เทิร์นถัดไปของฝ่ายเรา แดเมจจาก [สปินนิงนีดเดิ้ล] ของโปเกมอนนี้จะถูก [+100]"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 3,
regulationMark: "G"
}
export default card