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

53 lines
1.2 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",
th: "แขนเหล็กex"
},
illustrator: "Toshinao Aoki",
category: "Pokemon",
hp: 230,
types: ["Lightning"],
stage: "Basic",
suffix: "EX",
attacks: [{
cost: ["Lightning", "Lightning", "Colorless"],
name: {
ja: "アームプレス",
th: "อาร์มเพรส"
},
damage: 160
}, {
cost: ["Lightning", "Colorless", "Colorless", "Colorless"],
name: {
ja: "ごっつあんプリファイ",
th: "เครื่องขยายขอบใจหลาย"
},
damage: 120,
effect: {
ja: "このワザのダメージで、相手のポケモンがきぜつしたなら、サイドを1枚多くとる。",
th: "ถ้าโปเกมอนฝ่ายตรงข้าม[หมดสภาพ] ด้วยแดเมจของท่าต่อสู้นี้แล้ว หยิบการ์ดรางวัลเพิ่ม 1 ใบ"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 4,
regulationMark: "G"
}
export default card