mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
69 lines
1.7 KiB
TypeScript
69 lines
1.7 KiB
TypeScript
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 |