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

56
data-asia/SV/SV5M/041.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SV5M"
const card: Card = {
set: Set,
name: {
'zh-tw': "鐵磐岩ex",
th: "ศิลาเหล็กex"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 240,
types: ["Fighting"],
stage: "Basic",
suffix: "EX",
attacks: [{
name: {
'zh-tw': "還擊斧",
th: "ขวานรีพัลเซอร์"
},
effect: {
'zh-tw': "在下個對手的回合這隻寶可夢受到招式的傷害時在使用招式的寶可夢身上放置8個傷害指示物。",
th: "เทิร์นถัดไปของฝ่ายตรงข้าม เมื่อโปเกมอนนี้ได้รับแดเมจของท่าต่อสู้ วางตัวนับแดเมจ 8 ตัวบนโปเกมอนที่ใช้ท่าต่อสู้"
},
damage: 60,
cost: ["Fighting", "Colorless"]
}, {
name: {
'zh-tw': "力量踩踏",
th: "พาวเวอร์สแตมป์"
},
effect: {
'zh-tw': "選擇2個這隻寶可夢身上附加的能量將其丟棄。",
th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 2 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด"
},
damage: 200,
cost: ["Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card