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

74 lines
2.4 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 "../SV8a"
const card: Card = {
set: Set,
name: {
ja: "サンダースex",
id: "Jolteon ex",
th: "ธันเดอร์สex",
'zh-tw': "雷伊布ex",
'zh-cn': "雷伊布ex"
},
illustrator: "5ban Graphics",
rarity: "Double rare",
category: "Pokemon",
hp: 260,
types: ["Lightning"],
stage: "Stage1",
suffix: "EX",
attacks: [{
cost: ["Lightning", "Colorless"],
name: {
ja: "フラッシュスピア",
id: "Flash Spear",
th: "แฟลชสเปียร์",
'zh-tw': "閃光尖矛",
'zh-cn': "閃光尖矛"
},
damage: "60+",
effect: {
ja: "のぞむなら、自分のベンチポケモンについている基本エネルギーを2枚までトラッシュし、その枚数×90ダメージ追加。",
id: "Pemain dapat membuang paling banyak 2 lembar Energi Dasar yang dikenakan pada Pokémon Cadangan sendiri ke Trash, kerusakan yang diberikan bertambah sejumlah 90 untuk tiap lembarnya.",
th: "หากต้องการ ทิ้งพลังงานพื้นฐานที่ติดอยู่กับโปเกมอนบนเบนช์ฝ่ายเราได้สูงสุด 2 ใบที่ตำแหน่งทิ้งการ์ด แดเมจจะเพิ่มตามจำนวนการ์ดนั้น x90",
'zh-tw': "若希望將最多2張自己的備戰寶可夢身上附加的基本能量卡丟棄增加其張數×90點傷害。",
'zh-cn': "若希望將最多2張自己的備戰寶可夢身上附加的基本能量卡丟棄增加其張數×90點傷害。"
}
}, {
cost: ["Fire", "Water", "Lightning"],
name: {
ja: "ドラバイト",
id: "Dravite",
th: "ดราไวต์",
'zh-tw': "棕碧璽",
'zh-cn': "棕碧璽"
},
damage: 280,
effect: {
ja: "次の自分の番、このポケモンはワザが使えない。",
id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.",
th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้",
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。",
'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 0,
regulationMark: "H"
}
export default card