Minecraft: dragon egg shards

This commit is contained in:
espeon65536
2021-08-06 17:18:28 -05:00
committed by Fabian Dill
parent b43e99fa20
commit 72acb5509a
5 changed files with 29 additions and 6 deletions

View File

@@ -20,6 +20,11 @@ class BeeTraps(Range):
range_end = 100
class EggShards(Range):
range_start = 0
range_end = 30
minecraft_options: typing.Dict[str, type(Option)] = {
"advancement_goal": AdvancementGoal,
"combat_difficulty": CombatDifficulty,
@@ -28,5 +33,7 @@ minecraft_options: typing.Dict[str, type(Option)] = {
"include_postgame_advancements": Toggle,
"shuffle_structures": Toggle,
"structure_compasses": Toggle,
"bee_traps": BeeTraps
"bee_traps": BeeTraps,
"egg_shards_required": EggShards,
"egg_shards_available": EggShards
}