1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

68 lines
2.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 "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "自爆磁怪",
th: "จิบะคอยล์",
ja: "ジバコイル"
},
illustrator: "zig",
category: "Pokemon",
hp: 150,
types: ["Metal"],
description: {
'zh-tw': "據說牠頭上的天線會接收來自宇宙的電波, 讓牠被未知的對象控制。",
th: "ว่ากันว่ามันรับคลื่นสัญญาณที่ส่งมาจากอวกาศผ่านเสาอากาศบนหัว และถูกอะไรบางอย่างควบคุมอยู่",
ja: "頭の アンテナで 宇宙からの 電波を 受信して 何者かに コントロールされていると いわれる。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "終極磁鐵",
th: "กิก้าแมกเน็ท",
ja: "ギガマグネット"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。查看自己的牌庫上方6張卡從其中選擇任意數量的【鋼】能量卡以任意方式附於自己的寶可夢身上。將剩餘卡放回牌庫並重洗。",
th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา ดูการ์ด 6 ใบจากด้านบนของสำรับการ์ดฝ่ายเรา เลือกการ์ดพลังงาน[โลหะ]จากในนั้นตามจำนวนที่ชอบแล้วติดที่โปเกมอนฝ่ายเราตามชอบ การ์ดที่เหลือใส่กลับไปในสำรับการ์ดแล้วสับ",
ja: "自分の番に1回使える。自分の山札を上から6枚見て、その中からエネルギーを好きなだけ選び、自分のポケモンに好きなようにつける。残りのカードは山札にもどして切る。"
}
}],
attacks: [{
name: {
'zh-tw': "强力光束",
th: "พาวเวอร์บีม",
ja: "パワービーム"
},
damage: 120,
cost: ["Metal", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "30"
}],
retreat: 2,
regulationMark: "F",
dexId: [462]
}
export default card