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

61 lines
1.7 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 "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "毒電嬰",
th: "เอเลซัน",
ja: "エレズン"
},
illustrator: "kodama",
category: "Pokemon",
hp: 60,
types: ["Lightning"],
description: {
'zh-tw': "透過讓自身的毒素產生化學反應來發電。電力 雖然弱,卻能造成麻痺。",
th: "เอาสารพิษมาเปลี่ยนแปลงทางเคมีเพื่อผลิตไฟฟ้า พลังงานไฟฟ้านั้นอ่อนแต่ก็ทำให้รู้สึกชาได้",
ja: "毒素を 化学変化 させて 電気を 出す。 電力は 弱いが ビリビリと 痺れる。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "叫聲",
th: "คำราม",
ja: "なきごえ"
},
effect: {
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢使用招式的傷害「-30」點。",
th: "เทิร์นถัดไปของฝ่ายตรงข้าม แดเมจของท่าต่อสู้ที่โปเกมอนที่ได้รับท่าต่อสู้นี้ใช้ จะถูก [-30]",
ja: "次の相手の番、このワザを受けたポケモンが使うワザのダメージは「-30」される。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "小伏特",
th: "โวลต์ต่ำ",
ja: "プチボルト"
},
damage: 10,
cost: ["Lightning"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "E",
dexId: [848]
}
export default card