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

69 lines
1.7 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 "../SV1V"
const card: Card = {
set: Set,
name: {
ja: "ジバコイルex",
'zh-tw': "自爆磁怪ex",
th: "จิบะคอยล์ex",
id: "Magnezone ex"
},
illustrator: "hncl",
rarity: "Double rare",
category: "Pokemon",
hp: 330,
types: ["Lightning"],
stage: "Stage2",
suffix: "EX",
attacks: [{
cost: ["Lightning"],
name: {
ja: "エナジークラッシュ",
'zh-tw': "能量粉碎",
th: "เอนเนอร์จี้ครัช",
id: "Energy Crush"
},
damage: "50×",
effect: {
ja: "相手のポケモン全員についているエネルギーの数×50ダメージ。",
'zh-tw': "造成對手的所有寶可夢身上附加的能量的數量×50點傷害。",
th: "แดเมจจะเท่ากับจำนวนพลังงานที่ติดอยู่กับโปเกมอนฝ่ายตรงข้ามทุกตัว x50",
id: "Serangan ini memberikan kerusakan sejumlah 50 untuk tiap Energi yang dikenakan pada semua Pokémon lawan."
}
}, {
cost: ["Lightning", "Lightning"],
name: {
ja: "パルスランチャー",
'zh-tw': "脈衝發射器",
th: "พัลส์ลอนเชอร์",
id: "Pulse Launcher"
},
damage: 220,
effect: {
ja: "このポケモンにも30ダメージ。",
'zh-tw': "這隻寶可夢也受到30點傷害。",
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 30 ด้วย",
id: "Pokémon ini juga menerima kerusakan sejumlah 30."
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card