1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

56 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV5M"
const card: Card = {
set: Set,
name: {
'zh-tw': "鐵磐岩ex",
th: "ศิลาเหล็กex"
},
illustrator: "nagimiso",
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