mirror of
https://github.com/milimoe/FunGame-Testing.git
synced 2025-12-05 00:06:05 +00:00
提升品质
This commit is contained in:
parent
01db2fa927
commit
591175b781
@ -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);
|
||||
|
||||
@ -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++;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user