-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
jest.setup.js
54 lines (53 loc) · 1.15 KB
/
jest.setup.js
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
44
45
46
47
48
49
50
51
52
53
54
global.SETTINGS = {
DEFAULT_LANG: "en-us",
MAXIMUM_LINE_TENSION: 100,
LINE_TENSION_INCREASE_RATE: 5,
TENSION_RECOVER_RATE: 1,
PULL_DISTANCE_RATE_PER_TICK: 10,
ROD_CAST_CHALLENGE_VELOCITY: 1,
ROD_CAST_CHALLENGE_INTERVAL: 1,
ROD_CAST_CHALLENGE_ACCELERATION: 0.0001,
BAIT_HOLD_CHALLENGE_TIME: 500,
FISHES: {
fish: {
itemName: "fish",
type: "common",
hash: 802685111,
},
dolphin: {
itemName: "dolphin",
type: "uncommon",
hash: -1950698411,
},
hammerShark: {
itemName: "hammershark",
type: "uncommon",
hash: 1015224100,
},
tigerShark: {
itemName: "tigershark",
type: "rare",
hash: 113504370,
},
killerWhale: {
itemName: "killerwhale",
type: "epic",
hash: -1920284487,
},
humpBack: {
itemName: "humpback",
type: "legendary",
hash: 1193010354,
},
stingray: {
itemName: "stingray",
type: "rare",
hash: "a_c_stingray",
},
},
};
global.LOCALE_OVERRIDES = {
// "en-us": {
// fish_pull_hint: "My custom hint",
// },
};