1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 11:51:59 +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/SV7a/008.ts Normal file
View File

@@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SV7a"
const card: Card = {
set: Set,
name: {
'zh-tw': "爆香猿",
'zh-cn': "爆香猿",
ja: "バオッキー"
},
illustrator: "Taiga Kasai",
category: "Pokemon",
hp: 90,
types: ["Fire"],
description: {
'zh-tw': "燃燒體內的火焰, 從頭部與尾巴撒出火花, 燒焦敵人。",
'zh-cn': "燃燒體內的火焰, 從頭部與尾巴撒出火花, 燒焦敵人。",
ja: "体の 中の 炎を 燃やして 頭や 尻尾から 火の粉を まき散らせて 敵を 焦がす。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "雙重粉碎",
'zh-cn': "雙重粉碎",
ja: "ダブルスマッシュ"
},
effect: {
'zh-tw': "擲2次硬幣造成正面出現的次數×70點傷害。",
'zh-cn': "擲2次硬幣造成正面出現的次數×70點傷害。",
ja: "コインを2回投げ、オモテの数×70ダメージ。"
},
damage: "70×",
cost: ["Fire"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "H",
rarity: "Common",
dexId: [514]
}
export default card