2021-01-02 00:04:27 +01:00
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
const context2file = {
|
|
|
|
"argent": { file: "son_piece_monnaie.mp3", isGlobal: false }
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
export class RdDAudio {
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
static PlayContextAudio(context) {
|
2021-01-12 20:58:30 +01:00
|
|
|
if (game.settings.get("foundryvtt-reve-de-dragon", "activer-sons-audio") ) {
|
|
|
|
let audioData = context2file[context];
|
|
|
|
if ( audioData ) {
|
|
|
|
let audioPath = "systems/foundryvtt-reve-de-dragon/sounds/" + audioData.file;
|
|
|
|
console.log(`wfrp4e | Playing Sound: ${audioPath}`)
|
|
|
|
AudioHelper.play({ src: audioPath }, audioData.isGlobal);
|
|
|
|
}
|
2021-01-02 00:04:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|