15 lines
931 B
Lua
15 lines
931 B
Lua
WeaponSelectionCombinationConfig = WeaponSelectionCombinationConfig or {}
|
|
WeaponSelectionCombinationConfig.ECombinationType = {
|
|
Combination1 = 1; -- 进攻方武器
|
|
Combination2 = 2; -- 防守方武器
|
|
}
|
|
WeaponSelectionCombinationConfig.WeaponCombinationList = {
|
|
[WeaponSelectionCombinationConfig.ECombinationType.Combination1] = {
|
|
Weapon = {{102001}, {102003}, {104003}, {103003}},
|
|
OtherParts = {{ItemID = 502001, Count = 1}, {ItemID = 503001, Count = 1}, {ItemID = 602004, Count = 1},{ItemID = 602001, Count = 1}, --[[背包 {ItemID = 501003, Count = 1}]]},
|
|
};
|
|
[WeaponSelectionCombinationConfig.ECombinationType.Combination2] = {
|
|
Weapon = {{102005, 101004}, {104004, 103006}, {102003, 103003}, {105002, 104003}},
|
|
OtherParts = {{ItemID = 502003, Count = 1}, {ItemID = 503003, Count = 1}, {ItemID = 602004, Count = 1}, --[[背包 {ItemID = 501003, Count = 1}]]},
|
|
}
|
|
} |