1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +00:00

feat: Update asian sets (#554)

This commit is contained in:
2024-11-05 23:46:04 +01:00
committed by GitHub
parent 64bcd0524d
commit c1d83caca0
546 changed files with 26414 additions and 0 deletions

54
data-asia/SV/SV7/037.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SV7"
const card: Card = {
set: Set,
name: {
'zh-tw': "捷拉奧拉",
'zh-cn': "捷拉奧拉",
ja: "ゼラオラ"
},
illustrator: "Anesaki Dynamic",
category: "Pokemon",
hp: 120,
types: ["Lightning"],
description: {
'zh-tw': "以媲美閃電的速度奔跑, 用能釋放高壓電的爪子 將敵人撕得粉碎。",
'zh-cn': "以媲美閃電的速度奔跑, 用能釋放高壓電的爪子 將敵人撕得粉碎。",
ja: "雷に 匹敵する スピードで 走り 大電圧を 発する ツメで 敵を 八つ裂きにする。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "鬥戰雷電",
'zh-cn': "鬥戰雷電",
ja: "コンバットサンダー"
},
effect: {
'zh-tw': "增加對手的備戰寶可夢的數量×20點傷害。",
'zh-cn': "增加對手的備戰寶可夢的數量×20點傷害。",
ja: "相手のベンチポケモンの数×20ダメージ追加。"
},
damage: "20",
cost: ["Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "H",
rarity: "Rare",
dexId: [807]
}
export default card