1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +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

69
data-asia/SV/SV8a/209.ts Normal file
View File

@ -0,0 +1,69 @@
import { Card } from "../../../interfaces"
import Set from "../SV8a"
const card: Card = {
set: Set,
name: {
ja: "サンダースex",
id: "Jolteon ex",
'zh-tw': "雷伊布ex",
'zh-cn': "雷伊布ex"
},
illustrator: "kantaro",
rarity: "None",
category: "Pokemon",
hp: 260,
types: ["Lightning"],
stage: "Stage1",
suffix: "EX",
attacks: [{
cost: ["Lightning", "Colorless"],
name: {
ja: "フラッシュスピア",
id: "Flash Spear",
'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.",
'zh-tw': "若希望將最多2張自己的備戰寶可夢身上附加的基本能量卡丟棄增加其張數×90點傷害。",
'zh-cn': "若希望將最多2張自己的備戰寶可夢身上附加的基本能量卡丟棄增加其張數×90點傷害。"
}
}, {
cost: ["Fire", "Water", "Lightning"],
name: {
ja: "ドラバイト",
id: "Dravite",
'zh-tw': "棕碧璽",
'zh-cn': "棕碧璽"
},
damage: 280,
effect: {
ja: "次の自分の番、このポケモンはワザが使えない。",
id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.",
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。",
'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 0,
regulationMark: "H"
}
export default card