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

61 lines
1.6 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 "../S5I"
const card: Card = {
set: Set,
name: {
'zh-tw': "電擊魔獸",
th: "เอเลคิเบิล"
},
illustrator: "Megumi Higuchi",
category: "Pokemon",
hp: 140,
types: ["Lightning"],
description: {
'zh-tw': "只要1隻電擊魔獸就能提供整座大都市所有建築物一整年所需的電力。",
th: "เอเลคิเบิล 1 ตัวสามารถจ่ายไฟฟ้าสำหรับทุกตึกในเมืองใหญ่ได้พอถึง 1 ปีทีเดียว"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "回轉攻擊",
th: "โรลลิ่งแอทแทค"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則增加30點傷害。",
th: "ทอยเหรียญ 1 ครั้ง ถ้าออกหัว การโจมตีนี้จะเพิ่มแดเมจอีก 30"
},
damage: "60+",
cost: ["Colorless", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "閃電上投",
th: "ขว้างฟ้าแลบ"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用「閃電上投」。",
th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ [ขว้างฟ้าแลบ] ไม่ได้"
},
damage: 180,
cost: ["Lightning", "Lightning", "Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "E"
}
export default card