sounds
This commit is contained in:
parent
c6ba3e38a2
commit
37087d08a7
189 changed files with 12864 additions and 9589 deletions
49
js/sound_pack.js
Normal file
49
js/sound_pack.js
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
"use strict";
|
||||
|
||||
(function (global) {
|
||||
// External audio replacement point. Add files and edit paths here; audio.js consumes this pack at startup.
|
||||
global.TARINAI_SOUND_PACK = Object.freeze({
|
||||
version: "1.1",
|
||||
categoryGain: { voice: 3.2, notify: 18.0, ops: 16.0 },
|
||||
idGain: {
|
||||
sfx_notify: 2.60,
|
||||
sfx_log_push: 2.60,
|
||||
sfx_ui_click: 2.35,
|
||||
sfx_ui_fold: 2.20,
|
||||
sfx_place: 2.10,
|
||||
sfx_delete: 2.25,
|
||||
sfx_poke: 1.85,
|
||||
sfx_grab: 2.15,
|
||||
sfx_drop: 2.10,
|
||||
sfx_water_hose: 1.85,
|
||||
sfx_genkotsu_fall: 1.70,
|
||||
sfx_genkotsu_impact: 1.90,
|
||||
sfx_ground_rumble: 1.75,
|
||||
sfx_firecracker_fuse: 1.55,
|
||||
sfx_firecracker_explode: 1.70,
|
||||
},
|
||||
idMinGap: {
|
||||
sfx_ui_click: 0.030,
|
||||
sfx_place: 0.055,
|
||||
sfx_grass: 0.12,
|
||||
sfx_zunchi: 0.14,
|
||||
sfx_ant_die: 0.14,
|
||||
sfx_notify: 0.10,
|
||||
sfx_log_push: 0.10,
|
||||
},
|
||||
samplePaths: {
|
||||
voice_hau: "assets/sounds/voice_001_hau.wav",
|
||||
voice_flee: "assets/sounds/voice_002_flee.wav",
|
||||
voice_poop: "assets/sounds/voice_003_po.wav",
|
||||
sfx_eat: "assets/sounds/voice_004_eat.wav",
|
||||
voice_stress: "assets/sounds/voice_005_stress.wav",
|
||||
sfx_sleep: "assets/sounds/voice_006_sleep.wav",
|
||||
sfx_firecracker_explode: "assets/sounds/firecracker_explosion.mp3"
|
||||
},
|
||||
categories: {
|
||||
voice: "たりないの声",
|
||||
notify: "通知",
|
||||
ops: "操作"
|
||||
}
|
||||
});
|
||||
})(typeof window !== "undefined" ? window : globalThis);
|
||||
Loading…
Add table
Add a link
Reference in a new issue