-
Notifications
You must be signed in to change notification settings - Fork 17
/
Sounds.cs
346 lines (225 loc) · 9.35 KB
/
Sounds.cs
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
using Terraria.Audio;
namespace MetroidMod
{
public static partial class Sounds
{
public static class Tiles
{
public static readonly SoundStyle HatchOpen = new($"{nameof(MetroidMod)}/Assets/Sounds/HatchOpenSound")
{
};
public static readonly SoundStyle HatchClose = new($"{nameof(MetroidMod)}/Assets/Sounds/HatchCloseSound")
{
};
}
public static class Items
{
public static readonly SoundStyle SerrisSummon = new($"{nameof(MetroidMod)}/Assets/Sounds/SerrisSummon")
{
};
public static class Tools
{
public static readonly SoundStyle GrappleBeamSound = new($"{nameof(MetroidMod)}/Assets/Sounds/GrappleBeamSound")
{
MaxInstances = 12
};
public static readonly SoundStyle GrappleLatch = new($"{nameof(MetroidMod)}/Assets/Sounds/GrappleLatch")
{
};
}
public static class Weapons
{
public static readonly SoundStyle PowerBeamSound = new($"{nameof(MetroidMod)}/Assets/Sounds/PowerBeamSound")
{
MaxInstances = 12
};
public static readonly SoundStyle NebulaComboSoundLoop = new($"{nameof(MetroidMod)}/Assets/Sounds/NebulaComboSoundLoop")
{
IsLooped = true
};
public static readonly SoundStyle NovaLaserLoop = new($"{nameof(MetroidMod)}/Assets/Sounds/NovaLaserLoop")
{
IsLooped = true
};
public static readonly SoundStyle PhazonBeamSound = new($"{nameof(MetroidMod)}/Assets/Sounds/PhazonBeamSound")
{
MaxInstances = 12,
IsLooped = true
};
public static readonly SoundStyle SolarComboSoundStart = new($"{nameof(MetroidMod)}/Assets/Sounds/SolarComboSoundStart")
{
};
public static readonly SoundStyle SolarComboSoundLoop = new($"{nameof(MetroidMod)}/Assets/Sounds/SolarComboSoundLoop")
{
IsLooped = true
};
public static readonly SoundStyle VortexComboSoundLoop = new($"{nameof(MetroidMod)}/Assets/Sounds/VortexComboSoundLoop")
{
IsLooped = true
};
public static readonly SoundStyle MissileSound = new($"{nameof(MetroidMod)}/Assets/Sounds/MissileSound")
{
};
public static readonly SoundStyle MissileShoot = new($"{nameof(MetroidMod)}/Assets/Sounds/MissileShoot")
{
};
public static readonly SoundStyle MissileExplode = new($"{nameof(MetroidMod)}/Assets/Sounds/MissileExplode")
{
};
public static readonly SoundStyle SuperMissileShoot = new($"{nameof(MetroidMod)}/Assets/Sounds/SuperMissileShoot")
{
};
public static readonly SoundStyle SuperMissileExplode = new($"{nameof(MetroidMod)}/Assets/Sounds/SuperMissileExplode")
{
};
public static readonly SoundStyle IceMissileShoot = new($"{nameof(MetroidMod)}/Assets/Sounds/IceMissileShoot")
{
};
public static readonly SoundStyle IceMissileExplode = new($"{nameof(MetroidMod)}/Assets/Sounds/IceMissileExplode")
{
};
public static readonly SoundStyle ChargeComboActivate = new($"{nameof(MetroidMod)}/Assets/Sounds/ChargeComboActivate")
{
};
public static readonly SoundStyle ChargeStartup_Seeker = new($"{nameof(MetroidMod)}/Assets/Sounds/ChargeStartup_Seeker")
{
};
public static readonly SoundStyle SeekerLockSound = new($"{nameof(MetroidMod)}/Assets/Sounds/SeekerLockSound")
{
};
public static readonly SoundStyle SeekerMissileSound = new($"{nameof(MetroidMod)}/Assets/Sounds/SeekerMissileSound")
{
};
public static readonly SoundStyle FlamethrowerStart = new($"{nameof(MetroidMod)}/Assets/Sounds/FlamethrowerStart")
{
};
public static readonly SoundStyle FlamethrowerLoop = new($"{nameof(MetroidMod)}/Assets/Sounds/FlamethrowerLoop")
{
};
public static readonly SoundStyle IceSpreaderImpactSound = new($"{nameof(MetroidMod)}/Assets/Sounds/IceSpreaderImpactSound")
{
};
public static readonly SoundStyle StardustAfterImpactSound = new($"{nameof(MetroidMod)}/Assets/Sounds/StardustAfterImpactSound")
{
};
public static readonly SoundStyle WavebusterStart = new($"{nameof(MetroidMod)}/Assets/Sounds/WavebusterStart")
{
};
public static readonly SoundStyle WavebusterLoop = new($"{nameof(MetroidMod)}/Assets/Sounds/WavebusterLoop")
{
};
public static readonly SoundStyle ChargeMax = new($"{nameof(MetroidMod)}/Assets/Sounds/ChargeMax")
{
};
public static readonly SoundStyle ScrewAttack = new($"{nameof(MetroidMod)}/Assets/Sounds/ScrewAttackSound")
{
};
public static readonly SoundStyle ScrewAttackSpeed = new($"{nameof(MetroidMod)}/Assets/Sounds/ScrewAttackSpeedSound")
{
};
public static readonly SoundStyle SpeedBoosterStartup = new($"{nameof(MetroidMod)}/Assets/Sounds/SpeedBoosterStartup")
{
};
public static readonly SoundStyle SpeedBoosterLoop = new($"{nameof(MetroidMod)}/Assets/Sounds/SpeedBoosterLoop")
{
};
public static readonly SoundStyle ShineSpark = new($"{nameof(MetroidMod)}/Assets/Sounds/ShineSpark")
{
};
public static readonly SoundStyle Paralyzer = new($"{nameof(MetroidMod)}/Assets/Sounds/Paralyzer")
{
};
public static readonly SoundStyle HomingMissileShoot = new($"{nameof(MetroidMod)}/Assets/Sounds/HomingMissileShoot")
{
};
public static readonly SoundStyle ChargeStartup_HomingMissile = new($"{nameof(MetroidMod)}/Assets/Sounds/ChargeStartup_HomingMissile")
{
};
public static readonly SoundStyle MissileShootHunters = new($"{nameof(MetroidMod)}/Assets/Sounds/MissileShootHunters")
{
};
public static readonly SoundStyle MissileExplodeHunters = new($"{nameof(MetroidMod)}/Assets/Sounds/MissileExplodeHunters")
{
};
public static readonly SoundStyle VoltDriverShot = new($"{nameof(MetroidMod)}/Assets/Sounds/VoltDriverSound")
{
};
public static readonly SoundStyle VoltDriverImpactSound = new($"{nameof(MetroidMod)}/Assets/Sounds/VoltDriverImpactSound")
{
};
public static readonly SoundStyle VoltDriverDaze = new($"{nameof(MetroidMod)}/Assets/Sounds/VoltDriverDaze")
{
};
public static readonly SoundStyle VoltDriverChargeSound = new($"{nameof(MetroidMod)}/Assets/Sounds/VoltDriverChargeSound")
{
};
public static readonly SoundStyle VoltDriverCharge = new($"{nameof(MetroidMod)}/Assets/Sounds/VoltDriverCharge")
{
};
public static readonly SoundStyle VoltDriverChargeImpactSound = new($"{nameof(MetroidMod)}/Assets/Sounds/VoltDriverChargeImpactSound")
{
};
public static readonly SoundStyle JudicatorSound = new($"{nameof(MetroidMod)}/Assets/Sounds/JudicatorSound")
{
};
public static readonly SoundStyle JudicatorImpactSound = new($"{nameof(MetroidMod)}/Assets/Sounds/JudicatorImpactSound")
{
};
public static readonly SoundStyle JudicatorFreeze = new($"{nameof(MetroidMod)}/Assets/Sounds/JudicatorFreeze")
{
};
public static readonly SoundStyle JudicatorChargeSound = new($"{nameof(MetroidMod)}/Assets/Sounds/JudicatorChargeSound")
{
};
public static readonly SoundStyle JudicatorAffinityChargeSound = new($"{nameof(MetroidMod)}/Assets/Sounds/JudicatorAffinityChargeSound")
{
};
public static readonly SoundStyle ChargeStartup_JudicatorAffinity = new($"{nameof(MetroidMod)}/Assets/Sounds/ChargeStartup_JudicatorAffinity")
{
};
public static readonly SoundStyle JudicatorAffinityChargeShot = new($"{nameof(MetroidMod)}/Assets/Sounds/JudicatorAffinityChargeShot")
{
};
public static readonly SoundStyle BattleHammerSound = new($"{nameof(MetroidMod)}/Assets/Sounds/BattleHammerSound")
{
};
public static readonly SoundStyle BattleHammerAffinitySound = new($"{nameof(MetroidMod)}/Assets/Sounds/BattleHammerAffinitySound")
{
};
public static readonly SoundStyle BattleHammerImpactSound = new($"{nameof(MetroidMod)}/Assets/Sounds/BattleHammerImpactSound")
{
};
public static readonly SoundStyle MagMaulSound = new($"{nameof(MetroidMod)}/Assets/Sounds/MagMaulSound")
{
};
public static readonly SoundStyle MagMaulExplode = new($"{nameof(MetroidMod)}/Assets/Sounds/MagMaulExplode")
{
};
public static readonly SoundStyle ChargeStartup_MagMaul = new($"{nameof(MetroidMod)}/Assets/Sounds/ChargeStartup_MagMaul")
{
};
public static readonly SoundStyle ImperialistSound = new($"{nameof(MetroidMod)}/Assets/Sounds/ImperialistSound")
{
};
public static readonly SoundStyle ShockCoilSound = new($"{nameof(MetroidMod)}/Assets/Sounds/ShockCoilSound")
{
};
public static readonly SoundStyle ShockCoilAffinity1 = new($"{nameof(MetroidMod)}/Assets/Sounds/ShockCoilAffinity1")
{
};
public static readonly SoundStyle ShockCoilAffinity2 = new($"{nameof(MetroidMod)}/Assets/Sounds/ShockCoilAffinity2")
{
};
public static readonly SoundStyle ShockCoilStartupSound = new($"{nameof(MetroidMod)}/Assets/Sounds/ShockCoilStartupSound")
{
};
public static readonly SoundStyle OmegaCannonShot = new($"{nameof(MetroidMod)}/Assets/Sounds/OmegaCannonShot")
{
};
public static readonly SoundStyle ShockCoilLoad = new($"{nameof(MetroidMod)}/Assets/Sounds/ShockCoilLoad")
{
};
}
}
}
}