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

55 lines
1.4 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 "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "エレズン",
'zh-tw': "毒電嬰",
th: "เอเลซัน"
},
illustrator: "Yuka Morii",
rarity: "Common",
category: "Pokemon",
dexId: [848],
hp: 70,
types: ["Lightning"],
description: {
ja: "わがままで とても 甘えん坊。 体内の 2つの 袋に 毒と 電気を それぞれ 溜める。",
'zh-tw': "任性且非常愛撒嬌。體內的兩個囊袋分別儲存著毒和電。",
th: "เอาแต่ใจและขี้อ้อนมาก ภายในร่างกายมีถุง 2 ถุง เป็นถุงสำหรับสะสมพิษและไฟฟ้าอย่างละถุง"
},
stage: "Basic",
attacks: [{
cost: ["Lightning", "Lightning"],
name: {
ja: "きまぐれタックル",
'zh-tw': "胡思亂撞",
th: "โจมตีแปรปรวน"
},
damage: 60,
effect: {
ja: "コインを1回投げウラなら、このワザは失敗。",
'zh-tw': "擲1次硬幣若為反面則這個招式失敗。",
th: "ทอยเหรียญ 1 ครั้งถ้าออกก้อย ท่าต่อสู้นี้จะล้มเหลว"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card