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
|
const getResources = (AO_HOST, THEME) => ({
holdit: {
src: `${AO_HOST}misc/default/holdit_bubble.png`,
duration: 720,
sfx: `${AO_HOST}misc/default/holdit.opus`,
},
objection: {
src: `${AO_HOST}misc/default/objection_bubble.png`,
duration: 720,
sfx: `${AO_HOST}misc/default/objection.opus`,
},
takethat: {
src: `${AO_HOST}misc/default/takethat_bubble.png`,
duration: 840,
sfx: `${AO_HOST}misc/default/takethat.opus`,
},
custom: {
src: "",
duration: 840,
sfx: "",
},
witnesstestimony: {
src: `${AO_HOST}themes/${THEME}/witnesstestimony_bubble.gif`,
duration: 1560,
sfx: `${AO_HOST}sounds/general/sfx-testimony.opus`,
},
crossexamination: {
src: `${AO_HOST}themes/${THEME}/crossexamination_bubble.gif`,
duration: 1600,
sfx: `${AO_HOST}sounds/general/sfx-testimony2.opus`,
},
guilty: {
src: `${AO_HOST}themes/${THEME}/guilty_bubble.gif`,
duration: 2870,
sfx: `${AO_HOST}sounds/general/sfx-guilty.opus`,
},
notguilty: {
src: `${AO_HOST}themes/${THEME}/notguilty_bubble.gif`,
duration: 2440,
sfx: `${AO_HOST}sounds/general/sfx-notguilty.opus`,
},
});
export default getResources;
|