Skip to content

Commit

Permalink
renamed encounter names for KO and XJJ
Browse files Browse the repository at this point in the history
  • Loading branch information
EliphasNUIT committed Aug 30, 2023
1 parent 9a5348a commit ce81aa3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,11 @@ protected override List<int> GetSuccessCheckIDs()
};
}

internal override string GetLogicName(CombatData combatData, AgentData agentData)
{
return "Kaineng Overlook";
}

protected override List<ArcDPSEnums.TrashID> GetTrashMobsIDs()
{
return new List<ArcDPSEnums.TrashID>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ public XunlaiJadeJunkyard(int triggerID) : base(triggerID)
EncounterID |= 0x000002;
}

internal override string GetLogicName(CombatData combatData, AgentData agentData)
{
return "Xunlai Jade Junkyard";
}

protected override CombatReplayMap GetCombatMapInternal(ParsedEvtcLog log)
{
return new CombatReplayMap(CombatReplayXunlaiJadeJunkyard,
Expand Down

0 comments on commit ce81aa3

Please sign in to comment.