-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathradar.lua
More file actions
45 lines (39 loc) · 692 Bytes
/
Copy pathradar.lua
File metadata and controls
45 lines (39 loc) · 692 Bytes
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
--[[
Chart Effect Radar Example
This file should be named "radar.lua"
Place this file in the same folder as the chart
Create an entry for each chart difficulty that contains:
index: Difficulty index,
Light = 0
Challenge = 1
Extended = 2
Infinite = 3
level: Self-explanatory
radar: The radar values for the difficulty, a percentage between 0 and 1
]]--
return {
{
index = 2,
level = 16,
radar = {
notes = 0.24,
peak = 0.34,
tsumami = 0.24,
tricky = 1,
handTrip = 0,
oneHand = 0.05,
},
},
{
index = 3,
level = 18,
radar = {
notes = 0.24,
peak = 0.34,
tsumami = 0.24,
tricky = 1,
handTrip = 0,
oneHand = 0.05,
},
},
}