1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

feat: Add SV8a (#673)

This commit is contained in:
2025-02-28 08:44:24 +01:00
committed by GitHub
parent 2f9c5814ff
commit 19dccfd5d7
238 changed files with 14569 additions and 0 deletions

74
data-asia/SV/SV8a/052.ts Normal file
View File

@ -0,0 +1,74 @@
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