1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 20:02:15 +00:00

55 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 "../SV6"
const card: Card = {
set: Set,
name: {
ja: "エモンガ",
'zh-tw': "電飛鼠",
th: "เอมอนกา"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Shimaris Yukichi",
dexId: [587],
hp: 60,
types: ["Lightning"],
description: {
ja: "電気を ほとばしらせながら 空を 舞うように 飛ぶ。 可愛いが やっかいなのだ。",
'zh-tw': "會一邊放電一邊像是 在空中跳舞般地飛行。 雖然可愛,但很難纏。",
th: "บินราวกับร่ายรำอยู่บนท้องฟ้าพลางปล่อยไฟฟ้าพุ่งทะลักออกมาด้วย ถึงแม้ว่าจะน่ารักแต่ก็สร้างปัญหาไม่น้อย"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "スカイウェーブ",
'zh-tw': "天空波",
th: "สกายเวฟ"
},
damage: 10,
effect: {
ja: "おたがいのベンチポケモン全員にも、それぞれ10ダメージ。ベンチは弱点・抵抗力を計算しない。",
'zh-tw': "雙方的所有備戰寶可夢也各受到10點傷害。 [在備戰區不計算弱點・抵抗力。]",
th: "โปเกมอนบนเบนช์ของทั้งสองฝ่ายทุกตัว ก็จะได้รับแดเมจตัวละ 10 ด้วย {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 0,
regulationMark: "H"
}
export default card