using EggLink.DanhengServer.Database.Inventory; namespace EggLink.DanhengServer.Game.Drop; public class DropService { public static List CalculateDropsFromProp() { List drops = [ new ItemData { ItemId = 1, Count = 5 }, new ItemData { ItemId = 22, Count = 5 }, new ItemData { ItemId = 2, Count = new Random().Next(20, 100) } ]; return drops; } }