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

61 lines
1.9 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 "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "雷吉艾勒奇VMAX",
th: "เรจิเอเลคิVMAX",
ja: "レジエレキVMAX"
},
illustrator: "N-DESIGN Inc.",
category: "Pokemon",
hp: 310,
types: ["Lightning"],
stage: "VMAX",
abilities: [{
type: "Ability",
name: {
'zh-tw': "電晶體",
th: "ทรานซิสเตอร์",
ja: "トランジスタ"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上,自己的【雷】屬性的【基礎】寶可夢使用的招式,對對手的戰鬥寶可夢造成的傷害「+30」點。",
th: "ตราบใดที่โปเกมอนนี้ยังอยู่ แดเมจของท่าต่อสู้ที่โปเกมอน[พื้นฐาน]ประเภท[สายฟ้า]ฝ่ายเราใช้ทำกับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม จะถูก [+30]",
ja: "このポケモンがいるかぎり、自分のタイプのたねポケモンが使うワザの、相手のバトルポケモンへのダメージは「+30」される。"
}
}],
attacks: [{
name: {
'zh-tw': "極巨雷電",
th: "ไดทันเดอร์ไลท์นิง",
ja: "ダイライデン"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。",
th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้",
ja: "次の自分の番、このポケモンはワザが使えない。"
},
damage: 220,
cost: ["Lightning", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 0,
regulationMark: "F"
}
export default card