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

68
data-asia/SV/SV4M/044.ts Normal file
View File

@ -0,0 +1,68 @@
import { Card } from "../../../interfaces"
import Set from "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "ニダンギル",
'zh-tw': "雙劍鞘",
th: "นิดังกิล"
},
illustrator: "Shigenori Negishi",
rarity: "Common",
category: "Pokemon",
dexId: [680],
hp: 90,
types: ["Metal"],
description: {
ja: "2本の 剣は 攻撃と 防御が 目まぐるしく 入れ替わる 戦法で 獲物を しとめる。",
'zh-tw': "2把劍會用令人眼花繚亂的速度不斷交替攻擊和防禦,藉以制服獵物。",
th: "ดาบทั้งสองเล่มปราบเหยื่อลงได้ด้วยกลยุทธ์ในการต่อสู้แบบเปลี่ยนกันรุกและรับอย่างรวดเร็ว"
},
stage: "Stage1",
attacks: [{
cost: ["Metal"],
name: {
ja: "つるぎのまい",
'zh-tw': "劍舞",
th: "ระบำดาบ"
},
effect: {
ja: "次の自分の番、このポケモンの「スライスブレード」のダメージは「+80」される。",
'zh-tw': "在下個自己的回合,這隻寶可夢「利刃切割」的傷害「+80」點。",
th: "เทิร์นถัดไปของฝ่ายเรา แดเมจจาก [สไลซ์เบลด] ของโปเกมอนนี้จะถูก [+80]"
}
}, {
cost: ["Metal", "Metal"],
name: {
ja: "スライスブレード",
'zh-tw': "利刃切割",
th: "สไลซ์เบลด"
},
damage: 40
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "G"
}
export default card