Skip to content

Commit

Permalink
Merge pull request #923 from rlcevg/barb_profile_list1
Browse files Browse the repository at this point in the history
BARb: Reorganize profile list
  • Loading branch information
AntlerForce authored Mar 5, 2025
2 parents 6acb58d + 648fdfb commit d2cbc71
Showing 1 changed file with 26 additions and 4 deletions.
30 changes: 26 additions & 4 deletions LuaMenu/configs/gameConfig/byar/aiCustomData.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,36 @@ local customProfiles = {
name = 'Hard | Aggressive', -- human readable name displayed in a list
desc = 'Difficulty: Hard | Playstyle: Aggressive | Made by Flaka, tweaked by Corosus',
},
{
key = 'hard',
name = 'Hard | Balanced',
desc = 'Difficulty: Hard |Playstyle: Balanced |Made by Flaka',
},
{
key = 'medium',
name = 'Medium | Lazy',
desc = 'Difficulty: Medium |Playstyle: Learning mechanics',
},
{
key = 'easy',
name = 'Easy | Slow',
desc = 'Difficulty: Easy |Playstyle: First launch',
},
{
key = 'dev',
name = 'Testing AI',
desc = 'Testing config',
},
},
}

local blacklistProfiles = {
-- ['BARb'] = {
-- dev = true,
-- hard = true,
-- },
['BARb'] = {
dev = true,
hard = true,
medium = true,
easy = true,
},
}

local function ArrayRemove(t, fnKeep)
Expand Down

0 comments on commit d2cbc71

Please sign in to comment.