提升品质

This commit is contained in:
milimoe 2025-06-26 01:10:25 +08:00
parent 01db2fa927
commit 591175b781
Signed by: milimoe
GPG Key ID: 9554D37E4B8991D0
2 changed files with 16 additions and 10 deletions

View File

@ -5,6 +5,7 @@ using Milimoe.FunGame.Core.Entity;
using Milimoe.FunGame.Core.Library.Constant;
using Milimoe.FunGame.Testing.Tests;
using Oshima.FunGame.OshimaModules;
using Oshima.FunGame.OshimaModules.Regions;
using Oshima.FunGame.OshimaServers.Service;
using Oshima.FunGame.WebAPI.Controllers;
@ -97,6 +98,11 @@ foreach (Item i in FunGameConstant.Equipment)
Console.WriteLine(builder.ToString());
}
Console.ReadKey();
foreach (OshimaRegion region in FunGameConstant.Regions.Union(FunGameConstant.PlayerRegions))
{
Console.WriteLine(region.ToString());
}
Console.ReadKey();
//Dictionary<int, RoundRecord> rounds = FunGameSimulation.ReadRoundsFromZip("rounds_archive.zip") ?? [];
//Console.WriteLine(rounds.Count);

View File

@ -126,23 +126,23 @@ namespace Milimoe.FunGame.Testing.Tests
WriteLine("");
if (isWeb) result.Add("=== 空投 ===\r\n" + Msg);
double nextDropItemTime = 40;
if (qMagicCardPack < 4)
if (qMagicCardPack < 5)
{
qMagicCardPack++;
}
if (qWeapon < 4)
if (qWeapon < 5)
{
qWeapon++;
}
if (qArmor < 1)
if (qArmor < 5)
{
qArmor++;
}
if (qShoes < 1)
if (qShoes < 5)
{
qShoes++;
}
if (qAccessory < 3)
if (qAccessory < 5)
{
qAccessory++;
}
@ -258,23 +258,23 @@ namespace Milimoe.FunGame.Testing.Tests
WriteLine("");
if (isWeb) result.Add("=== 空投 ===\r\n" + Msg);
nextDropItemTime = 40;
if (qMagicCardPack < 4)
if (qMagicCardPack < 5)
{
qMagicCardPack++;
}
if (qWeapon < 4)
if (qWeapon < 5)
{
qWeapon++;
}
if (qArmor < 1)
if (qArmor < 5)
{
qArmor++;
}
if (qShoes < 1)
if (qShoes < 5)
{
qShoes++;
}
if (qAccessory < 3)
if (qAccessory < 5)
{
qAccessory++;
}