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

60
data-asia/SV/SV5M/035.ts Normal file
View File

@ -0,0 +1,60 @@
import { Card } from "../../../interfaces"
import Set from "../SV5M"
const card: Card = {
set: Set,
name: {
'zh-tw': "鐵武者",
th: "นักรบเหล็ก"
},
illustrator: "chibi",
category: "Pokemon",
hp: 130,
types: ["Psychic"],
description: {
'zh-tw': "牠有可能就是在某本探險記裡,以鐵武者這個 名字被記載下來的物體。",
th: "มีโอกาสที่จะเป็นวัตถุที่เรียกว่านักรบเหล็กซึ่งระบุไว้ในบันทึกการสำรวจเล่มหนึ่ง"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "演算",
th: "คำนวณสูตร"
},
effect: {
'zh-tw': "查看自己的牌庫上方4張卡以任意順序排列放回牌庫上方。",
th: "ดูการ์ด 4 ใบจากด้านบนของสำรับการ์ดฝ่ายเรา เรียงตามลำดับที่ชอบ ใส่กลับไปด้านบนของสำรับการ์ด"
},
cost: ["Psychic"]
}, {
name: {
'zh-tw': "莊嚴之劍",
th: "ดาบทรงอำนาจ"
},
effect: {
'zh-tw': "在這個回合若從手牌使出了「未來」支援者卡則增加100點傷害。",
th: "เทิร์นนี้ ถ้านำการ์ดซัพพอร์ต [อนาคต] จากบนมือออกมาใช้แล้ว การโจมตีนี้จะเพิ่มแดเมจอีก 100"
},
damage: "100+",
cost: ["Psychic", "Psychic", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card