forked from PCMRShutnik/Rage-Trigger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRunelogic.lua
More file actions
36 lines (36 loc) · 772 Bytes
/
Runelogic.lua
File metadata and controls
36 lines (36 loc) · 772 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
local X = {}
RAD_SAFE_BOUNTY_RUNE = GetRuneSpawnLocation(RUNE_BOUNTY_1)
RAD_OFF_BOUNTY_RUNE = GetRuneSpawnLocation(RUNE_BOUNTY_2)
DIRE_SAFE_BOUNTY_RUNE = GetRuneSpawnLocation(RUNE_BOUNTY_3)
DIRE_OFF_BOUNTY_RUNE = GetRuneSpawnLocation(RUNE_BOUNTY_4)
PU_RUNE_TOP = GetRuneSpawnLocation(RUNE_POWERUP_1)
PU_RUNE_BOT = GetRuneSpawnLocation(RUNE_POWERUP_2)
X.ListRuneLocation = {
RAD_SAFE_BOUNTY_RUNE,
RAD_OFF_BOUNTY_RUNE,
DIRE_SAFE_BOUNTY_RUNE,
DIRE_OFF_BOUNTY_RUNE,
PU_RUNE_TOP,
PU_RUNE_BOT
}
X.ListRune = {
RUNE_BOUNTY_1,
RUNE_BOUNTY_2,
RUNE_BOUNTY_3,
RUNE_BOUNTY_4,
RUNE_POWERUP_1,
RUNE_POWERUP_2
}
X.RadiantBountyRune = {
RUNE_BOUNTY_1,
RUNE_BOUNTY_2
}
X.DireBountyRune = {
RUNE_BOUNTY_3,
RUNE_BOUNTY_4
}
X.PU = {
RUNE_POWERUP_1,
RUNE_POWERUP_2
}
return X