fix: world Amphoreus chest drop

This commit is contained in:
StopWuyu
2024-12-15 11:08:24 +08:00
parent a99f8cf50d
commit efdb942f9e

View File

@@ -30,6 +30,8 @@ public class DropService
world = ChestTypeEnum.CHEST_WORLD_THREE;
else if (chest.ChestType.Contains(ChestTypeEnum.CHEST_WORLD_ZERO))
world = ChestTypeEnum.CHEST_WORLD_ZERO;
else if (chest.ChestType.Contains(ChestTypeEnum.CHEST_WORLD_FOUR))
world = ChestTypeEnum.CHEST_WORLD_FOUR;
items.Add(new ItemData
{
@@ -115,6 +117,19 @@ public class DropService
}
});
break;
case ChestTypeEnum.CHEST_WORLD_FOUR:
items.Add(new ItemData
{
ItemId = 120004,
Count = level switch
{
ChestTypeEnum.CHEST_LOW_LEVEL => 60,
ChestTypeEnum.CHEST_MIDDLE_LEVEL => 90,
ChestTypeEnum.CHEST_HIGH_LEVEL => 120,
_ => 60
}
});
break;
}
items.Add(new ItemData