cull(engine-cleanup): pass-8 phase-2 cascade round 2 after MyPageItemHome stub

This commit is contained in:
gamer147
2026-07-03 22:00:30 -04:00
parent 6cf95bcfd6
commit e9b112d083
52 changed files with 6 additions and 2562 deletions

View File

@@ -8,9 +8,6 @@ public class ArenaColosseum : ArenaEntryDataBase
{
public enum eRound
{
FinalNotAdvance = -1,
Undecided = 6,
Lose = 7
}
public enum eStageNo
@@ -19,8 +16,6 @@ public class ArenaColosseum : ArenaEntryDataBase
public enum eEntryStatus
{
TwoPickClassSelect = 1,
SetUpComplete
}
public enum eRule
@@ -64,40 +59,12 @@ public class ArenaColosseum : ArenaEntryDataBase
private bool _isRankMatching;
public bool CanUseNonPossessionCard;
public bool IsColosseumPeriod { get; set; }
public bool IsRoundPeriod { get; set; }
public eEntryStatus EntryStatus { get; set; }
public Format DeckFormat { get; set; }
public eRule Rule { get; set; }
public bool IsNormalTwoPick { get; set; }
public int ChaosNum { get; set; }
public bool IsTwoPickRule
{
get
{
if (Rule != eRule.TwoPick)
{
return Rule == eRule.TwoPickChaos;
}
return true;
}
}
public bool NeedsFirstTips { get; set; }
public int ColosseumId { get; set; }
public int ChaoseTipsId { get; set; }
public bool IsRankMatching
{
get
@@ -119,26 +86,10 @@ public class ArenaColosseum : ArenaEntryDataBase
public List<DeckData> DeckList { get; set; }
public eRound Round { get; set; }
public int ServerRoundId { get; set; }
public eStageNo StageNo { get; set; }
public string Name { get; set; }
public List<ReceivedReward> RewardList { get; set; }
public eResultEffect ResultEffect { get; set; }
public string ColorCodeId { get; set; }
public string CardPool { get; set; }
public int RetryRemainingNum { get; set; }
public bool IsDeckEntry { get; set; }
public bool IsFreeEntry
{
get
@@ -151,26 +102,6 @@ public class ArenaColosseum : ArenaEntryDataBase
}
}
public bool IsRetry { get; set; }
public bool IsLastDay { get; set; }
public bool IsClear { get; set; }
public bool IsDeckDeleted { get; set; }
public bool IsFinalRoundTry { get; set; }
public eRound NextRound { get; set; }
public double RemainingUnixTime { get; set; }
public float RemainingSinceTime { get; set; }
public double RemainingServerUnixTime { get; set; }
public string NowRoundTimeText { get; set; }
public Detail[] DetailData { get; set; }
public List<bool> BattleResultList { get; set; }
@@ -193,11 +124,4 @@ public class ArenaColosseum : ArenaEntryDataBase
TwoPickData.CandidateCard = new CandidateCardInfo();
TwoPickData.CandidateChaos = new CandidateChaos();
}
public void ApiRuleParseAndSet(int apiRule)
{
ArenaColosseum colosseumData = Data.ArenaData.ColosseumData;
colosseumData.Rule = (eRule)apiRule;
colosseumData.DeckFormat = ArenaData.ApiDeckFormatParse(colosseumData.Rule);
}
}