-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.lua
More file actions
31 lines (29 loc) · 909 Bytes
/
Copy pathconfig.lua
File metadata and controls
31 lines (29 loc) · 909 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
local config = {
Enabled = true,
BlockStartingReward = true,
UpdateHistory = true,
AspectSettings = {},
SaveToRunControl = false,
}
StartingBuildMod.config = config
StartingBuildMod.Presets = {
None = {},
MercifulEndBuild = {
{ Name = "CurseOfAgony", Rarity = "Epic", Level = 3 },
{ Name = "ImpendingDoom", Rarity = "Epic", Level = 3 },
{ Name = "DivineFlourish" },
{ Name = "DivineDash" },
{ Name = "MercifulEnd" },
},
BeowulfBuild = {
{ Name = "DeadlyStrike" },
{ Name = "FloodFlare", Rarity = "Epic", Level = 3 },
{ Name = "MirageShot", Rarity = "Legendary" },
},
ZAP = {
{ Name = "LightningStrike", Rarity = "Epic" },
{ Name = "DeadlyFlourish", Rarity = "Epic" },
{ Name = "TidalDash", Rarity = "Epic", },
{ Name = "StaticDischarge", Rarity = "Epic", },
},
}