-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefaultConfig.cs
More file actions
78 lines (77 loc) · 2.88 KB
/
DefaultConfig.cs
File metadata and controls
78 lines (77 loc) · 2.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
namespace CustomSound;
class DefaultConfig
{
public const string DefaultConfigJson = """
{
"//": "CustomSound Mod 配置文件",
"//": "可配置项:",
"//": "1. name(声音组名称)",
"//": "2. sounds(声音文件列表,缺省表示不使用声音)",
"//": "3. texts(气泡文本列表,缺省表示不使用气泡文本,null表示不播放气泡文本)",
"//": "4. soundType(声音类型,默认unknowNoise)",
"//": "5. radius(声音传播半径,默认15)",
"//": "6. weight(权重,默认值为-1,小于0表示根据声音和文本数量计算)",
"//": "声音类型(soundType)说明:",
"//": "1. unknowNoise(未知噪音、默认)",
"//": "2. combatSound(战斗声音)",
"//": "3. grenadeDropSound(手雷掉落声音)",
"//": "4. alert(警报)",
"soundGroups": [
{
"name": "baka",
"sounds": ["琪露诺baka.wav"],
"texts": ["笨~蛋", "Ba~~ka", "Ba♡ka"],
"soundType": "combatSound",
"radius": 40,
"weight": 50
},
{
"name": "bakabaka",
"sounds": ["天音baka.ogg"],
"texts": ["笨蛋♡笨蛋", "Baka~~Baka", "Baka♥Baka"],
"soundType": "combatSound",
"radius": 20
},
{
"name": "杂鱼",
"sounds": ["天音杂鱼.WAV"],
"texts": ["杂~鱼♥", "~杂鱼~", "杂~鱼♡", null],
"soundType": "grenadeDropSound",
"radius": 20
},
{
"name": "发现杂鱼",
"sounds": ["天音雑魚発見.ogg"],
"texts": ["发现杂鱼~~", "~发现♡杂鱼~", "雑♥魚 発~見~"],
"soundType": "combatSound",
"radius": 24,
"weight": -1
},
{
"name": "0721",
"sounds": ["宁宁0721.WAV"],
"soundType": "alert",
"radius": 35,
"weight": 5
},
{
"name": "Ciallo",
"sounds": ["芳乃ciallo.WAV", "芳乃ciallo_2.WAV", "美咕噜ciallo.WAV"],
"texts": ["Ciallo~(∠ · ω < )⌒☆", "Ciallo~(∠ · ω < )⌒★", "Ciallo~(∠ · ω < )⌒"]
},
{
"name": "Ciallo",
"sounds": ["美咕噜ciallo_2.WAV"],
"texts": ["先辈~~Ciallo~(∠ · ω < )⌒☆"],
"soundType": "null"
},
{
"name": "无口",
"texts": ["懒得说话呐", "不想说话的说", "我可是无口系", ""],
"radius": 0,
"weight": 1
}
]
}
""";
}