1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

58 lines
1.4 KiB
TypeScript
Raw Permalink 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 "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "テツカイナex",
'zh-tw': "鐵臂膀ex",
th: "แขนเหล็กex"
},
illustrator: "PLANETA Mochizuki",
rarity: "Double rare",
category: "Pokemon",
hp: 230,
types: ["Lightning"],
stage: "Basic",
suffix: "EX",
attacks: [{
cost: ["Lightning", "Lightning", "Colorless"],
name: {
ja: "アームプレス",
'zh-tw': "臂壓制",
th: "อาร์มเพรส"
},
damage: 160
}, {
cost: ["Lightning", "Colorless", "Colorless", "Colorless"],
name: {
ja: "ごっつあんプリファイ",
'zh-tw': "感激放大",
th: "เครื่องขยายขอบใจหลาย"
},
damage: 120,
effect: {
ja: "このワザのダメージで、相手のポケモンがきぜつしたなら、サイドを1枚多くとる。",
'zh-tw': "若對手的寶可夢因這個招式的傷害而【昏厥】了則多獲得1張獎賞卡。",
th: "ถ้าโปเกมอนฝ่ายตรงข้าม[หมดสภาพ] ด้วยแดเมจของท่าต่อสู้นี้แล้ว หยิบการ์ดรางวัลเพิ่ม 1 ใบ"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 4,
regulationMark: "G"
}
export default card