Compare commits
No commits in common. "0cc9c9427fc06a889fb34e263664aa0a047531a3" and "6f4d44febca34895a74083f25671c078886d0b2d" have entirely different histories.
0cc9c9427f
...
6f4d44febc
|
@ -48,7 +48,6 @@
|
||||||
- gasp.ogg: Gasping for air
|
- gasp.ogg: Gasping for air
|
||||||
- gasprelief.ogg: Heavy breathing
|
- gasprelief.ogg: Heavy breathing
|
||||||
- growl.ogg: Growled into a Xaphoon (2024-09-13@18:21), lowered by an octave, added reverb
|
- growl.ogg: Growled into a Xaphoon (2024-09-13@18:21), lowered by an octave, added reverb
|
||||||
- phone.ogg: 2 sine waves (440Hz+480Hz) at 0.2 amplitude, -3dB amplification, with some fade in and fade out
|
|
||||||
- refill.ogg: This consists of 3 overlaid parts:
|
- refill.ogg: This consists of 3 overlaid parts:
|
||||||
- Starting clang: Hit a fire extinguisher with a chunk of metal
|
- Starting clang: Hit a fire extinguisher with a chunk of metal
|
||||||
- Main hiss: Sprayed a can of WD-40, applied high pass filter (1khz, 36db roll-off per octave), fade out
|
- Main hiss: Sprayed a can of WD-40, applied high pass filter (1khz, 36db roll-off per octave), fade out
|
||||||
|
|
Binary file not shown.
|
@ -78,7 +78,6 @@ const PATHS: &[(SfxType, Sfx, &str)] = &[
|
||||||
"sounds/connect.ogg",
|
"sounds/connect.ogg",
|
||||||
),
|
),
|
||||||
(SfxType::OneOff, Sfx::Ping, "sounds/connect.ogg"),
|
(SfxType::OneOff, Sfx::Ping, "sounds/connect.ogg"),
|
||||||
(SfxType::OneOff, Sfx::Phone, "sounds/phone.ogg"),
|
|
||||||
(SfxType::OneOff, Sfx::PowerDown, "sounds/powerdown.ogg"),
|
(SfxType::OneOff, Sfx::PowerDown, "sounds/powerdown.ogg"),
|
||||||
(SfxType::OneOff, Sfx::PowerUp, "sounds/spark.ogg"),
|
(SfxType::OneOff, Sfx::PowerUp, "sounds/spark.ogg"),
|
||||||
(SfxType::OneOff, Sfx::Switch, "sounds/click2.ogg"),
|
(SfxType::OneOff, Sfx::Switch, "sounds/click2.ogg"),
|
||||||
|
@ -108,7 +107,6 @@ pub enum Sfx {
|
||||||
IncomingChatMessage,
|
IncomingChatMessage,
|
||||||
Ion,
|
Ion,
|
||||||
Ping,
|
Ping,
|
||||||
Phone,
|
|
||||||
PowerDown,
|
PowerDown,
|
||||||
PowerUp,
|
PowerUp,
|
||||||
Refill,
|
Refill,
|
||||||
|
@ -134,7 +132,6 @@ pub fn str2sfx(sfx_label: &str) -> Sfx {
|
||||||
"cat" => Sfx::Cat,
|
"cat" => Sfx::Cat,
|
||||||
"chat" => Sfx::IncomingChatMessage,
|
"chat" => Sfx::IncomingChatMessage,
|
||||||
"ping" => Sfx::Ping,
|
"ping" => Sfx::Ping,
|
||||||
"phone" => Sfx::Phone,
|
|
||||||
"powerdown" => Sfx::PowerDown,
|
"powerdown" => Sfx::PowerDown,
|
||||||
"powerup" => Sfx::PowerUp,
|
"powerup" => Sfx::PowerUp,
|
||||||
"connect" => Sfx::Connect,
|
"connect" => Sfx::Connect,
|
||||||
|
|
|
@ -15,13 +15,9 @@
|
||||||
- Select contact to call.
|
- Select contact to call.
|
||||||
- if: phone$travel
|
- if: phone$travel
|
||||||
FASTravel:
|
FASTravel:
|
||||||
- sound: phone
|
|
||||||
msg: Dialing...
|
|
||||||
- goto: travel
|
- goto: travel
|
||||||
- if: phone$luna
|
- if: phone$luna
|
||||||
Luna:
|
Luna:
|
||||||
- sound: phone
|
|
||||||
msg: Dialing...
|
|
||||||
- goto: luna
|
- goto: luna
|
||||||
- "[Cancel]":
|
- "[Cancel]":
|
||||||
- goto: EXIT
|
- goto: EXIT
|
||||||
|
@ -82,8 +78,7 @@
|
||||||
- label: luna
|
- label: luna
|
||||||
- script: changename Luna
|
- script: changename Luna
|
||||||
- Hey, time traveler, what's up?
|
- Hey, time traveler, what's up?
|
||||||
- How's your research coming along?:
|
- Just chilling:
|
||||||
- Great! This backup software is going to help a lot! Thanks again for this!
|
- Cool, cool.
|
||||||
- "[Hang up]": []
|
|
||||||
- "[Hang up]": []
|
- "[Hang up]": []
|
||||||
- goto: EXIT
|
- goto: EXIT
|
||||||
|
|
Loading…
Reference in a new issue