Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit a335237

Browse files
ice is nice (#22699)
1 parent 9baf99c commit a335237

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

code/__DEFINES/sound.dm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
#define AMBIENCE_DANGER "danger"
4848
#define AMBIENCE_RUINS "ruins"
4949
#define AMBIENCE_ENGI "engi"
50+
#define AMBIENCE_ICEMOON "icemoon"
5051
#define AMBIENCE_MINING "mining"
5152
#define AMBIENCE_JUNGLE "jungle"
5253
#define AMBIENCE_MEDICAL "med"

code/_globalvars/lists/ambience.dm

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,16 @@ GLOBAL_LIST_INIT(mining_ambience,list(
7070
'sound/ambience/ambilava2.ogg',
7171
'sound/ambience/ambilava3.ogg'))
7272

73+
GLOBAL_LIST_INIT(icemoon_ambience,list(
74+
'sound/ambience/ambimalf2.ogg',
75+
'sound/ambience/ambimo2.ogg',
76+
'sound/ambience/ambiruin.ogg',
77+
'sound/ambience/ambiruin3.ogg',
78+
'sound/ambience/ambiruin5.ogg',
79+
'sound/ambience/ambiruin6.ogg',
80+
'sound/ambience/ambiruin7.ogg',
81+
'sound/ambience/bitumen.ogg'))
82+
7383
GLOBAL_LIST_INIT(medical_ambience,list(
7484
'sound/ambience/ambinice.ogg',
7585
'sound/ambience/ambiruin2.ogg',
@@ -168,6 +178,7 @@ GLOBAL_LIST_INIT(ambience_assoc,list(
168178
AMBIENCE_DANGER = GLOB.danger_ambience,
169179
AMBIENCE_RUINS = GLOB.ruins_ambience,
170180
AMBIENCE_ENGI = GLOB.engi_ambience,
181+
AMBIENCE_ICEMOON = GLOB.icemoon_ambience,
171182
AMBIENCE_MINING = GLOB.mining_ambience,
172183
AMBIENCE_MEDICAL = GLOB.medical_ambience,
173184
AMBIENCE_SPOOKY = GLOB.spooky_ambience,

code/game/area/areas/mining.dm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,9 @@
170170
area_flags = FLORA_ALLOWED
171171
blob_allowed = FALSE
172172
mining_speed = TRUE
173+
ambient_buzz = null // stillness.
174+
ambience_index = AMBIENCE_ICEMOON
175+
sound_environment = SOUND_ENVIRONMENT_FOREST
173176

174177
/area/icemoon/top_layer
175178
name = "Icemoon Surface"
@@ -180,7 +183,6 @@
180183
power_equip = FALSE
181184
power_light = FALSE
182185
requires_power = TRUE
183-
ambience_index = AMBIENCE_MINING
184186
uses_daylight = TRUE
185187
daylight_multiplier = 0.7
186188

@@ -208,7 +210,6 @@
208210
power_equip = FALSE
209211
power_light = FALSE
210212
requires_power = TRUE
211-
ambience_index = AMBIENCE_MINING
212213

213214
/area/icemoon/surface/outdoors
214215
name = "Icemoon Wastes"
@@ -235,7 +236,6 @@
235236
power_environ = FALSE
236237
power_equip = FALSE
237238
power_light = FALSE
238-
ambience_index = AMBIENCE_MINING
239239

240240
/area/icemoon/underground/unexplored // mobs and megafauna and ruins spawn here
241241
name = "Icemoon Caves"

sound/ambience/bitumen.ogg

2.93 MB
Binary file not shown.

0 commit comments

Comments
 (0)