Update baserom, add creation timestamp to seed fetch results
This commit is contained in:
@@ -33,6 +33,11 @@
|
||||
[NoSettingName([Apr2025])]
|
||||
public EntryRequirement CrystalsGT { get; set; } = EntryRequirement.Crystals7;
|
||||
|
||||
[SettingName("ganon_item")]
|
||||
[RequiredSetting([Apr2025], GanonItem.Silver)]
|
||||
[NoSettingName([Apr2025])]
|
||||
public GanonItem GanonItem { get; set; } = GanonItem.Silver;
|
||||
|
||||
[SettingName("shuffle")]
|
||||
[ForbiddenSetting([Apr2025], EntranceShuffle.Swapped)]
|
||||
public EntranceShuffle EntranceShuffle { get; set; } = EntranceShuffle.Vanilla;
|
||||
@@ -57,6 +62,11 @@
|
||||
[NoSettingName([Apr2025])]
|
||||
public EnemyShuffle EnemyShuffle { get; set; } = EnemyShuffle.Vanilla;
|
||||
|
||||
[SettingName("shuffle_damage_table")]
|
||||
[RequiredSetting([Apr2025], DamageTableShuffle.Vanilla)]
|
||||
[NoSettingName([Apr2025])]
|
||||
public DamageTableShuffle DamageTableShuffle { get; set; } = DamageTableShuffle.Vanilla;
|
||||
|
||||
[SettingName("keyshuffle")]
|
||||
[RequiredSetting([Apr2025], KeyLocations.Dungeon, KeyLocations.Wild)]
|
||||
[NoSettingName([Apr2025])]
|
||||
@@ -135,6 +145,10 @@
|
||||
[RequiredSetting([Apr2025], FollowerShuffle.Vanilla)]
|
||||
public FollowerShuffle FollowerShuffle { get; set; } = FollowerShuffle.Vanilla;
|
||||
|
||||
[SettingName("damage_challenge")]
|
||||
[NoSettingName([Apr2025])]
|
||||
public DamageChallengeMode DamageChallenge { get; set; } = DamageChallengeMode.Normal;
|
||||
|
||||
[NoSettingName]
|
||||
public Hints Hints { get; set; } = Hints.Off;
|
||||
}
|
||||
@@ -186,6 +200,24 @@
|
||||
Random,
|
||||
}
|
||||
|
||||
public enum GanonItem {
|
||||
Silver,
|
||||
Boomerang,
|
||||
Hookshot,
|
||||
Powder,
|
||||
[SettingName("fire_rod")] FireRod,
|
||||
[SettingName("ice_rod")] IceRod,
|
||||
Bombos,
|
||||
Ether,
|
||||
Quake,
|
||||
Hammer,
|
||||
Bee,
|
||||
Somaria,
|
||||
Byrna,
|
||||
Random,
|
||||
None,
|
||||
}
|
||||
|
||||
public enum EntranceShuffle {
|
||||
Vanilla,
|
||||
Full,
|
||||
@@ -221,6 +253,11 @@
|
||||
Mimics,
|
||||
}
|
||||
|
||||
public enum DamageTableShuffle {
|
||||
Vanilla,
|
||||
Randomized,
|
||||
}
|
||||
|
||||
public enum KeyLocations {
|
||||
[SettingName("none")] Dungeon,
|
||||
[AdditionalSetting([Apr2025], "--keysanity")] Wild,
|
||||
@@ -325,6 +362,12 @@
|
||||
[AdditionalSetting("--shuffle_followers")] Shuffled,
|
||||
}
|
||||
|
||||
public enum DamageChallengeMode {
|
||||
Normal,
|
||||
OHKO,
|
||||
Gloom,
|
||||
}
|
||||
|
||||
public enum Hints {
|
||||
Off,
|
||||
[AdditionalSetting("--hints")] On,
|
||||
|
||||
Reference in New Issue
Block a user