Initial HSMappy release (fork of Mappy)

Made-with: Cursor
This commit is contained in:
2026-02-26 03:54:51 -05:00
commit 9659f7a7d1
72 changed files with 6625 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
using Mappy.Classes;
namespace Mappy.Modules;
public class TripleTriadModule : ModuleBase
{
public override bool ProcessMarker(MarkerInfo markerInfo)
{
if (markerInfo is not { ObjectiveId: { } objectiveId }) return false;
if (!System.TripleTriadCache.GetValue(objectiveId)) return false;
markerInfo.SecondaryText = () => System.CardRewardCache.GetValue(objectiveId) ?? string.Empty;
return true;
}
}