Add consumable items

This commit is contained in:
Kei-Luna
2026-04-27 08:02:37 +09:00
parent 4ee9fd6908
commit a67e139eb1
3 changed files with 32 additions and 0 deletions

View File

@@ -69,6 +69,10 @@ public class PlayerInstance(PlayerGameData data)
{
await CharacterManager.AddCharacter((ItemTypeEnum)card.Genre, card.Detail, card.Particular, card.Level);
}
foreach (var supplies in GameData.SuppliesData.Values)
{
await InventoryManager.AddSuppliesItem(supplies, 90000);
}
var selected = CharacterManager.CharacterData.Characters
.OrderBy(_ => Guid.NewGuid())