using KianaBH.Data; using KianaBH.Enums.Item; using KianaBH.Enums.Player; using KianaBH.Internationalization; namespace KianaBH.GameServer.Command.Commands; [CommandInfo("giveall", "Game.Command.GiveAll.Desc", "Game.Command.GiveAll.Usage", ["ga"], [PermEnum.Admin, PermEnum.Support])] public class CommandGiveall : ICommands { [CommandMethod("weapon")] public async ValueTask GiveWeapon(CommandArg arg) { if (!await arg.CheckOnlineTarget()) return; foreach (var conf in GameData.WeaponData.Values.Where(weapon => weapon.Rarity == weapon.MaxRarity)) { var item = await arg.Target!.Player!.InventoryManager!.AddItem(conf.ID, 1, ItemMainTypeEnum.Weapon, conf.MaxLv, sync:false); } await arg.Target!.Player!.SyncInventory(); await arg.SendMsg(I18NManager.Translate("Game.Command.GiveAll.GiveAllItems", I18NManager.Translate("Word.Weapon"))); } [CommandMethod("stigmata")] public async ValueTask GiveStigmata(CommandArg arg) { if (!await arg.CheckOnlineTarget()) return; foreach (var conf in GameData.StigmataData.Values.Where(stigmata => stigmata.Rarity == stigmata.MaxRarity)) { var item = await arg.Target!.Player!.InventoryManager!.AddItem(conf.ID, 1, ItemMainTypeEnum.Stigmata, conf.MaxLv, sync: false); } await arg.Target!.Player!.SyncInventory(); await arg.SendMsg(I18NManager.Translate("Game.Command.GiveAll.GiveAllItems", I18NManager.Translate("Word.Stigmata"))); } }