aboutsummaryrefslogtreecommitdiff
path: root/webAO/utils/getResources.js
blob: 9837c77a3ec7d084fe80e1cb2c7d7cf6906d25a8 (plain)
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
const getResources = (AO_HOST, THEME) => ({
  holdit: {
    src: `${AO_HOST}misc/default/holdit_bubble.png`,
    duration: 720,
  },
  objection: {
    src: `${AO_HOST}misc/default/objection_bubble.png`,
    duration: 720,
  },
  takethat: {
    src: `${AO_HOST}misc/default/takethat_bubble.png`,
    duration: 840,
  },
  custom: {
    src: "",
    duration: 840,
  },
  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;