Continues implementation

This commit is contained in:
2025-05-20 22:05:16 +02:00
parent 38ada274e3
commit dd1697902a
365 changed files with 142568 additions and 122351 deletions

View File

@@ -0,0 +1,13 @@
package ch.gtache.elderscrollslegends.client;
import java.util.List;
public record JSONChapterEvent(JSONResourceId ResourceId, boolean Production, List<JSONScenario> GatedScenarios,
JSONPosition Position, JSONModal IntroModal, JSONModal EndingModal,
String CoinImage, String RewardsBundleKey, String MasterRewardsBundleKey,
int NormalCardRewardUiCount, int MasterCardRewardUiCount,
String IntroFirstChoiceRewardsBundleKey, String IntroFirstChoiceMasterRewardsBundleKey,
String IntroSecondChoiceRewardsBundleKey, String IntroSecondChoiceMasterRewardsBundleKey,
boolean IsHiddenFromMap, List<JSONRequiredOutcome> RequiredOutcomes,
List<JSONRequiredOutcome> AltRequiredOutcomes) {
}