1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39: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

63
data-asia/SV/SV8a/053.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SV8a"
const card: Card = {
set: Set,
name: {
ja: "ゼラオラ",
id: "Zeraora",
th: "เซราโอรา",
'zh-tw': "捷拉奧拉",
'zh-cn': "捷拉奧拉"
},
illustrator: "Anesaki Dynamic",
rarity: "None",
category: "Pokemon",
dexId: [807],
hp: 120,
types: ["Lightning"],
description: {
ja: "雷に 匹敵する スピードで 走り 大電圧を 発する ツメで 敵を 八つ裂きにする。",
id: "Zeraora berlari secepat kilat dan mencabik-cabik musuhnya dengan cakar yang memancarkan listrik bertegangan tinggi.",
th: "วิ่งด้วยความเร็วที่เทียบเท่าฟ้าแลบแล้วเข้าฉีกกระชากศัตรูด้วยกรงเล็บที่ปล่อยไฟฟ้าแรงสูง",
'zh-tw': "以媲美閃電的速度奔跑, 用能釋放高壓電的爪子 將敵人撕得粉碎。",
'zh-cn': "以媲美閃電的速度奔跑, 用能釋放高壓電的爪子 將敵人撕得粉碎。"
},
stage: "Basic",
attacks: [{
cost: ["Lightning", "Colorless"],
name: {
ja: "コンバットサンダー",
id: "Combat Thunder",
th: "คอมแบตธันเดอร์",
'zh-tw': "鬥戰雷電",
'zh-cn': "鬥戰雷電"
},
damage: "20+",
effect: {
ja: "相手のベンチポケモンの数×20ダメージ追加。",
id: "Kerusakan yang diberikan bertambah sejumlah 20 untuk tiap Pokémon Cadangan lawan.",
th: "แดเมจจะเพิ่มตามจำนวนโปเกมอนบนเบนช์ฝ่ายตรงข้าม x20",
'zh-tw': "增加對手的備戰寶可夢的數量×20點傷害。",
'zh-cn': "增加對手的備戰寶可夢的數量×20點傷害。"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card