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

63 lines
1.9 KiB
TypeScript
Raw 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: "ゼラオラ",
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