mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-10 07:51:58 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
69
data-asia/SV/SV1V/028.ts
Normal file
69
data-asia/SV/SV1V/028.ts
Normal file
@@ -0,0 +1,69 @@
|
||||
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
|
Reference in New Issue
Block a user