Skip to content

Commit 9fe3431

Browse files
authored
补充地图Boss: ze_obj_ouroboros_aurora_v2 (#3564)
Auto Merged by Wave Galactica
1 parent affcad1 commit 9fe3431

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
// BossHP configuration file generator.
2+
// Boss Version v23
3+
// Copyright 2025 Kyle 'Kxnrl' Frankiss.
4+
// https://github.com/Kxnrl
5+
6+
// 可用字段:
7+
// [Boss (Breakables/Counters)]
8+
// display (string) -> 显示的名称
9+
// hitbox (string) -> 打击框
10+
// stages (int) -> 阶段数
11+
// target (string) -> 目标名称 (Breakable only)
12+
// count (int) -> 血条格数 (Breakable only)
13+
// iterator (string) -> 计数器 (MathCounter only)
14+
// backup (string) -> 后备计数器 (MathCounter only)
15+
// mass (int) -> 后备算法参数 (MathCounter only)
16+
// counter (string) -> 血条计数器 (MathCounter only)
17+
// increase (bool) -> iterator是OnHitMax模式 (MathCounter only)
18+
// reverse (bool) -> counter是OnHitMax模式 (MathCounter only)
19+
// [Npc (Monsters)]
20+
// display (string) -> 显示的名称
21+
// identity (string) -> UniqueHammerId (同时支持Counter/Breakable)
22+
23+
{
24+
"Counters": [
25+
{
26+
"iterator": "Boss_HpCounter",
27+
"backup": "BossHp_Counter_2",
28+
"counter": "BossHpBar_Counter",
29+
"reverse": true,
30+
"hitbox": "bossbreak",
31+
"display": "Boss"
32+
}
33+
],
34+
"Breakables": [
35+
{
36+
"target": "radio_1",
37+
"display": "Radio1"
38+
},
39+
{
40+
"target": "radio_2",
41+
"display": "Radio2"
42+
},
43+
{
44+
"target": "radio_3",
45+
"display": "Radio3"
46+
},
47+
{
48+
"target": "radio_4",
49+
"display": "Radio4"
50+
}
51+
]
52+
}

0 commit comments

Comments
 (0)