-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathSounds.Suit.cs
124 lines (89 loc) · 3.01 KB
/
Sounds.Suit.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
using Terraria.Audio;
namespace MetroidMod
{
public static partial class Sounds
{
public static class Suit
{
public static readonly SoundStyle WallJump = new($"{nameof(MetroidMod)}/Assets/Sounds/WallJump")
{
Volume = 0.25f,
PitchVariance = 0.15f,
MaxInstances = 4
};
public static readonly SoundStyle GripHang = new($"{nameof(MetroidMod)}/Assets/Sounds/GripHang")
{
Volume = 0.25f,
PitchVariance = 0.15f,
MaxInstances = 4
};
public static readonly SoundStyle GripClimb = new($"{nameof(MetroidMod)}/Assets/Sounds/GripClimb")
{
Volume = 0.25f,
PitchVariance = 0.15f,
MaxInstances = 4
};
public static readonly SoundStyle SenseMove = new($"{nameof(MetroidMod)}/Assets/Sounds/SenseMoveSound")
{
};
public static readonly SoundStyle ConcentrationLoop = new($"{nameof(MetroidMod)}/Assets/Sounds/ConcentrationLoop")
{
};
public static readonly SoundStyle MissilesReplenished = new($"{nameof(MetroidMod)}/Assets/Sounds/MissilesReplenished")
{
};
public static readonly SoundStyle EnergyPickup = new($"{nameof(MetroidMod)}/Assets/Sounds/EnergyPickupSound")
{
};
public static readonly SoundStyle EnergyHit = new($"{nameof(MetroidMod)}/Assets/Sounds/EnergyHit_", 0, 2)
{
PitchVariance = 0.5f
};
public static readonly SoundStyle EnergyLow = new($"{nameof(MetroidMod)}/Assets/Sounds/EnergyLow")
{
};
public static readonly SoundStyle MorphIn = new($"{nameof(MetroidMod)}/Assets/Sounds/MorphIn")
{
};
public static readonly SoundStyle MorphOut = new($"{nameof(MetroidMod)}/Assets/Sounds/MorphOut")
{
};
public static readonly SoundStyle LayBomb = new($"{nameof(MetroidMod)}/Assets/Sounds/LayBomb")
{
};
public static readonly SoundStyle LayPowerBomb = new($"{nameof(MetroidMod)}/Assets/Sounds/LayPowerBomb")
{
};
public static readonly SoundStyle BombExplode = new($"{nameof(MetroidMod)}/Assets/Sounds/BombExplode")
{
};
public static readonly SoundStyle BoostBallStartup = new($"{nameof(MetroidMod)}/Assets/Sounds/BoostBallStartup")
{
};
public static readonly SoundStyle BoostBallLoop = new($"{nameof(MetroidMod)}/Assets/Sounds/BoostBallLoop")
{
};
public static readonly SoundStyle BoostBallSound = new($"{nameof(MetroidMod)}/Assets/Sounds/BoostBallSound")
{
};
public static readonly SoundStyle SpiderActivate = new($"{nameof(MetroidMod)}/Assets/Sounds/SpiderActivate")
{
};
public static class Visors
{
public static readonly SoundStyle ScanVisorBackgroundNoise = new($"{nameof(MetroidMod)}/Assets/Sounds/ScanVisorBackgroundNoise", SoundType.Ambient)
{
IsLooped = true
};
public static readonly SoundStyle ScanVisorScanning = new($"{nameof(MetroidMod)}/Assets/Sounds/ScanVisorScanning")
{
IsLooped = true
};
public static readonly SoundStyle DarkVisorBackgroundNoise = new($"{nameof(MetroidMod)}/Assets/Sounds/DarkVisorBackgroundNoise", SoundType.Ambient)
{
IsLooped = true
};
}
}
}
}