| | |
| | | public List<int> godWeaponSorts = new List<int>();
|
| | | Dictionary<int, AutoHammerCost> autoHammerCostDict = new Dictionary<int, AutoHammerCost>();
|
| | | Dictionary<int, List<int>> godWeaponStageDict = new Dictionary<int, List<int>>();
|
| | | Dictionary<int, int> exteriorPowerDict = new Dictionary<int, int>();
|
| | | int[] autoHammerExpArea { get; set; }
|
| | | int[] autoHammerCount { get; set; }
|
| | |
|
| | |
| | | godWeaponStageDict.Add(config.type, stages);
|
| | | }
|
| | | stages.Add(config.level);
|
| | | }
|
| | |
|
| | | funcConfig = Config.Instance.Get<FuncConfigConfig>("MagicExterior");
|
| | | json = LitJson.JsonMapper.ToObject(funcConfig.Numerical1);
|
| | | foreach (var key in json.Keys)
|
| | | {
|
| | | var type = int.Parse(key);
|
| | | var power = int.Parse(json[key].ToString());
|
| | | exteriorPowerDict.Add(type, power);
|
| | | }
|
| | | }
|
| | |
|
| | |
| | | return autoHammerCostDict.TryGetValue(type, out autoHammerCost);
|
| | | }
|
| | |
|
| | | public bool TryGetExteriorPower(int type, out int power)
|
| | | {
|
| | | return exteriorPowerDict.TryGetValue(type, out power);
|
| | | }
|
| | |
|
| | | }
|
| | |
|
| | | public class GodWeaponInfo
|