├── .gitignore ├── .python-version ├── .vscode └── launch.json ├── README.md ├── app.py ├── assets ├── fig2.png ├── optimus.png └── table1.png ├── minerl ├── .classpath ├── .gitattributes ├── .gitignore ├── .readthedocs.yml ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs │ ├── Makefile │ ├── README.md │ ├── build_and_view.sh │ ├── make.bat │ └── source │ │ ├── _static │ │ └── custom.css │ │ ├── _templates │ │ └── page.html │ │ ├── assets │ │ ├── MineRL_banner_sq.PNG │ │ ├── anim.gif │ │ ├── basalt │ │ │ ├── animal_pen_plains2_0-30.gif │ │ │ ├── animal_pen_plains3_0-30.gif │ │ │ ├── animal_pen_plains4_0-05.gif │ │ │ ├── animal_pen_plains4_0-30.gif │ │ │ ├── animal_pen_village1_1-00.gif │ │ │ ├── animal_pen_village3_0-30.gif │ │ │ ├── animal_pen_village4_0-05.gif │ │ │ ├── animal_pen_village4_1-00.gif │ │ │ ├── caves1_0-05.gif │ │ │ ├── caves3_0-30.gif │ │ │ ├── caves4_0-30.gif │ │ │ ├── caves5_0-30.gif │ │ │ ├── house_0_0-05.gif │ │ │ ├── house_1_0-30.gif │ │ │ ├── house_3_1-00.gif │ │ │ ├── house_long_7-00.gif │ │ │ ├── waterfall0_0-05.gif │ │ │ ├── waterfall2_0-30.gif │ │ │ ├── waterfall6_0-30.gif │ │ │ └── waterfall8_0-30.gif │ │ ├── block.png │ │ ├── compass_angle.png │ │ ├── compass_angle_better.png │ │ ├── cropped_viewer.gif │ │ ├── demo.gif │ │ ├── inventory.jpg │ │ ├── minerl_viewer.gif │ │ ├── mlg_water_bucket.gif │ │ ├── navigate1.mp4.gif │ │ ├── navigate2.mp4.gif │ │ ├── navigate3.mp4.gif │ │ ├── navigate4.mp4.gif │ │ ├── navigateextreme1.mp4.gif │ │ ├── navigateextreme2.mp4.gif │ │ ├── navigateextreme3.mp4.gif │ │ ├── navigateextreme4.mp4.gif │ │ ├── net_reward.png │ │ ├── odia1.mp4.gif │ │ ├── odia2.mp4.gif │ │ ├── odia3.mp4.gif │ │ ├── odia4.mp4.gif │ │ ├── orion1.mp4.gif │ │ ├── orion2.mp4.gif │ │ ├── orion3.mp4.gif │ │ ├── orion4.mp4.gif │ │ ├── real_wb_success.gif │ │ ├── survival1.mp4.gif │ │ ├── survival2.mp4.gif │ │ ├── survival3.mp4.gif │ │ ├── survival4.mp4.gif │ │ ├── survival5.mp4.gif │ │ ├── survival6.mp4.gif │ │ ├── survival7.mp4.gif │ │ ├── survival8.mp4.gif │ │ ├── thispersonisnotreal.jpeg │ │ ├── treechop1.mp4.gif │ │ ├── treechop2.mp4.gif │ │ ├── treechop3.mp4.gif │ │ └── treechop4.mp4.gif │ │ ├── conf.py │ │ ├── environments │ │ ├── basalt.rst │ │ ├── diamond.rst │ │ └── index.rst │ │ ├── index.rst │ │ ├── notes │ │ ├── faq.rst │ │ ├── interfaces.rst │ │ ├── performance-tips.rst │ │ ├── useful-links.rst │ │ ├── versions.rst │ │ └── windows.rst │ │ └── tutorials │ │ ├── first_agent.rst │ │ ├── index.rst │ │ ├── minerl_tools.rst │ │ └── more_tutorials.rst ├── minerl │ ├── Malmo │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .gitrepo │ │ ├── LICENSE.txt │ │ ├── Minecraft │ │ │ ├── CMakeLists.txt │ │ │ ├── CREDITS-fml.txt │ │ │ ├── LICENSE-new.txt │ │ │ ├── MinecraftForge-Credits.txt │ │ │ ├── Paulscode IBXM Library License.txt │ │ │ ├── Paulscode SoundSystem CodecIBXM License.txt │ │ │ ├── README.txt │ │ │ ├── build.gradle │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── launchClient.bat │ │ │ ├── launchClient.sh │ │ │ ├── launch_minecraft_in_background.py │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── microsoft │ │ │ │ │ └── Malmo │ │ │ │ │ ├── Client │ │ │ │ │ ├── ClientState.java │ │ │ │ │ ├── ClientStateMachine.java │ │ │ │ │ ├── FakeKeyboard.java │ │ │ │ │ ├── FakeMouse.java │ │ │ │ │ ├── FakeMouseCursor.java │ │ │ │ │ ├── InternalKey.java │ │ │ │ │ ├── KeyManager.java │ │ │ │ │ ├── MalmoEnvServer.java │ │ │ │ │ ├── MalmoModClient.java │ │ │ │ │ ├── PostRenderEvent.java │ │ │ │ │ ├── VideoHook.java │ │ │ │ │ └── VideoProducedObserver.java │ │ │ │ │ ├── EpisodeEventWrapper.java │ │ │ │ │ ├── IState.java │ │ │ │ │ ├── Launcher │ │ │ │ │ ├── GradleForgeHacks.java │ │ │ │ │ ├── GradleStart.java │ │ │ │ │ ├── GradleStartCommon.java │ │ │ │ │ ├── GradleStartServer.java │ │ │ │ │ └── tweakers │ │ │ │ │ │ ├── AccessTransformerTweaker.java │ │ │ │ │ │ └── CoremodTweaker.java │ │ │ │ │ ├── MalmoMod.java │ │ │ │ │ ├── MalmoModGuiOptions.java │ │ │ │ │ ├── MissionHandlerInterfaces │ │ │ │ │ ├── IAudioProducer.java │ │ │ │ │ ├── ICommandHandler.java │ │ │ │ │ ├── IObservationProducer.java │ │ │ │ │ ├── IPerformanceProducer.java │ │ │ │ │ ├── IRewardProducer.java │ │ │ │ │ ├── IVideoProducer.java │ │ │ │ │ ├── IWantToQuit.java │ │ │ │ │ ├── IWorldDecorator.java │ │ │ │ │ └── IWorldGenerator.java │ │ │ │ │ ├── MissionHandlers │ │ │ │ │ ├── AbsoluteMovementCommandsImplementation.java │ │ │ │ │ ├── AgentQuitFromCatchingMobImplementation.java │ │ │ │ │ ├── AgentQuitFromCollectingItemImplementation.java │ │ │ │ │ ├── AgentQuitFromCollectingItemQuantityImplementation.java │ │ │ │ │ ├── AgentQuitFromCraftingItemImplementation.java │ │ │ │ │ ├── AgentQuitFromPossessingItemImplementation.java │ │ │ │ │ ├── AgentQuitFromReachingCommandQuotaImplementation.java │ │ │ │ │ ├── AgentQuitFromReachingPositionImplementation.java │ │ │ │ │ ├── AgentQuitFromSmeltingItemImplementation.java │ │ │ │ │ ├── AgentQuitFromTimeUpImplementation.java │ │ │ │ │ ├── AgentQuitFromTouchingBlockTypeImplementation.java │ │ │ │ │ ├── AnimationDecoratorImplementation.java │ │ │ │ │ ├── BiomeGeneratorImplementation.java │ │ │ │ │ ├── BuildBattleDecoratorImplementation.java │ │ │ │ │ ├── CameraCommandsImplementation.java │ │ │ │ │ ├── ChatCommandsImplementation.java │ │ │ │ │ ├── ClassroomDecoratorImplementation.java │ │ │ │ │ ├── ColourMapProducerImplementation.java │ │ │ │ │ ├── CommandBase.java │ │ │ │ │ ├── CommandForAttackAndUseImplementation.java │ │ │ │ │ ├── CommandForHotBarKeysImplementation.java │ │ │ │ │ ├── CommandForKey.java │ │ │ │ │ ├── CommandForWheeledRobotNavigationImplementation.java │ │ │ │ │ ├── CommandGroup.java │ │ │ │ │ ├── ContinuousMovementCommandsImplementation.java │ │ │ │ │ ├── DefaultWorldGeneratorImplementation.java │ │ │ │ │ ├── DepthProducerImplementation.java │ │ │ │ │ ├── DiscreteMovementCommandsImplementation.java │ │ │ │ │ ├── DrawingDecoratorImplementation.java │ │ │ │ │ ├── EquipCommandsImplementation.java │ │ │ │ │ ├── FileBasedPerformanceProducerImplementation.java │ │ │ │ │ ├── FileWorldGeneratorImplementation.java │ │ │ │ │ ├── FlatWorldGeneratorImplementation.java │ │ │ │ │ ├── HandlerBase.java │ │ │ │ │ ├── HumanLevelCommandsImplementation.java │ │ │ │ │ ├── InventoryCommandsImplementation.java │ │ │ │ │ ├── LuminanceProducerImplementation.java │ │ │ │ │ ├── MarkingDecoratorImplementation.java │ │ │ │ │ ├── MazeDecoratorImplementation.java │ │ │ │ │ ├── MissionBehaviour.java │ │ │ │ │ ├── MissionQuitCommandsImplementation.java │ │ │ │ │ ├── MovingTargetDecoratorImplementation.java │ │ │ │ │ ├── MultidimensionalReward.java │ │ │ │ │ ├── NavigationDecoratorImplementation.java │ │ │ │ │ ├── NearbyCraftCommandsImplementation.java │ │ │ │ │ ├── NearbySmeltCommandsImplementation.java │ │ │ │ │ ├── ObservationFromAchievementsImplementation.java │ │ │ │ │ ├── ObservationFromChatImplementation.java │ │ │ │ │ ├── ObservationFromCompassImplementation.java │ │ │ │ │ ├── ObservationFromComposite.java │ │ │ │ │ ├── ObservationFromDiscreteCellImplementation.java │ │ │ │ │ ├── ObservationFromDistanceImplementation.java │ │ │ │ │ ├── ObservationFromEquippedItemImplementation.java │ │ │ │ │ ├── ObservationFromFullInventoryImplementation.java │ │ │ │ │ ├── ObservationFromFullStatsImplementation.java │ │ │ │ │ ├── ObservationFromGridImplementation.java │ │ │ │ │ ├── ObservationFromHotBarImplementation.java │ │ │ │ │ ├── ObservationFromHumanImplementation.java │ │ │ │ │ ├── ObservationFromNearbyEntitiesImplementation.java │ │ │ │ │ ├── ObservationFromRayImplementation.java │ │ │ │ │ ├── ObservationFromRecentCommandsImplementation.java │ │ │ │ │ ├── ObservationFromServer.java │ │ │ │ │ ├── ObservationFromSubgoalPositionListImplementation.java │ │ │ │ │ ├── ObservationFromSystemImplementation.java │ │ │ │ │ ├── ObservationFromTurnSchedulerImplementation.java │ │ │ │ │ ├── PauseCommandImplementation.java │ │ │ │ │ ├── PlaceCommandsImplementation.java │ │ │ │ │ ├── QuitFromComposite.java │ │ │ │ │ ├── QuitFromTimeUpBase.java │ │ │ │ │ ├── RandomizedStartDecoratorImplementation.java │ │ │ │ │ ├── RewardBase.java │ │ │ │ │ ├── RewardForCatchingMobImplementation.java │ │ │ │ │ ├── RewardForCollectingItemImplementation.java │ │ │ │ │ ├── RewardForCollectingItemQuantityImplementation.java │ │ │ │ │ ├── RewardForCraftingItemImplementation.java │ │ │ │ │ ├── RewardForDamagingEntityImplementation.java │ │ │ │ │ ├── RewardForDiscardingItemImplementation.java │ │ │ │ │ ├── RewardForDistanceTraveledToCompassTargetImplementation.java │ │ │ │ │ ├── RewardForItemBase.java │ │ │ │ │ ├── RewardForMissionEndImplementation.java │ │ │ │ │ ├── RewardForPossessingItemImplementation.java │ │ │ │ │ ├── RewardForReachingPositionImplementation.java │ │ │ │ │ ├── RewardForSendingCommandImplementation.java │ │ │ │ │ ├── RewardForSendingMatchingChatMessageImplementation.java │ │ │ │ │ ├── RewardForSmeltingItemImplementation.java │ │ │ │ │ ├── RewardForStructureCopyingImplementation.java │ │ │ │ │ ├── RewardForTimeTakenImplementation.java │ │ │ │ │ ├── RewardForTouchingBlockTypeImplementation.java │ │ │ │ │ ├── RewardFromTeamImplementation.java │ │ │ │ │ ├── RewardGroup.java │ │ │ │ │ ├── ServerQuitFromTimeUpImplementation.java │ │ │ │ │ ├── ServerQuitWhenAnyAgentFinishesImplementation.java │ │ │ │ │ ├── SimpleCraftCommandsImplementation.java │ │ │ │ │ ├── SnakeDecoratorImplementation.java │ │ │ │ │ ├── TurnBasedCommandsImplementation.java │ │ │ │ │ ├── VideoProducerImplementation.java │ │ │ │ │ └── WorldFromComposite.java │ │ │ │ │ ├── MixinTextureHandler.java │ │ │ │ │ ├── Mixins │ │ │ │ │ ├── MixinDisplay.java │ │ │ │ │ ├── MixinEntityRandom.java │ │ │ │ │ ├── MixinKeyboard.java │ │ │ │ │ ├── MixinLargeInventory.java │ │ │ │ │ ├── MixinMinecraftGameloop.java │ │ │ │ │ ├── MixinMinecraftServerRun.java │ │ │ │ │ ├── MixinMouse.java │ │ │ │ │ ├── MixinNoGuiInteract.java │ │ │ │ │ ├── MixinRandomSkinTexture.java │ │ │ │ │ ├── MixinSyncClientStats.java │ │ │ │ │ └── MixinWorldProviderSpawn.java │ │ │ │ │ ├── OverclockingClassTransformer.java │ │ │ │ │ ├── OverclockingPlugin.java │ │ │ │ │ ├── Schemas │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── README.txt │ │ │ │ │ ├── Server │ │ │ │ │ ├── MalmoModServer.java │ │ │ │ │ ├── ServerState.java │ │ │ │ │ └── ServerStateMachine.java │ │ │ │ │ ├── StateEpisode.java │ │ │ │ │ ├── StateMachine.java │ │ │ │ │ ├── TestLogHandler.java │ │ │ │ │ └── Utils │ │ │ │ │ ├── AddressHelper.java │ │ │ │ │ ├── AnimationDrawingHelper.java │ │ │ │ │ ├── AuthenticationHelper.java │ │ │ │ │ ├── BlockDrawingHelper.java │ │ │ │ │ ├── CraftingHelper.java │ │ │ │ │ ├── Discrete.java │ │ │ │ │ ├── EnvironmentHelper.java │ │ │ │ │ ├── EvaluationHelper.java │ │ │ │ │ ├── JSONWorldDataHelper.java │ │ │ │ │ ├── LogHelper.java │ │ │ │ │ ├── MapFileHelper.java │ │ │ │ │ ├── MinecraftTypeHelper.java │ │ │ │ │ ├── PauseTimer.java │ │ │ │ │ ├── PerformanceHelper.java │ │ │ │ │ ├── PositionHelper.java │ │ │ │ │ ├── SchemaHelper.java │ │ │ │ │ ├── ScoreHelper.java │ │ │ │ │ ├── ScreenHelper.java │ │ │ │ │ ├── SeedHelper.java │ │ │ │ │ ├── TCPInputPoller.java │ │ │ │ │ ├── TCPSocketChannel.java │ │ │ │ │ ├── TCPUtils.java │ │ │ │ │ ├── TextureHelper.java │ │ │ │ │ ├── TimeHelper.java │ │ │ │ │ └── WrappedTimer.java │ │ │ │ └── resources │ │ │ │ ├── .fuse_hidden0002b4de00000048 │ │ │ │ ├── .gitignore │ │ │ │ ├── README.txt │ │ │ │ ├── annotate.fsh │ │ │ │ ├── annotate.vsh │ │ │ │ ├── assets │ │ │ │ └── MalmoMod │ │ │ │ │ └── lang │ │ │ │ │ └── en_US.lang │ │ │ │ ├── lum.fsh │ │ │ │ ├── lum.vsh │ │ │ │ ├── malmomod_at.cfg │ │ │ │ ├── mcmod.info │ │ │ │ ├── mixins.overclocking.malmomod.json │ │ │ │ ├── schemas.index │ │ │ │ └── version.properties │ │ ├── README.md │ │ ├── Schemas │ │ │ ├── CMakeLists.txt │ │ │ ├── MinecraftBlocks.txt │ │ │ ├── MinecraftItems.txt │ │ │ ├── Mission.xsd │ │ │ ├── MissionEnded.xsd │ │ │ ├── MissionHandlers.xsd │ │ │ ├── MissionInit.xsd │ │ │ ├── Types.xsd │ │ │ ├── Types.xsd.in │ │ │ ├── items.json │ │ │ └── links.xml │ │ ├── VERSION │ │ ├── changelog.txt │ │ ├── doc │ │ │ ├── CMakeLists.txt │ │ │ ├── Doxyfile.in │ │ │ ├── build_linux.md │ │ │ ├── build_macosx.md │ │ │ ├── build_windows.md │ │ │ ├── cmake_readme.md │ │ │ ├── install_linux.md │ │ │ ├── install_macosx.md │ │ │ ├── install_readme.md │ │ │ ├── install_windows.md │ │ │ ├── install_windows_manual.md │ │ │ ├── jar_readme.md │ │ │ └── readme.html │ │ └── malmo.properties │ ├── __init__.py │ ├── env │ │ ├── __init__.py │ │ ├── _fake.py │ │ ├── _multiagent.py │ │ ├── _singleagent.py │ │ ├── comms.py │ │ ├── exceptions.py │ │ ├── info.npz │ │ ├── malmo.py │ │ ├── recording.py │ │ ├── replay_wrapper.py │ │ └── test_fake_env.py │ ├── herobraine │ │ ├── __init__.py │ │ ├── data │ │ │ └── pipeline_with_reward.py │ │ ├── env_spec.py │ │ ├── env_specs │ │ │ ├── __init__.py │ │ │ ├── basalt_specs.py │ │ │ ├── equip_weapon_specs.py │ │ │ ├── human_controls.py │ │ │ ├── human_survival_specs.py │ │ │ ├── navigate_specs.py │ │ │ ├── obfuscators │ │ │ │ └── comp │ │ │ │ │ ├── size │ │ │ │ │ ├── v2 │ │ │ │ │ ├── action.secret.compat │ │ │ │ │ ├── obs.secret.compat │ │ │ │ │ └── size │ │ │ │ │ └── v3 │ │ │ │ │ ├── act.secret.compat.npz │ │ │ │ │ ├── obs.secret.compat.npz │ │ │ │ │ └── size │ │ │ ├── obtain_specs.py │ │ │ ├── simple_embodiment.py │ │ │ ├── survival_specs.py │ │ │ ├── test │ │ │ │ ├── README.mD │ │ │ │ ├── navigation.xml │ │ │ │ ├── navigationDense.xml │ │ │ │ ├── navigationDenseFixedMap.xml │ │ │ │ ├── navigationExtreme.xml │ │ │ │ ├── navigationExtremeDense.xml │ │ │ │ ├── obtainDebug.xml │ │ │ │ ├── obtainDebugDense.xml │ │ │ │ ├── obtainDiamond.xml │ │ │ │ ├── obtainDiamondDense.xml │ │ │ │ ├── obtainIronPickaxe.xml │ │ │ │ ├── obtainIronPickaxeDense.xml │ │ │ │ ├── treechop.xml │ │ │ │ └── treechopDebug.xml │ │ │ ├── test_env_regressions.py │ │ │ └── treechop_specs.py │ │ ├── envs.py │ │ ├── hero │ │ │ ├── __init__.py │ │ │ ├── handler.py │ │ │ ├── handlers │ │ │ │ ├── __init__.py │ │ │ │ ├── agent │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── action.py │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── camera.py │ │ │ │ │ │ ├── craft.py │ │ │ │ │ │ ├── equip.py │ │ │ │ │ │ ├── keyboard.py │ │ │ │ │ │ ├── mousewheel.py │ │ │ │ │ │ ├── place.py │ │ │ │ │ │ └── smelt.py │ │ │ │ │ ├── misc.py │ │ │ │ │ ├── observations │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── compass.py │ │ │ │ │ │ ├── equipped_item.py │ │ │ │ │ │ ├── guicontainer.py │ │ │ │ │ │ ├── inventory.py │ │ │ │ │ │ ├── is_gui_open.py │ │ │ │ │ │ ├── lifestats.py │ │ │ │ │ │ ├── location_stats.py │ │ │ │ │ │ ├── mc_base_stats.py │ │ │ │ │ │ └── pov.py │ │ │ │ │ ├── quit.py │ │ │ │ │ ├── reward.py │ │ │ │ │ └── start.py │ │ │ │ ├── server │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── misc.py │ │ │ │ │ ├── navigation.py │ │ │ │ │ ├── quit.py │ │ │ │ │ ├── start.py │ │ │ │ │ └── world.py │ │ │ │ ├── test_handlers.py │ │ │ │ ├── translation.py │ │ │ │ └── util.py │ │ │ ├── mc.py │ │ │ ├── mc_constants.1.16.json │ │ │ ├── mc_constants.json │ │ │ ├── mission.xml.j2 │ │ │ ├── spaces.py │ │ │ └── test_spaces.py │ │ ├── test_env_spec.py │ │ ├── wrapper.py │ │ └── wrappers │ │ │ ├── __init__.py │ │ │ ├── compat_v0.py │ │ │ ├── obfuscation_wrapper.py │ │ │ ├── test_util.py │ │ │ ├── test_wrappers.py │ │ │ ├── util.py │ │ │ └── vector_wrapper.py │ ├── human_play_interface │ │ ├── __init__.py │ │ └── human_play_interface.py │ ├── interactor │ │ ├── __init__.py │ │ └── __main__.py │ └── utils │ │ ├── __init__.py │ │ ├── documentation.py │ │ ├── launch.py │ │ ├── process_watcher.py │ │ └── test.py ├── pytest.ini ├── requirements.txt ├── scripts │ ├── create_mcp_patch.sh │ ├── cursors │ │ ├── mouse_cursor_white_16x16.png │ │ ├── mouse_cursor_white_4x4.png │ │ └── mouse_cursor_white_8x8.png │ ├── env_pics.py │ ├── launch_instance_manager.py │ ├── mcp_patch.diff │ ├── patch_mcp.sh │ ├── setup_intellij.sh │ └── setup_mcp.sh ├── setup.py └── tests │ ├── basic_test.py │ ├── env │ ├── rendering_ground_truth.png │ └── test_turn.py │ ├── excluded │ ├── ai_crowd_env_render_test.py │ ├── ai_crowd_specified_seed_test.py │ ├── detach_test.py │ ├── early_quitting_test.py │ ├── existing_env_test.py │ ├── fake_speed_test.py │ ├── max_instances_test.py │ ├── minecraft_process_test.py │ ├── multiple_env_test.py │ ├── navigate_above_water_test.py │ ├── navigate_dqn_test.py │ ├── no_op_test.py │ ├── remote_max_instances_test.py │ ├── robustness_test.py │ ├── seed_test.py │ ├── simple_basalt_test.py │ ├── simple_env_test.py │ ├── simple_treechop_test.py │ ├── simulator_speed_test.py │ ├── treechop_dqn_test.py │ └── treechop_handler_test.py │ ├── local │ └── handler_test.py │ ├── multiagent_test.py │ └── test_human_interface.py ├── pyproject.toml ├── requirements.txt ├── scripts ├── diamond.sh ├── server.sh ├── test.sh └── test_minerl.sh ├── src └── optimus1 │ ├── __init__.py │ ├── conf │ ├── benchmark │ │ ├── armor.yaml │ │ ├── diamond.yaml │ │ ├── golden.yaml │ │ ├── iron.yaml │ │ ├── redstone.yaml │ │ ├── stone.yaml │ │ └── wooden.yaml │ └── evaluate.yaml │ ├── env │ ├── __init__.py │ ├── chat_action.py │ ├── custom_env.py │ ├── inventory_agent_start.py │ ├── mods │ │ ├── __init__.py │ │ ├── mod.py │ │ ├── recorder.py │ │ ├── status.py │ │ └── task_checker.py │ ├── obversation_current_location.py │ ├── plain_inventory.py │ └── wrapper.py │ ├── example.py │ ├── helper │ ├── __init__.py │ ├── helper.py │ ├── jarvis_craft_helper.py │ ├── jarvis_equip_helper.py │ ├── jarvis_smelt_helper.py │ ├── recipes │ │ ├── acacia_boat.json │ │ ├── acacia_button.json │ │ ├── acacia_door.json │ │ ├── acacia_fence.json │ │ ├── acacia_fence_gate.json │ │ ├── acacia_planks.json │ │ ├── acacia_pressure_plate.json │ │ ├── acacia_sign.json │ │ ├── acacia_slab.json │ │ ├── acacia_stairs.json │ │ ├── acacia_trapdoor.json │ │ ├── acacia_wood.json │ │ ├── activator_rail.json │ │ ├── andesite.json │ │ ├── andesite_slab.json │ │ ├── andesite_slab_from_andesite_stonecutting.json │ │ ├── andesite_stairs.json │ │ ├── andesite_stairs_from_andesite_stonecutting.json │ │ ├── andesite_wall.json │ │ ├── andesite_wall_from_andesite_stonecutting.json │ │ ├── anvil.json │ │ ├── armor_dye.json │ │ ├── armor_stand.json │ │ ├── arrow.json │ │ ├── baked_potato.json │ │ ├── baked_potato_from_campfire_cooking.json │ │ ├── baked_potato_from_smoking.json │ │ ├── banner_duplicate.json │ │ ├── barrel.json │ │ ├── beacon.json │ │ ├── beehive.json │ │ ├── beetroot_soup.json │ │ ├── birch_boat.json │ │ ├── birch_button.json │ │ ├── birch_door.json │ │ ├── birch_fence.json │ │ ├── birch_fence_gate.json │ │ ├── birch_planks.json │ │ ├── birch_pressure_plate.json │ │ ├── birch_sign.json │ │ ├── birch_slab.json │ │ ├── birch_stairs.json │ │ ├── birch_trapdoor.json │ │ ├── birch_wood.json │ │ ├── black_banner.json │ │ ├── black_bed.json │ │ ├── black_bed_from_white_bed.json │ │ ├── black_carpet.json │ │ ├── black_carpet_from_white_carpet.json │ │ ├── black_concrete_powder.json │ │ ├── black_dye.json │ │ ├── black_dye_from_wither_rose.json │ │ ├── black_glazed_terracotta.json │ │ ├── black_stained_glass.json │ │ ├── black_stained_glass_pane.json │ │ ├── black_stained_glass_pane_from_glass_pane.json │ │ ├── black_terracotta.json │ │ ├── black_wool.json │ │ ├── blackstone_slab.json │ │ ├── blackstone_slab_from_blackstone_stonecutting.json │ │ ├── blackstone_stairs.json │ │ ├── blackstone_stairs_from_blackstone_stonecutting.json │ │ ├── blackstone_wall.json │ │ ├── blackstone_wall_from_blackstone_stonecutting.json │ │ ├── blast_furnace.json │ │ ├── blaze_powder.json │ │ ├── blue_banner.json │ │ ├── blue_bed.json │ │ ├── blue_bed_from_white_bed.json │ │ ├── blue_carpet.json │ │ ├── blue_carpet_from_white_carpet.json │ │ ├── blue_concrete_powder.json │ │ ├── blue_dye.json │ │ ├── blue_dye_from_cornflower.json │ │ ├── blue_glazed_terracotta.json │ │ ├── blue_ice.json │ │ ├── blue_stained_glass.json │ │ ├── blue_stained_glass_pane.json │ │ ├── blue_stained_glass_pane_from_glass_pane.json │ │ ├── blue_terracotta.json │ │ ├── blue_wool.json │ │ ├── bone_block.json │ │ ├── bone_meal.json │ │ ├── bone_meal_from_bone_block.json │ │ ├── book.json │ │ ├── book_cloning.json │ │ ├── bookshelf.json │ │ ├── bow.json │ │ ├── bowl.json │ │ ├── bread.json │ │ ├── brewing_stand.json │ │ ├── brick.json │ │ ├── brick_slab.json │ │ ├── brick_slab_from_bricks_stonecutting.json │ │ ├── brick_stairs.json │ │ ├── brick_stairs_from_bricks_stonecutting.json │ │ ├── brick_wall.json │ │ ├── brick_wall_from_bricks_stonecutting.json │ │ ├── bricks.json │ │ ├── brown_banner.json │ │ ├── brown_bed.json │ │ ├── brown_bed_from_white_bed.json │ │ ├── brown_carpet.json │ │ ├── brown_carpet_from_white_carpet.json │ │ ├── brown_concrete_powder.json │ │ ├── brown_dye.json │ │ ├── brown_glazed_terracotta.json │ │ ├── brown_stained_glass.json │ │ ├── brown_stained_glass_pane.json │ │ ├── brown_stained_glass_pane_from_glass_pane.json │ │ ├── brown_terracotta.json │ │ ├── brown_wool.json │ │ ├── bucket.json │ │ ├── cake.json │ │ ├── campfire.json │ │ ├── carrot_on_a_stick.json │ │ ├── cartography_table.json │ │ ├── cauldron.json │ │ ├── chain.json │ │ ├── charcoal.json │ │ ├── chest.json │ │ ├── chest_minecart.json │ │ ├── chiseled_nether_bricks.json │ │ ├── chiseled_nether_bricks_from_nether_bricks_stonecutting.json │ │ ├── chiseled_polished_blackstone.json │ │ ├── chiseled_polished_blackstone_from_blackstone_stonecutting.json │ │ ├── chiseled_polished_blackstone_from_polished_blackstone_stonecutting.json │ │ ├── chiseled_quartz_block.json │ │ ├── chiseled_quartz_block_from_quartz_block_stonecutting.json │ │ ├── chiseled_red_sandstone.json │ │ ├── chiseled_red_sandstone_from_red_sandstone_stonecutting.json │ │ ├── chiseled_sandstone.json │ │ ├── chiseled_sandstone_from_sandstone_stonecutting.json │ │ ├── chiseled_stone_bricks.json │ │ ├── chiseled_stone_bricks_from_stone_bricks_stonecutting.json │ │ ├── chiseled_stone_bricks_stone_from_stonecutting.json │ │ ├── clay.json │ │ ├── clock.json │ │ ├── coal.json │ │ ├── coal_block.json │ │ ├── coal_from_blasting.json │ │ ├── coal_from_smelting.json │ │ ├── coarse_dirt.json │ │ ├── cobblestone_slab.json │ │ ├── cobblestone_slab_from_cobblestone_stonecutting.json │ │ ├── cobblestone_stairs.json │ │ ├── cobblestone_stairs_from_cobblestone_stonecutting.json │ │ ├── cobblestone_wall.json │ │ ├── cobblestone_wall_from_cobblestone_stonecutting.json │ │ ├── comparator.json │ │ ├── compass.json │ │ ├── composter.json │ │ ├── conduit.json │ │ ├── cooked_beef.json │ │ ├── cooked_beef_from_campfire_cooking.json │ │ ├── cooked_beef_from_smoking.json │ │ ├── cooked_chicken.json │ │ ├── cooked_chicken_from_campfire_cooking.json │ │ ├── cooked_chicken_from_smoking.json │ │ ├── cooked_cod.json │ │ ├── cooked_cod_from_campfire_cooking.json │ │ ├── cooked_cod_from_smoking.json │ │ ├── cooked_mutton.json │ │ ├── cooked_mutton_from_campfire_cooking.json │ │ ├── cooked_mutton_from_smoking.json │ │ ├── cooked_porkchop.json │ │ ├── cooked_porkchop_from_campfire_cooking.json │ │ ├── cooked_porkchop_from_smoking.json │ │ ├── cooked_rabbit.json │ │ ├── cooked_rabbit_from_campfire_cooking.json │ │ ├── cooked_rabbit_from_smoking.json │ │ ├── cooked_salmon.json │ │ ├── cooked_salmon_from_campfire_cooking.json │ │ ├── cooked_salmon_from_smoking.json │ │ ├── cookie.json │ │ ├── cracked_nether_bricks.json │ │ ├── cracked_polished_blackstone_bricks.json │ │ ├── cracked_stone_bricks.json │ │ ├── crafting_table.json │ │ ├── creeper_banner_pattern.json │ │ ├── crimson_button.json │ │ ├── crimson_door.json │ │ ├── crimson_fence.json │ │ ├── crimson_fence_gate.json │ │ ├── crimson_hyphae.json │ │ ├── crimson_planks.json │ │ ├── crimson_pressure_plate.json │ │ ├── crimson_sign.json │ │ ├── crimson_slab.json │ │ ├── crimson_stairs.json │ │ ├── crimson_trapdoor.json │ │ ├── crossbow.json │ │ ├── cut_red_sandstone.json │ │ ├── cut_red_sandstone_from_red_sandstone_stonecutting.json │ │ ├── cut_red_sandstone_slab.json │ │ ├── cut_red_sandstone_slab_from_cut_red_sandstone_stonecutting.json │ │ ├── cut_red_sandstone_slab_from_red_sandstone_stonecutting.json │ │ ├── cut_sandstone.json │ │ ├── cut_sandstone_from_sandstone_stonecutting.json │ │ ├── cut_sandstone_slab.json │ │ ├── cut_sandstone_slab_from_cut_sandstone_stonecutting.json │ │ ├── cut_sandstone_slab_from_sandstone_stonecutting.json │ │ ├── cyan_banner.json │ │ ├── cyan_bed.json │ │ ├── cyan_bed_from_white_bed.json │ │ ├── cyan_carpet.json │ │ ├── cyan_carpet_from_white_carpet.json │ │ ├── cyan_concrete_powder.json │ │ ├── cyan_dye.json │ │ ├── cyan_glazed_terracotta.json │ │ ├── cyan_stained_glass.json │ │ ├── cyan_stained_glass_pane.json │ │ ├── cyan_stained_glass_pane_from_glass_pane.json │ │ ├── cyan_terracotta.json │ │ ├── cyan_wool.json │ │ ├── dark_oak_boat.json │ │ ├── dark_oak_button.json │ │ ├── dark_oak_door.json │ │ ├── dark_oak_fence.json │ │ ├── dark_oak_fence_gate.json │ │ ├── dark_oak_planks.json │ │ ├── dark_oak_pressure_plate.json │ │ ├── dark_oak_sign.json │ │ ├── dark_oak_slab.json │ │ ├── dark_oak_stairs.json │ │ ├── dark_oak_trapdoor.json │ │ ├── dark_oak_wood.json │ │ ├── dark_prismarine.json │ │ ├── dark_prismarine_slab.json │ │ ├── dark_prismarine_slab_from_dark_prismarine_stonecutting.json │ │ ├── dark_prismarine_stairs.json │ │ ├── dark_prismarine_stairs_from_dark_prismarine_stonecutting.json │ │ ├── daylight_detector.json │ │ ├── detector_rail.json │ │ ├── diamond.json │ │ ├── diamond_axe.json │ │ ├── diamond_block.json │ │ ├── diamond_boots.json │ │ ├── diamond_chestplate.json │ │ ├── diamond_from_blasting.json │ │ ├── diamond_from_smelting.json │ │ ├── diamond_helmet.json │ │ ├── diamond_hoe.json │ │ ├── diamond_leggings.json │ │ ├── diamond_pickaxe.json │ │ ├── diamond_shovel.json │ │ ├── diamond_sword.json │ │ ├── diorite.json │ │ ├── diorite_slab.json │ │ ├── diorite_slab_from_diorite_stonecutting.json │ │ ├── diorite_stairs.json │ │ ├── diorite_stairs_from_diorite_stonecutting.json │ │ ├── diorite_wall.json │ │ ├── diorite_wall_from_diorite_stonecutting.json │ │ ├── dispenser.json │ │ ├── dried_kelp.json │ │ ├── dried_kelp_block.json │ │ ├── dried_kelp_from_campfire_cooking.json │ │ ├── dried_kelp_from_smelting.json │ │ ├── dried_kelp_from_smoking.json │ │ ├── dropper.json │ │ ├── emerald.json │ │ ├── emerald_block.json │ │ ├── emerald_from_blasting.json │ │ ├── emerald_from_smelting.json │ │ ├── enchanting_table.json │ │ ├── end_crystal.json │ │ ├── end_rod.json │ │ ├── end_stone_brick_slab.json │ │ ├── end_stone_brick_slab_from_end_stone_brick_stonecutting.json │ │ ├── end_stone_brick_slab_from_end_stone_stonecutting.json │ │ ├── end_stone_brick_stairs.json │ │ ├── end_stone_brick_stairs_from_end_stone_brick_stonecutting.json │ │ ├── end_stone_brick_stairs_from_end_stone_stonecutting.json │ │ ├── end_stone_brick_wall.json │ │ ├── end_stone_brick_wall_from_end_stone_brick_stonecutting.json │ │ ├── end_stone_brick_wall_from_end_stone_stonecutting.json │ │ ├── end_stone_bricks.json │ │ ├── end_stone_bricks_from_end_stone_stonecutting.json │ │ ├── ender_chest.json │ │ ├── ender_eye.json │ │ ├── fermented_spider_eye.json │ │ ├── fire_charge.json │ │ ├── firework_rocket.json │ │ ├── firework_star.json │ │ ├── fishing_rod.json │ │ ├── fletching_table.json │ │ ├── flint_and_steel.json │ │ ├── flower_banner_pattern.json │ │ ├── flower_pot.json │ │ ├── furnace.json │ │ ├── furnace_minecart.json │ │ ├── glass.json │ │ ├── glass_bottle.json │ │ ├── glass_pane.json │ │ ├── glistering_melon_slice.json │ │ ├── glowstone.json │ │ ├── gold_block.json │ │ ├── gold_ingot.json │ │ ├── gold_ingot_from_blasting.json │ │ ├── gold_ingot_from_gold_block.json │ │ ├── gold_ingot_from_nuggets.json │ │ ├── gold_nugget.json │ │ ├── gold_nugget_from_blasting.json │ │ ├── gold_nugget_from_smelting.json │ │ ├── golden_apple.json │ │ ├── golden_axe.json │ │ ├── golden_boots.json │ │ ├── golden_carrot.json │ │ ├── golden_chestplate.json │ │ ├── golden_helmet.json │ │ ├── golden_hoe.json │ │ ├── golden_leggings.json │ │ ├── golden_pickaxe.json │ │ ├── golden_shovel.json │ │ ├── golden_sword.json │ │ ├── granite.json │ │ ├── granite_slab.json │ │ ├── granite_slab_from_granite_stonecutting.json │ │ ├── granite_stairs.json │ │ ├── granite_stairs_from_granite_stonecutting.json │ │ ├── granite_wall.json │ │ ├── granite_wall_from_granite_stonecutting.json │ │ ├── gray_banner.json │ │ ├── gray_bed.json │ │ ├── gray_bed_from_white_bed.json │ │ ├── gray_carpet.json │ │ ├── gray_carpet_from_white_carpet.json │ │ ├── gray_concrete_powder.json │ │ ├── gray_dye.json │ │ ├── gray_glazed_terracotta.json │ │ ├── gray_stained_glass.json │ │ ├── gray_stained_glass_pane.json │ │ ├── gray_stained_glass_pane_from_glass_pane.json │ │ ├── gray_terracotta.json │ │ ├── gray_wool.json │ │ ├── green_banner.json │ │ ├── green_bed.json │ │ ├── green_bed_from_white_bed.json │ │ ├── green_carpet.json │ │ ├── green_carpet_from_white_carpet.json │ │ ├── green_concrete_powder.json │ │ ├── green_dye.json │ │ ├── green_glazed_terracotta.json │ │ ├── green_stained_glass.json │ │ ├── green_stained_glass_pane.json │ │ ├── green_stained_glass_pane_from_glass_pane.json │ │ ├── green_terracotta.json │ │ ├── green_wool.json │ │ ├── grindstone.json │ │ ├── hay_block.json │ │ ├── heavy_weighted_pressure_plate.json │ │ ├── honey_block.json │ │ ├── honey_bottle.json │ │ ├── honeycomb_block.json │ │ ├── hopper.json │ │ ├── hopper_minecart.json │ │ ├── iron_axe.json │ │ ├── iron_bars.json │ │ ├── iron_block.json │ │ ├── iron_boots.json │ │ ├── iron_chestplate.json │ │ ├── iron_door.json │ │ ├── iron_helmet.json │ │ ├── iron_hoe.json │ │ ├── iron_ingot.json │ │ ├── iron_ingot_from_blasting.json │ │ ├── iron_ingot_from_iron_block.json │ │ ├── iron_ingot_from_nuggets.json │ │ ├── iron_leggings.json │ │ ├── iron_nugget.json │ │ ├── iron_nugget_from_blasting.json │ │ ├── iron_nugget_from_smelting.json │ │ ├── iron_pickaxe.json │ │ ├── iron_shovel.json │ │ ├── iron_sword.json │ │ ├── iron_trapdoor.json │ │ ├── item_frame.json │ │ ├── jack_o_lantern.json │ │ ├── jukebox.json │ │ ├── jungle_boat.json │ │ ├── jungle_button.json │ │ ├── jungle_door.json │ │ ├── jungle_fence.json │ │ ├── jungle_fence_gate.json │ │ ├── jungle_planks.json │ │ ├── jungle_pressure_plate.json │ │ ├── jungle_sign.json │ │ ├── jungle_slab.json │ │ ├── jungle_stairs.json │ │ ├── jungle_trapdoor.json │ │ ├── jungle_wood.json │ │ ├── ladder.json │ │ ├── lantern.json │ │ ├── lapis_block.json │ │ ├── lapis_from_blasting.json │ │ ├── lapis_from_smelting.json │ │ ├── lapis_lazuli.json │ │ ├── lead.json │ │ ├── leather.json │ │ ├── leather_boots.json │ │ ├── leather_chestplate.json │ │ ├── leather_helmet.json │ │ ├── leather_horse_armor.json │ │ ├── leather_leggings.json │ │ ├── lectern.json │ │ ├── lever.json │ │ ├── light_blue_banner.json │ │ ├── light_blue_bed.json │ │ ├── light_blue_bed_from_white_bed.json │ │ ├── light_blue_carpet.json │ │ ├── light_blue_carpet_from_white_carpet.json │ │ ├── light_blue_concrete_powder.json │ │ ├── light_blue_dye.json │ │ ├── light_blue_dye_from_blue_orchid.json │ │ ├── light_blue_glazed_terracotta.json │ │ ├── light_blue_stained_glass.json │ │ ├── light_blue_stained_glass_pane.json │ │ ├── light_blue_stained_glass_pane_from_glass_pane.json │ │ ├── light_blue_terracotta.json │ │ ├── light_blue_wool.json │ │ ├── light_gray_banner.json │ │ ├── light_gray_bed.json │ │ ├── light_gray_bed_from_white_bed.json │ │ ├── light_gray_carpet.json │ │ ├── light_gray_carpet_from_white_carpet.json │ │ ├── light_gray_concrete_powder.json │ │ ├── light_gray_dye.json │ │ ├── light_gray_dye_from_azure_bluet.json │ │ ├── light_gray_dye_from_black_white_dye.json │ │ ├── light_gray_dye_from_gray_white_dye.json │ │ ├── light_gray_dye_from_oxeye_daisy.json │ │ ├── light_gray_glazed_terracotta.json │ │ ├── light_gray_stained_glass.json │ │ ├── light_gray_stained_glass_pane.json │ │ ├── light_gray_stained_glass_pane_from_glass_pane.json │ │ ├── light_gray_terracotta.json │ │ ├── light_gray_wool.json │ │ ├── light_weighted_pressure_plate.json │ │ ├── lime_banner.json │ │ ├── lime_bed.json │ │ ├── lime_bed_from_white_bed.json │ │ ├── lime_carpet.json │ │ ├── lime_carpet_from_white_carpet.json │ │ ├── lime_concrete_powder.json │ │ ├── lime_dye.json │ │ ├── lime_dye_from_smelting.json │ │ ├── lime_glazed_terracotta.json │ │ ├── lime_stained_glass.json │ │ ├── lime_stained_glass_pane.json │ │ ├── lime_stained_glass_pane_from_glass_pane.json │ │ ├── lime_terracotta.json │ │ ├── lime_wool.json │ │ ├── lodestone.json │ │ ├── loom.json │ │ ├── magenta_banner.json │ │ ├── magenta_bed.json │ │ ├── magenta_bed_from_white_bed.json │ │ ├── magenta_carpet.json │ │ ├── magenta_carpet_from_white_carpet.json │ │ ├── magenta_concrete_powder.json │ │ ├── magenta_dye.json │ │ ├── magenta_dye_from_blue_red_pink.json │ │ ├── magenta_dye_from_blue_red_white_dye.json │ │ ├── magenta_dye_from_lilac.json │ │ ├── magenta_dye_from_purple_and_pink.json │ │ ├── magenta_glazed_terracotta.json │ │ ├── magenta_stained_glass.json │ │ ├── magenta_stained_glass_pane.json │ │ ├── magenta_stained_glass_pane_from_glass_pane.json │ │ ├── magenta_terracotta.json │ │ ├── magenta_wool.json │ │ ├── magma_block.json │ │ ├── magma_cream.json │ │ ├── map.json │ │ ├── map_cloning.json │ │ ├── map_extending.json │ │ ├── melon.json │ │ ├── melon_seeds.json │ │ ├── minecart.json │ │ ├── mojang_banner_pattern.json │ │ ├── mossy_cobblestone.json │ │ ├── mossy_cobblestone_slab.json │ │ ├── mossy_cobblestone_slab_from_mossy_cobblestone_stonecutting.json │ │ ├── mossy_cobblestone_stairs.json │ │ ├── mossy_cobblestone_stairs_from_mossy_cobblestone_stonecutting.json │ │ ├── mossy_cobblestone_wall.json │ │ ├── mossy_cobblestone_wall_from_mossy_cobblestone_stonecutting.json │ │ ├── mossy_stone_brick_slab.json │ │ ├── mossy_stone_brick_slab_from_mossy_stone_brick_stonecutting.json │ │ ├── mossy_stone_brick_stairs.json │ │ ├── mossy_stone_brick_stairs_from_mossy_stone_brick_stonecutting.json │ │ ├── mossy_stone_brick_wall.json │ │ ├── mossy_stone_brick_wall_from_mossy_stone_brick_stonecutting.json │ │ ├── mossy_stone_bricks.json │ │ ├── mushroom_stew.json │ │ ├── nether_brick.json │ │ ├── nether_brick_fence.json │ │ ├── nether_brick_slab.json │ │ ├── nether_brick_slab_from_nether_bricks_stonecutting.json │ │ ├── nether_brick_stairs.json │ │ ├── nether_brick_stairs_from_nether_bricks_stonecutting.json │ │ ├── nether_brick_wall.json │ │ ├── nether_brick_wall_from_nether_bricks_stonecutting.json │ │ ├── nether_bricks.json │ │ ├── nether_wart_block.json │ │ ├── netherite_axe_smithing.json │ │ ├── netherite_block.json │ │ ├── netherite_boots_smithing.json │ │ ├── netherite_chestplate_smithing.json │ │ ├── netherite_helmet_smithing.json │ │ ├── netherite_hoe_smithing.json │ │ ├── netherite_ingot.json │ │ ├── netherite_ingot_from_netherite_block.json │ │ ├── netherite_leggings_smithing.json │ │ ├── netherite_pickaxe_smithing.json │ │ ├── netherite_scrap.json │ │ ├── netherite_scrap_from_blasting.json │ │ ├── netherite_shovel_smithing.json │ │ ├── netherite_sword_smithing.json │ │ ├── note_block.json │ │ ├── oak_boat.json │ │ ├── oak_button.json │ │ ├── oak_door.json │ │ ├── oak_fence.json │ │ ├── oak_fence_gate.json │ │ ├── oak_planks.json │ │ ├── oak_pressure_plate.json │ │ ├── oak_sign.json │ │ ├── oak_slab.json │ │ ├── oak_stairs.json │ │ ├── oak_trapdoor.json │ │ ├── oak_wood.json │ │ ├── observer.json │ │ ├── orange_banner.json │ │ ├── orange_bed.json │ │ ├── orange_bed_from_orange_wool.json │ │ ├── orange_bed_from_white_bed.json │ │ ├── orange_carpet.json │ │ ├── orange_carpet_from_orange_wool.json │ │ ├── orange_carpet_from_white_carpet.json │ │ ├── orange_concrete_powder.json │ │ ├── orange_dye.json │ │ ├── orange_dye_from_red_yellow.json │ │ ├── orange_glazed_terracotta.json │ │ ├── orange_stained_glass.json │ │ ├── orange_stained_glass_pane.json │ │ ├── orange_stained_glass_pane_from_glass_pane.json │ │ ├── orange_terracotta.json │ │ ├── orange_wool.json │ │ ├── packed_ice.json │ │ ├── painting.json │ │ ├── paper.json │ │ ├── pink_banner.json │ │ ├── pink_bed.json │ │ ├── pink_bed_from_white_bed.json │ │ ├── pink_carpet.json │ │ ├── pink_carpet_from_white_carpet.json │ │ ├── pink_concrete_powder.json │ │ ├── pink_dye.json │ │ ├── pink_dye_from_pink_tulip.json │ │ ├── pink_dye_from_red_white_dye.json │ │ ├── pink_glazed_terracotta.json │ │ ├── pink_stained_glass.json │ │ ├── pink_stained_glass_pane.json │ │ ├── pink_stained_glass_pane_from_glass_pane.json │ │ ├── pink_terracotta.json │ │ ├── pink_wool.json │ │ ├── piston.json │ │ ├── polished_andesite.json │ │ ├── polished_andesite_from_andesite_stonecutting.json │ │ ├── polished_andesite_slab.json │ │ ├── polished_andesite_slab_from_andesite_stonecutting.json │ │ ├── polished_andesite_slab_from_polished_andesite_stonecutting.json │ │ ├── polished_andesite_stairs.json │ │ ├── polished_andesite_stairs_from_andesite_stonecutting.json │ │ ├── polished_andesite_stairs_from_polished_andesite_stonecutting.json │ │ ├── polished_basalt.json │ │ ├── polished_basalt_from_basalt_stonecutting.json │ │ ├── polished_blackstone.json │ │ ├── polished_blackstone_brick_slab.json │ │ ├── polished_blackstone_brick_slab_from_blackstone_stonecutting.json │ │ ├── polished_blackstone_brick_slab_from_polished_blackstone_bricks_stonecutting.json │ │ ├── polished_blackstone_brick_slab_from_polished_blackstone_stonecutting.json │ │ ├── polished_blackstone_brick_stairs.json │ │ ├── polished_blackstone_brick_stairs_from_blackstone_stonecutting.json │ │ ├── polished_blackstone_brick_stairs_from_polished_blackstone_bricks_stonecutting.json │ │ ├── polished_blackstone_brick_stairs_from_polished_blackstone_stonecutting.json │ │ ├── polished_blackstone_brick_wall.json │ │ ├── polished_blackstone_brick_wall_from_blackstone_stonecutting.json │ │ ├── polished_blackstone_brick_wall_from_polished_blackstone_bricks_stonecutting.json │ │ ├── polished_blackstone_brick_wall_from_polished_blackstone_stonecutting.json │ │ ├── polished_blackstone_bricks.json │ │ ├── polished_blackstone_bricks_from_blackstone_stonecutting.json │ │ ├── polished_blackstone_bricks_from_polished_blackstone_stonecutting.json │ │ ├── polished_blackstone_button.json │ │ ├── polished_blackstone_from_blackstone_stonecutting.json │ │ ├── polished_blackstone_pressure_plate.json │ │ ├── polished_blackstone_slab.json │ │ ├── polished_blackstone_slab_from_blackstone_stonecutting.json │ │ ├── polished_blackstone_slab_from_polished_blackstone_stonecutting.json │ │ ├── polished_blackstone_stairs.json │ │ ├── polished_blackstone_stairs_from_blackstone_stonecutting.json │ │ ├── polished_blackstone_stairs_from_polished_blackstone_stonecutting.json │ │ ├── polished_blackstone_wall.json │ │ ├── polished_blackstone_wall_from_blackstone_stonecutting.json │ │ ├── polished_blackstone_wall_from_polished_blackstone_stonecutting.json │ │ ├── polished_diorite.json │ │ ├── polished_diorite_from_diorite_stonecutting.json │ │ ├── polished_diorite_slab.json │ │ ├── polished_diorite_slab_from_diorite_stonecutting.json │ │ ├── polished_diorite_slab_from_polished_diorite_stonecutting.json │ │ ├── polished_diorite_stairs.json │ │ ├── polished_diorite_stairs_from_diorite_stonecutting.json │ │ ├── polished_diorite_stairs_from_polished_diorite_stonecutting.json │ │ ├── polished_granite.json │ │ ├── polished_granite_from_granite_stonecutting.json │ │ ├── polished_granite_slab.json │ │ ├── polished_granite_slab_from_granite_stonecutting.json │ │ ├── polished_granite_slab_from_polished_granite_stonecutting.json │ │ ├── polished_granite_stairs.json │ │ ├── polished_granite_stairs_from_granite_stonecutting.json │ │ ├── polished_granite_stairs_from_polished_granite_stonecutting.json │ │ ├── popped_chorus_fruit.json │ │ ├── powered_rail.json │ │ ├── prismarine.json │ │ ├── prismarine_brick_slab.json │ │ ├── prismarine_brick_slab_from_prismarine_stonecutting.json │ │ ├── prismarine_brick_stairs.json │ │ ├── prismarine_brick_stairs_from_prismarine_stonecutting.json │ │ ├── prismarine_bricks.json │ │ ├── prismarine_slab.json │ │ ├── prismarine_slab_from_prismarine_stonecutting.json │ │ ├── prismarine_stairs.json │ │ ├── prismarine_stairs_from_prismarine_stonecutting.json │ │ ├── prismarine_wall.json │ │ ├── prismarine_wall_from_prismarine_stonecutting.json │ │ ├── pumpkin_pie.json │ │ ├── pumpkin_seeds.json │ │ ├── purple_banner.json │ │ ├── purple_bed.json │ │ ├── purple_bed_from_white_bed.json │ │ ├── purple_carpet.json │ │ ├── purple_carpet_from_white_carpet.json │ │ ├── purple_concrete_powder.json │ │ ├── purple_dye.json │ │ ├── purple_glazed_terracotta.json │ │ ├── purple_stained_glass.json │ │ ├── purple_stained_glass_pane.json │ │ ├── purple_stained_glass_pane_from_glass_pane.json │ │ ├── purple_terracotta.json │ │ ├── purple_wool.json │ │ ├── purpur_block.json │ │ ├── purpur_pillar.json │ │ ├── purpur_pillar_from_purpur_block_stonecutting.json │ │ ├── purpur_slab.json │ │ ├── purpur_slab_from_purpur_block_stonecutting.json │ │ ├── purpur_stairs.json │ │ ├── purpur_stairs_from_purpur_block_stonecutting.json │ │ ├── quartz.json │ │ ├── quartz_block.json │ │ ├── quartz_bricks.json │ │ ├── quartz_bricks_from_quartz_block_stonecutting.json │ │ ├── quartz_from_blasting.json │ │ ├── quartz_pillar.json │ │ ├── quartz_pillar_from_quartz_block_stonecutting.json │ │ ├── quartz_slab.json │ │ ├── quartz_slab_from_stonecutting.json │ │ ├── quartz_stairs.json │ │ ├── quartz_stairs_from_quartz_block_stonecutting.json │ │ ├── rabbit_stew_from_brown_mushroom.json │ │ ├── rabbit_stew_from_red_mushroom.json │ │ ├── rail.json │ │ ├── red_banner.json │ │ ├── red_bed.json │ │ ├── red_bed_from_white_bed.json │ │ ├── red_carpet.json │ │ ├── red_carpet_from_white_carpet.json │ │ ├── red_concrete_powder.json │ │ ├── red_dye.json │ │ ├── red_dye_from_beetroot.json │ │ ├── red_dye_from_rose_bush.json │ │ ├── red_dye_from_tulip.json │ │ ├── red_glazed_terracotta.json │ │ ├── red_nether_brick_slab.json │ │ ├── red_nether_brick_slab_from_red_nether_bricks_stonecutting.json │ │ ├── red_nether_brick_stairs.json │ │ ├── red_nether_brick_stairs_from_red_nether_bricks_stonecutting.json │ │ ├── red_nether_brick_wall.json │ │ ├── red_nether_brick_wall_from_red_nether_bricks_stonecutting.json │ │ ├── red_nether_bricks.json │ │ ├── red_sandstone.json │ │ ├── red_sandstone_slab.json │ │ ├── red_sandstone_slab_from_red_sandstone_stonecutting.json │ │ ├── red_sandstone_stairs.json │ │ ├── red_sandstone_stairs_from_red_sandstone_stonecutting.json │ │ ├── red_sandstone_wall.json │ │ ├── red_sandstone_wall_from_red_sandstone_stonecutting.json │ │ ├── red_stained_glass.json │ │ ├── red_stained_glass_pane.json │ │ ├── red_stained_glass_pane_from_glass_pane.json │ │ ├── red_terracotta.json │ │ ├── red_wool.json │ │ ├── redstone.json │ │ ├── redstone_block.json │ │ ├── redstone_from_blasting.json │ │ ├── redstone_from_smelting.json │ │ ├── redstone_lamp.json │ │ ├── redstone_torch.json │ │ ├── repair_item.json │ │ ├── repeater.json │ │ ├── respawn_anchor.json │ │ ├── sandstone.json │ │ ├── sandstone_slab.json │ │ ├── sandstone_slab_from_sandstone_stonecutting.json │ │ ├── sandstone_stairs.json │ │ ├── sandstone_stairs_from_sandstone_stonecutting.json │ │ ├── sandstone_wall.json │ │ ├── sandstone_wall_from_sandstone_stonecutting.json │ │ ├── scaffolding.json │ │ ├── sea_lantern.json │ │ ├── shears.json │ │ ├── shield.json │ │ ├── shield_decoration.json │ │ ├── shulker_box.json │ │ ├── shulker_box_coloring.json │ │ ├── skull_banner_pattern.json │ │ ├── slime_ball.json │ │ ├── slime_block.json │ │ ├── smithing_table.json │ │ ├── smoker.json │ │ ├── smooth_quartz.json │ │ ├── smooth_quartz_slab.json │ │ ├── smooth_quartz_slab_from_smooth_quartz_stonecutting.json │ │ ├── smooth_quartz_stairs.json │ │ ├── smooth_quartz_stairs_from_smooth_quartz_stonecutting.json │ │ ├── smooth_red_sandstone.json │ │ ├── smooth_red_sandstone_slab.json │ │ ├── smooth_red_sandstone_slab_from_smooth_red_sandstone_stonecutting.json │ │ ├── smooth_red_sandstone_stairs.json │ │ ├── smooth_red_sandstone_stairs_from_smooth_red_sandstone_stonecutting.json │ │ ├── smooth_sandstone.json │ │ ├── smooth_sandstone_slab.json │ │ ├── smooth_sandstone_slab_from_smooth_sandstone_stonecutting.json │ │ ├── smooth_sandstone_stairs.json │ │ ├── smooth_sandstone_stairs_from_smooth_sandstone_stonecutting.json │ │ ├── smooth_stone.json │ │ ├── smooth_stone_slab.json │ │ ├── smooth_stone_slab_from_smooth_stone_stonecutting.json │ │ ├── snow.json │ │ ├── snow_block.json │ │ ├── soul_campfire.json │ │ ├── soul_lantern.json │ │ ├── soul_torch.json │ │ ├── spectral_arrow.json │ │ ├── sponge.json │ │ ├── spruce_boat.json │ │ ├── spruce_button.json │ │ ├── spruce_door.json │ │ ├── spruce_fence.json │ │ ├── spruce_fence_gate.json │ │ ├── spruce_planks.json │ │ ├── spruce_pressure_plate.json │ │ ├── spruce_sign.json │ │ ├── spruce_slab.json │ │ ├── spruce_stairs.json │ │ ├── spruce_trapdoor.json │ │ ├── spruce_wood.json │ │ ├── stick.json │ │ ├── sticky_piston.json │ │ ├── stone.json │ │ ├── stone_axe.json │ │ ├── stone_brick_slab.json │ │ ├── stone_brick_slab_from_stone_bricks_stonecutting.json │ │ ├── stone_brick_slab_from_stone_stonecutting.json │ │ ├── stone_brick_stairs.json │ │ ├── stone_brick_stairs_from_stone_bricks_stonecutting.json │ │ ├── stone_brick_stairs_from_stone_stonecutting.json │ │ ├── stone_brick_wall.json │ │ ├── stone_brick_wall_from_stone_bricks_stonecutting.json │ │ ├── stone_brick_walls_from_stone_stonecutting.json │ │ ├── stone_bricks.json │ │ ├── stone_bricks_from_stone_stonecutting.json │ │ ├── stone_button.json │ │ ├── stone_hoe.json │ │ ├── stone_pickaxe.json │ │ ├── stone_pressure_plate.json │ │ ├── stone_shovel.json │ │ ├── stone_slab.json │ │ ├── stone_slab_from_stone_stonecutting.json │ │ ├── stone_stairs.json │ │ ├── stone_stairs_from_stone_stonecutting.json │ │ ├── stone_sword.json │ │ ├── stonecutter.json │ │ ├── stripped_acacia_wood.json │ │ ├── stripped_birch_wood.json │ │ ├── stripped_crimson_hyphae.json │ │ ├── stripped_dark_oak_wood.json │ │ ├── stripped_jungle_wood.json │ │ ├── stripped_oak_wood.json │ │ ├── stripped_spruce_wood.json │ │ ├── stripped_warped_hyphae.json │ │ ├── sugar_from_honey_bottle.json │ │ ├── sugar_from_sugar_cane.json │ │ ├── suspicious_stew.json │ │ ├── target.json │ │ ├── terracotta.json │ │ ├── tipped_arrow.json │ │ ├── tnt.json │ │ ├── tnt_minecart.json │ │ ├── torch.json │ │ ├── trapped_chest.json │ │ ├── tripwire_hook.json │ │ ├── turtle_helmet.json │ │ ├── warped_button.json │ │ ├── warped_door.json │ │ ├── warped_fence.json │ │ ├── warped_fence_gate.json │ │ ├── warped_fungus_on_a_stick.json │ │ ├── warped_hyphae.json │ │ ├── warped_planks.json │ │ ├── warped_pressure_plate.json │ │ ├── warped_sign.json │ │ ├── warped_slab.json │ │ ├── warped_stairs.json │ │ ├── warped_trapdoor.json │ │ ├── wheat.json │ │ ├── white_banner.json │ │ ├── white_bed.json │ │ ├── white_carpet.json │ │ ├── white_concrete_powder.json │ │ ├── white_dye.json │ │ ├── white_dye_from_lily_of_the_valley.json │ │ ├── white_glazed_terracotta.json │ │ ├── white_stained_glass.json │ │ ├── white_stained_glass_pane.json │ │ ├── white_stained_glass_pane_from_glass_pane.json │ │ ├── white_terracotta.json │ │ ├── white_wool_from_string.json │ │ ├── wooden_axe.json │ │ ├── wooden_hoe.json │ │ ├── wooden_pickaxe.json │ │ ├── wooden_shovel.json │ │ ├── wooden_sword.json │ │ ├── writable_book.json │ │ ├── yellow_banner.json │ │ ├── yellow_bed.json │ │ ├── yellow_bed_from_white_bed.json │ │ ├── yellow_carpet.json │ │ ├── yellow_carpet_from_white_carpet.json │ │ ├── yellow_concrete_powder.json │ │ ├── yellow_dye.json │ │ ├── yellow_dye_from_sunflower.json │ │ ├── yellow_glazed_terracotta.json │ │ ├── yellow_stained_glass.json │ │ ├── yellow_stained_glass_pane.json │ │ ├── yellow_stained_glass_pane_from_glass_pane.json │ │ ├── yellow_terracotta.json │ │ └── yellow_wool.json │ ├── slot.py │ └── tag_items.json │ ├── main.py │ ├── memories │ ├── __init__.py │ ├── graph.py │ ├── memory.py │ └── v1 │ │ ├── plan │ │ └── success │ │ │ ├── Craft_a_iron_pickaxe.json │ │ │ ├── Craft_a_stone_sword.json │ │ │ ├── Craft_a_wooden_axe.json │ │ │ ├── Craft_iron_leggings.json │ │ │ └── Dig_down_and_mine_a_diamond.json │ │ └── reflection │ │ ├── chop_trees.json │ │ ├── dig_down_and_break_down_cobblestone.json │ │ ├── dig_down_and_mine_diamond.json │ │ └── img │ │ ├── chop trees_forest_continue_new_FYEke7A3BNjSdUvd4hkirA.jpg │ │ ├── chop trees_forest_continue_new_GutEK6xPWUV5W9KnRdbbnr.jpg │ │ ├── chop trees_forest_continue_new_n5svLDPYx3DaFKWUpfNAwh.jpg │ │ ├── chop trees_forest_continue_old_FYEke7A3BNjSdUvd4hkirA.jpg │ │ ├── chop trees_forest_continue_old_GutEK6xPWUV5W9KnRdbbnr.jpg │ │ ├── chop trees_forest_continue_old_n5svLDPYx3DaFKWUpfNAwh.jpg │ │ ├── dig down and break down cobblestone_forest_continue_new_MftaELPRByVoXgeiWgn6LX.jpg │ │ ├── dig down and break down cobblestone_forest_continue_old_MftaELPRByVoXgeiWgn6LX.jpg │ │ ├── dig down and mine diamond_cave_continue_new_GKcpskTRJvoXWyVXZKoRQt.jpg │ │ ├── dig down and mine diamond_cave_continue_old_GKcpskTRJvoXWyVXZKoRQt.jpg │ │ ├── dig down and mine diamond_cave_replan_new_PXmyUwnJUEtjWx5UZcqyuc.jpg │ │ └── dig down and mine diamond_cave_replan_old_PXmyUwnJUEtjWx5UZcqyuc.jpg │ ├── models │ ├── __init__.py │ ├── base_model.py │ ├── deepseek_vl │ │ ├── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── clip_encoder.py │ │ │ ├── image_processing_vlm.py │ │ │ ├── modeling_vlm.py │ │ │ ├── processing_vlm.py │ │ │ ├── projector.py │ │ │ ├── sam.py │ │ │ └── siglip_vit.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── conversation.py │ │ │ └── io.py │ ├── deepseek_vl_planning.py │ ├── gpt4_planning.py │ ├── steve1 │ │ ├── MineRLConditionalAgent.py │ │ ├── VPT │ │ │ ├── __init__.py │ │ │ ├── agent.py │ │ │ ├── inverse_dynamics_model.py │ │ │ ├── lib │ │ │ │ ├── __init__.py │ │ │ │ ├── action_head.py │ │ │ │ ├── action_mapping.py │ │ │ │ ├── actions.py │ │ │ │ ├── impala_cnn.py │ │ │ │ ├── masked_attention.py │ │ │ │ ├── minecraft_util.py │ │ │ │ ├── misc.py │ │ │ │ ├── mlp.py │ │ │ │ ├── normalize_ewma.py │ │ │ │ ├── policy.py │ │ │ │ ├── scaled_mse_head.py │ │ │ │ ├── torch_util.py │ │ │ │ ├── tree_util.py │ │ │ │ ├── util.py │ │ │ │ └── xf.py │ │ │ └── run_inverse_dynamics_model.py │ │ ├── __init__.py │ │ ├── config.py │ │ ├── data │ │ │ ├── EpisodeStorage.py │ │ │ ├── __init__.py │ │ │ ├── generation │ │ │ │ ├── FrameBuffer.py │ │ │ │ ├── __init_.py │ │ │ │ ├── assets │ │ │ │ │ └── mouse_cursor_white_16x16.png │ │ │ │ ├── convert_from_contractor.py │ │ │ │ ├── gen_mixed_agents.py │ │ │ │ └── vpt_agents.py │ │ │ ├── minecraft_dataset.py │ │ │ ├── sampling │ │ │ │ ├── dataset_summary.py │ │ │ │ └── generate_sampling.py │ │ │ ├── text_alignment │ │ │ │ ├── vae.py │ │ │ │ └── vae_pipeline │ │ │ │ │ └── train_vae.py │ │ │ └── utils │ │ │ │ └── contractor.py │ │ ├── embed_conditioned_policy.py │ │ ├── gen_vid_for_text_prompt.sh │ │ ├── helpers.py │ │ ├── mineclip │ │ │ ├── __init__.py │ │ │ ├── mineclip │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── clip.py │ │ │ │ ├── head.py │ │ │ │ ├── mineclip.py │ │ │ │ ├── pooling.py │ │ │ │ ├── pos_embed.py │ │ │ │ ├── tokenization.py │ │ │ │ └── transformer.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── convert_utils.py │ │ │ │ ├── file_utils.py │ │ │ │ ├── image_utils.py │ │ │ │ ├── misc_utils.py │ │ │ │ ├── mlp.py │ │ │ │ ├── once.py │ │ │ │ └── torch_utils.py │ │ ├── mineclip_code │ │ │ └── load_mineclip.py │ │ └── utils │ │ │ ├── embed_utils.py │ │ │ ├── file_utils.py │ │ │ ├── mineclip_agent_env_utils.py │ │ │ ├── text_overlay_utils.py │ │ │ └── video_utils.py │ ├── steve_action_model.py │ └── utils.py │ ├── monitor │ ├── __init__.py │ ├── monitor.py │ ├── monitors.py │ ├── step_monitor.py │ └── success_monitor.py │ ├── py.typed │ ├── server │ ├── __init__.py │ ├── agent.py │ └── api │ │ ├── __init__.py │ │ ├── request.py │ │ └── utils.py │ ├── test_optimus1.py │ ├── tests │ └── minerl.py │ └── util │ ├── __init__.py │ ├── decorator.py │ ├── image.py │ ├── logger.py │ ├── prompt.py │ ├── server_api.py │ ├── thread.py │ ├── tools.py │ ├── utils.py │ └── video.py ├── uv-installer.sh └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/app.py -------------------------------------------------------------------------------- /assets/fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/assets/fig2.png -------------------------------------------------------------------------------- /assets/optimus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/assets/optimus.png -------------------------------------------------------------------------------- /assets/table1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/assets/table1.png -------------------------------------------------------------------------------- /minerl/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/.classpath -------------------------------------------------------------------------------- /minerl/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/.gitattributes -------------------------------------------------------------------------------- /minerl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/.gitignore -------------------------------------------------------------------------------- /minerl/.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/.readthedocs.yml -------------------------------------------------------------------------------- /minerl/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/.travis.yml -------------------------------------------------------------------------------- /minerl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/LICENSE -------------------------------------------------------------------------------- /minerl/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/MANIFEST.in -------------------------------------------------------------------------------- /minerl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/README.md -------------------------------------------------------------------------------- /minerl/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/Makefile -------------------------------------------------------------------------------- /minerl/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/README.md -------------------------------------------------------------------------------- /minerl/docs/build_and_view.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/build_and_view.sh -------------------------------------------------------------------------------- /minerl/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/make.bat -------------------------------------------------------------------------------- /minerl/docs/source/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/_static/custom.css -------------------------------------------------------------------------------- /minerl/docs/source/_templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/_templates/page.html -------------------------------------------------------------------------------- /minerl/docs/source/assets/MineRL_banner_sq.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/MineRL_banner_sq.PNG -------------------------------------------------------------------------------- /minerl/docs/source/assets/anim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/anim.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/basalt/caves1_0-05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/basalt/caves1_0-05.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/basalt/caves3_0-30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/basalt/caves3_0-30.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/basalt/caves4_0-30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/basalt/caves4_0-30.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/basalt/caves5_0-30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/basalt/caves5_0-30.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/basalt/house_0_0-05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/basalt/house_0_0-05.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/basalt/house_1_0-30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/basalt/house_1_0-30.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/basalt/house_3_1-00.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/basalt/house_3_1-00.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/basalt/house_long_7-00.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/basalt/house_long_7-00.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/basalt/waterfall0_0-05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/basalt/waterfall0_0-05.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/basalt/waterfall2_0-30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/basalt/waterfall2_0-30.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/basalt/waterfall6_0-30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/basalt/waterfall6_0-30.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/basalt/waterfall8_0-30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/basalt/waterfall8_0-30.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/block.png -------------------------------------------------------------------------------- /minerl/docs/source/assets/compass_angle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/compass_angle.png -------------------------------------------------------------------------------- /minerl/docs/source/assets/compass_angle_better.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/compass_angle_better.png -------------------------------------------------------------------------------- /minerl/docs/source/assets/cropped_viewer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/cropped_viewer.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/demo.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/inventory.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/inventory.jpg -------------------------------------------------------------------------------- /minerl/docs/source/assets/minerl_viewer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/minerl_viewer.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/mlg_water_bucket.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/mlg_water_bucket.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/navigate1.mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/navigate1.mp4.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/navigate2.mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/navigate2.mp4.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/navigate3.mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/navigate3.mp4.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/navigate4.mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/navigate4.mp4.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/navigateextreme1.mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/navigateextreme1.mp4.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/navigateextreme2.mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/navigateextreme2.mp4.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/navigateextreme3.mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/navigateextreme3.mp4.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/navigateextreme4.mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/navigateextreme4.mp4.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/net_reward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/net_reward.png -------------------------------------------------------------------------------- /minerl/docs/source/assets/odia1.mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/odia1.mp4.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/odia2.mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/odia2.mp4.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/odia3.mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/odia3.mp4.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/odia4.mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/odia4.mp4.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/orion1.mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/orion1.mp4.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/orion2.mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/orion2.mp4.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/orion3.mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/orion3.mp4.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/orion4.mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/orion4.mp4.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/real_wb_success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/real_wb_success.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/survival1.mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/survival1.mp4.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/survival2.mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/survival2.mp4.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/survival3.mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/survival3.mp4.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/survival4.mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/survival4.mp4.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/survival5.mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/survival5.mp4.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/survival6.mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/survival6.mp4.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/survival7.mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/survival7.mp4.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/survival8.mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/survival8.mp4.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/thispersonisnotreal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/thispersonisnotreal.jpeg -------------------------------------------------------------------------------- /minerl/docs/source/assets/treechop1.mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/treechop1.mp4.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/treechop2.mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/treechop2.mp4.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/treechop3.mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/treechop3.mp4.gif -------------------------------------------------------------------------------- /minerl/docs/source/assets/treechop4.mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/assets/treechop4.mp4.gif -------------------------------------------------------------------------------- /minerl/docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/conf.py -------------------------------------------------------------------------------- /minerl/docs/source/environments/basalt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/environments/basalt.rst -------------------------------------------------------------------------------- /minerl/docs/source/environments/diamond.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/environments/diamond.rst -------------------------------------------------------------------------------- /minerl/docs/source/environments/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/environments/index.rst -------------------------------------------------------------------------------- /minerl/docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/index.rst -------------------------------------------------------------------------------- /minerl/docs/source/notes/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/notes/faq.rst -------------------------------------------------------------------------------- /minerl/docs/source/notes/interfaces.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/notes/interfaces.rst -------------------------------------------------------------------------------- /minerl/docs/source/notes/performance-tips.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/notes/performance-tips.rst -------------------------------------------------------------------------------- /minerl/docs/source/notes/useful-links.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/notes/useful-links.rst -------------------------------------------------------------------------------- /minerl/docs/source/notes/versions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/notes/versions.rst -------------------------------------------------------------------------------- /minerl/docs/source/notes/windows.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/notes/windows.rst -------------------------------------------------------------------------------- /minerl/docs/source/tutorials/first_agent.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/tutorials/first_agent.rst -------------------------------------------------------------------------------- /minerl/docs/source/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/tutorials/index.rst -------------------------------------------------------------------------------- /minerl/docs/source/tutorials/minerl_tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/tutorials/minerl_tools.rst -------------------------------------------------------------------------------- /minerl/docs/source/tutorials/more_tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/docs/source/tutorials/more_tutorials.rst -------------------------------------------------------------------------------- /minerl/minerl/Malmo/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/.gitattributes -------------------------------------------------------------------------------- /minerl/minerl/Malmo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/.gitignore -------------------------------------------------------------------------------- /minerl/minerl/Malmo/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/.gitrepo -------------------------------------------------------------------------------- /minerl/minerl/Malmo/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/LICENSE.txt -------------------------------------------------------------------------------- /minerl/minerl/Malmo/Minecraft/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/Minecraft/CMakeLists.txt -------------------------------------------------------------------------------- /minerl/minerl/Malmo/Minecraft/CREDITS-fml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/Minecraft/CREDITS-fml.txt -------------------------------------------------------------------------------- /minerl/minerl/Malmo/Minecraft/LICENSE-new.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/Minecraft/LICENSE-new.txt -------------------------------------------------------------------------------- /minerl/minerl/Malmo/Minecraft/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/Minecraft/README.txt -------------------------------------------------------------------------------- /minerl/minerl/Malmo/Minecraft/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/Minecraft/build.gradle -------------------------------------------------------------------------------- /minerl/minerl/Malmo/Minecraft/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/Minecraft/gradlew -------------------------------------------------------------------------------- /minerl/minerl/Malmo/Minecraft/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/Minecraft/gradlew.bat -------------------------------------------------------------------------------- /minerl/minerl/Malmo/Minecraft/launchClient.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/Minecraft/launchClient.bat -------------------------------------------------------------------------------- /minerl/minerl/Malmo/Minecraft/launchClient.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/Minecraft/launchClient.sh -------------------------------------------------------------------------------- /minerl/minerl/Malmo/Minecraft/src/main/java/com/microsoft/Malmo/MixinTextureHandler.java: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minerl/minerl/Malmo/Minecraft/src/main/resources/.fuse_hidden0002b4de00000048: -------------------------------------------------------------------------------- 1 | malmomod.version= 0.37.0 2 | -------------------------------------------------------------------------------- /minerl/minerl/Malmo/Minecraft/src/main/resources/version.properties: -------------------------------------------------------------------------------- 1 | malmomod.version=0.37.0 2 | -------------------------------------------------------------------------------- /minerl/minerl/Malmo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/README.md -------------------------------------------------------------------------------- /minerl/minerl/Malmo/Schemas/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/Schemas/CMakeLists.txt -------------------------------------------------------------------------------- /minerl/minerl/Malmo/Schemas/MinecraftBlocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/Schemas/MinecraftBlocks.txt -------------------------------------------------------------------------------- /minerl/minerl/Malmo/Schemas/MinecraftItems.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/Schemas/MinecraftItems.txt -------------------------------------------------------------------------------- /minerl/minerl/Malmo/Schemas/Mission.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/Schemas/Mission.xsd -------------------------------------------------------------------------------- /minerl/minerl/Malmo/Schemas/MissionEnded.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/Schemas/MissionEnded.xsd -------------------------------------------------------------------------------- /minerl/minerl/Malmo/Schemas/MissionHandlers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/Schemas/MissionHandlers.xsd -------------------------------------------------------------------------------- /minerl/minerl/Malmo/Schemas/MissionInit.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/Schemas/MissionInit.xsd -------------------------------------------------------------------------------- /minerl/minerl/Malmo/Schemas/Types.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/Schemas/Types.xsd -------------------------------------------------------------------------------- /minerl/minerl/Malmo/Schemas/Types.xsd.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/Schemas/Types.xsd.in -------------------------------------------------------------------------------- /minerl/minerl/Malmo/Schemas/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/Schemas/items.json -------------------------------------------------------------------------------- /minerl/minerl/Malmo/Schemas/links.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/Schemas/links.xml -------------------------------------------------------------------------------- /minerl/minerl/Malmo/VERSION: -------------------------------------------------------------------------------- 1 | 0.37.0 2 | -------------------------------------------------------------------------------- /minerl/minerl/Malmo/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/changelog.txt -------------------------------------------------------------------------------- /minerl/minerl/Malmo/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/doc/CMakeLists.txt -------------------------------------------------------------------------------- /minerl/minerl/Malmo/doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/doc/Doxyfile.in -------------------------------------------------------------------------------- /minerl/minerl/Malmo/doc/build_linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/doc/build_linux.md -------------------------------------------------------------------------------- /minerl/minerl/Malmo/doc/build_macosx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/doc/build_macosx.md -------------------------------------------------------------------------------- /minerl/minerl/Malmo/doc/build_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/doc/build_windows.md -------------------------------------------------------------------------------- /minerl/minerl/Malmo/doc/cmake_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/doc/cmake_readme.md -------------------------------------------------------------------------------- /minerl/minerl/Malmo/doc/install_linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/doc/install_linux.md -------------------------------------------------------------------------------- /minerl/minerl/Malmo/doc/install_macosx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/doc/install_macosx.md -------------------------------------------------------------------------------- /minerl/minerl/Malmo/doc/install_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/doc/install_readme.md -------------------------------------------------------------------------------- /minerl/minerl/Malmo/doc/install_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/doc/install_windows.md -------------------------------------------------------------------------------- /minerl/minerl/Malmo/doc/install_windows_manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/doc/install_windows_manual.md -------------------------------------------------------------------------------- /minerl/minerl/Malmo/doc/jar_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/doc/jar_readme.md -------------------------------------------------------------------------------- /minerl/minerl/Malmo/doc/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/doc/readme.html -------------------------------------------------------------------------------- /minerl/minerl/Malmo/malmo.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/Malmo/malmo.properties -------------------------------------------------------------------------------- /minerl/minerl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/__init__.py -------------------------------------------------------------------------------- /minerl/minerl/env/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/env/__init__.py -------------------------------------------------------------------------------- /minerl/minerl/env/_fake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/env/_fake.py -------------------------------------------------------------------------------- /minerl/minerl/env/_multiagent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/env/_multiagent.py -------------------------------------------------------------------------------- /minerl/minerl/env/_singleagent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/env/_singleagent.py -------------------------------------------------------------------------------- /minerl/minerl/env/comms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/env/comms.py -------------------------------------------------------------------------------- /minerl/minerl/env/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/env/exceptions.py -------------------------------------------------------------------------------- /minerl/minerl/env/info.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/env/info.npz -------------------------------------------------------------------------------- /minerl/minerl/env/malmo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/env/malmo.py -------------------------------------------------------------------------------- /minerl/minerl/env/recording.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/env/recording.py -------------------------------------------------------------------------------- /minerl/minerl/env/replay_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/env/replay_wrapper.py -------------------------------------------------------------------------------- /minerl/minerl/env/test_fake_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/env/test_fake_env.py -------------------------------------------------------------------------------- /minerl/minerl/herobraine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/herobraine/__init__.py -------------------------------------------------------------------------------- /minerl/minerl/herobraine/data/pipeline_with_reward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/herobraine/data/pipeline_with_reward.py -------------------------------------------------------------------------------- /minerl/minerl/herobraine/env_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/herobraine/env_spec.py -------------------------------------------------------------------------------- /minerl/minerl/herobraine/env_specs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minerl/minerl/herobraine/env_specs/basalt_specs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/herobraine/env_specs/basalt_specs.py -------------------------------------------------------------------------------- /minerl/minerl/herobraine/env_specs/obfuscators/comp/size: -------------------------------------------------------------------------------- 1 | 64 -------------------------------------------------------------------------------- /minerl/minerl/herobraine/env_specs/obfuscators/comp/v2/size: -------------------------------------------------------------------------------- 1 | 64 -------------------------------------------------------------------------------- /minerl/minerl/herobraine/env_specs/obfuscators/comp/v3/size: -------------------------------------------------------------------------------- 1 | 64 -------------------------------------------------------------------------------- /minerl/minerl/herobraine/env_specs/obtain_specs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/herobraine/env_specs/obtain_specs.py -------------------------------------------------------------------------------- /minerl/minerl/herobraine/env_specs/test/README.mD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/herobraine/env_specs/test/README.mD -------------------------------------------------------------------------------- /minerl/minerl/herobraine/envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/herobraine/envs.py -------------------------------------------------------------------------------- /minerl/minerl/herobraine/hero/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/herobraine/hero/__init__.py -------------------------------------------------------------------------------- /minerl/minerl/herobraine/hero/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/herobraine/hero/handler.py -------------------------------------------------------------------------------- /minerl/minerl/herobraine/hero/handlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/herobraine/hero/handlers/__init__.py -------------------------------------------------------------------------------- /minerl/minerl/herobraine/hero/handlers/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/herobraine/hero/handlers/util.py -------------------------------------------------------------------------------- /minerl/minerl/herobraine/hero/mc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/herobraine/hero/mc.py -------------------------------------------------------------------------------- /minerl/minerl/herobraine/hero/mc_constants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/herobraine/hero/mc_constants.json -------------------------------------------------------------------------------- /minerl/minerl/herobraine/hero/mission.xml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/herobraine/hero/mission.xml.j2 -------------------------------------------------------------------------------- /minerl/minerl/herobraine/hero/spaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/herobraine/hero/spaces.py -------------------------------------------------------------------------------- /minerl/minerl/herobraine/hero/test_spaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/herobraine/hero/test_spaces.py -------------------------------------------------------------------------------- /minerl/minerl/herobraine/test_env_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/herobraine/test_env_spec.py -------------------------------------------------------------------------------- /minerl/minerl/herobraine/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/herobraine/wrapper.py -------------------------------------------------------------------------------- /minerl/minerl/herobraine/wrappers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/herobraine/wrappers/__init__.py -------------------------------------------------------------------------------- /minerl/minerl/herobraine/wrappers/compat_v0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/herobraine/wrappers/compat_v0.py -------------------------------------------------------------------------------- /minerl/minerl/herobraine/wrappers/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/herobraine/wrappers/test_util.py -------------------------------------------------------------------------------- /minerl/minerl/herobraine/wrappers/test_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/herobraine/wrappers/test_wrappers.py -------------------------------------------------------------------------------- /minerl/minerl/herobraine/wrappers/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/herobraine/wrappers/util.py -------------------------------------------------------------------------------- /minerl/minerl/herobraine/wrappers/vector_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/herobraine/wrappers/vector_wrapper.py -------------------------------------------------------------------------------- /minerl/minerl/human_play_interface/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minerl/minerl/interactor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/interactor/__init__.py -------------------------------------------------------------------------------- /minerl/minerl/interactor/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/interactor/__main__.py -------------------------------------------------------------------------------- /minerl/minerl/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/utils/__init__.py -------------------------------------------------------------------------------- /minerl/minerl/utils/documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/utils/documentation.py -------------------------------------------------------------------------------- /minerl/minerl/utils/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/utils/launch.py -------------------------------------------------------------------------------- /minerl/minerl/utils/process_watcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/utils/process_watcher.py -------------------------------------------------------------------------------- /minerl/minerl/utils/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/minerl/utils/test.py -------------------------------------------------------------------------------- /minerl/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/pytest.ini -------------------------------------------------------------------------------- /minerl/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/requirements.txt -------------------------------------------------------------------------------- /minerl/scripts/create_mcp_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/scripts/create_mcp_patch.sh -------------------------------------------------------------------------------- /minerl/scripts/cursors/mouse_cursor_white_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/scripts/cursors/mouse_cursor_white_16x16.png -------------------------------------------------------------------------------- /minerl/scripts/cursors/mouse_cursor_white_4x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/scripts/cursors/mouse_cursor_white_4x4.png -------------------------------------------------------------------------------- /minerl/scripts/cursors/mouse_cursor_white_8x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/scripts/cursors/mouse_cursor_white_8x8.png -------------------------------------------------------------------------------- /minerl/scripts/env_pics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/scripts/env_pics.py -------------------------------------------------------------------------------- /minerl/scripts/launch_instance_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/scripts/launch_instance_manager.py -------------------------------------------------------------------------------- /minerl/scripts/mcp_patch.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/scripts/mcp_patch.diff -------------------------------------------------------------------------------- /minerl/scripts/patch_mcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/scripts/patch_mcp.sh -------------------------------------------------------------------------------- /minerl/scripts/setup_intellij.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/scripts/setup_intellij.sh -------------------------------------------------------------------------------- /minerl/scripts/setup_mcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/scripts/setup_mcp.sh -------------------------------------------------------------------------------- /minerl/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/setup.py -------------------------------------------------------------------------------- /minerl/tests/basic_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/tests/basic_test.py -------------------------------------------------------------------------------- /minerl/tests/env/rendering_ground_truth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/tests/env/rendering_ground_truth.png -------------------------------------------------------------------------------- /minerl/tests/env/test_turn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/tests/env/test_turn.py -------------------------------------------------------------------------------- /minerl/tests/excluded/ai_crowd_env_render_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/tests/excluded/ai_crowd_env_render_test.py -------------------------------------------------------------------------------- /minerl/tests/excluded/detach_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/tests/excluded/detach_test.py -------------------------------------------------------------------------------- /minerl/tests/excluded/early_quitting_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/tests/excluded/early_quitting_test.py -------------------------------------------------------------------------------- /minerl/tests/excluded/existing_env_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/tests/excluded/existing_env_test.py -------------------------------------------------------------------------------- /minerl/tests/excluded/fake_speed_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/tests/excluded/fake_speed_test.py -------------------------------------------------------------------------------- /minerl/tests/excluded/max_instances_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/tests/excluded/max_instances_test.py -------------------------------------------------------------------------------- /minerl/tests/excluded/minecraft_process_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/tests/excluded/minecraft_process_test.py -------------------------------------------------------------------------------- /minerl/tests/excluded/multiple_env_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/tests/excluded/multiple_env_test.py -------------------------------------------------------------------------------- /minerl/tests/excluded/navigate_above_water_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/tests/excluded/navigate_above_water_test.py -------------------------------------------------------------------------------- /minerl/tests/excluded/navigate_dqn_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/tests/excluded/navigate_dqn_test.py -------------------------------------------------------------------------------- /minerl/tests/excluded/no_op_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/tests/excluded/no_op_test.py -------------------------------------------------------------------------------- /minerl/tests/excluded/remote_max_instances_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/tests/excluded/remote_max_instances_test.py -------------------------------------------------------------------------------- /minerl/tests/excluded/robustness_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/tests/excluded/robustness_test.py -------------------------------------------------------------------------------- /minerl/tests/excluded/seed_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/tests/excluded/seed_test.py -------------------------------------------------------------------------------- /minerl/tests/excluded/simple_basalt_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/tests/excluded/simple_basalt_test.py -------------------------------------------------------------------------------- /minerl/tests/excluded/simple_env_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/tests/excluded/simple_env_test.py -------------------------------------------------------------------------------- /minerl/tests/excluded/simple_treechop_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/tests/excluded/simple_treechop_test.py -------------------------------------------------------------------------------- /minerl/tests/excluded/simulator_speed_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/tests/excluded/simulator_speed_test.py -------------------------------------------------------------------------------- /minerl/tests/excluded/treechop_dqn_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/tests/excluded/treechop_dqn_test.py -------------------------------------------------------------------------------- /minerl/tests/excluded/treechop_handler_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/tests/excluded/treechop_handler_test.py -------------------------------------------------------------------------------- /minerl/tests/local/handler_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/tests/local/handler_test.py -------------------------------------------------------------------------------- /minerl/tests/multiagent_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/tests/multiagent_test.py -------------------------------------------------------------------------------- /minerl/tests/test_human_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/minerl/tests/test_human_interface.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/diamond.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/scripts/diamond.sh -------------------------------------------------------------------------------- /scripts/server.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | 4 | CUDA_VISIBLE_DEVICES=0 uvicorn app:app --port 9000 -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /scripts/test_minerl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/scripts/test_minerl.sh -------------------------------------------------------------------------------- /src/optimus1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/optimus1/conf/benchmark/armor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/conf/benchmark/armor.yaml -------------------------------------------------------------------------------- /src/optimus1/conf/benchmark/diamond.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/conf/benchmark/diamond.yaml -------------------------------------------------------------------------------- /src/optimus1/conf/benchmark/golden.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/conf/benchmark/golden.yaml -------------------------------------------------------------------------------- /src/optimus1/conf/benchmark/iron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/conf/benchmark/iron.yaml -------------------------------------------------------------------------------- /src/optimus1/conf/benchmark/redstone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/conf/benchmark/redstone.yaml -------------------------------------------------------------------------------- /src/optimus1/conf/benchmark/stone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/conf/benchmark/stone.yaml -------------------------------------------------------------------------------- /src/optimus1/conf/benchmark/wooden.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/conf/benchmark/wooden.yaml -------------------------------------------------------------------------------- /src/optimus1/conf/evaluate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/conf/evaluate.yaml -------------------------------------------------------------------------------- /src/optimus1/env/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/env/__init__.py -------------------------------------------------------------------------------- /src/optimus1/env/chat_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/env/chat_action.py -------------------------------------------------------------------------------- /src/optimus1/env/custom_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/env/custom_env.py -------------------------------------------------------------------------------- /src/optimus1/env/inventory_agent_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/env/inventory_agent_start.py -------------------------------------------------------------------------------- /src/optimus1/env/mods/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/env/mods/__init__.py -------------------------------------------------------------------------------- /src/optimus1/env/mods/mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/env/mods/mod.py -------------------------------------------------------------------------------- /src/optimus1/env/mods/recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/env/mods/recorder.py -------------------------------------------------------------------------------- /src/optimus1/env/mods/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/env/mods/status.py -------------------------------------------------------------------------------- /src/optimus1/env/mods/task_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/env/mods/task_checker.py -------------------------------------------------------------------------------- /src/optimus1/env/obversation_current_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/env/obversation_current_location.py -------------------------------------------------------------------------------- /src/optimus1/env/plain_inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/env/plain_inventory.py -------------------------------------------------------------------------------- /src/optimus1/env/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/env/wrapper.py -------------------------------------------------------------------------------- /src/optimus1/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/example.py -------------------------------------------------------------------------------- /src/optimus1/helper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/__init__.py -------------------------------------------------------------------------------- /src/optimus1/helper/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/helper.py -------------------------------------------------------------------------------- /src/optimus1/helper/jarvis_craft_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/jarvis_craft_helper.py -------------------------------------------------------------------------------- /src/optimus1/helper/jarvis_equip_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/jarvis_equip_helper.py -------------------------------------------------------------------------------- /src/optimus1/helper/jarvis_smelt_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/jarvis_smelt_helper.py -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/acacia_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/acacia_boat.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/acacia_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/acacia_button.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/acacia_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/acacia_door.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/acacia_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/acacia_fence.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/acacia_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/acacia_fence_gate.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/acacia_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/acacia_planks.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/acacia_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/acacia_sign.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/acacia_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/acacia_slab.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/acacia_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/acacia_stairs.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/acacia_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/acacia_trapdoor.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/acacia_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/acacia_wood.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/activator_rail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/activator_rail.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/andesite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/andesite.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/andesite_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/andesite_slab.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/andesite_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/andesite_stairs.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/andesite_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/andesite_wall.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/anvil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/anvil.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/armor_dye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/armor_dye.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/armor_stand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/armor_stand.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/arrow.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/baked_potato.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/baked_potato.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/banner_duplicate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/banner_duplicate.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/barrel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/barrel.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/beacon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/beacon.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/beehive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/beehive.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/beetroot_soup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/beetroot_soup.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/birch_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/birch_boat.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/birch_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/birch_button.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/birch_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/birch_door.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/birch_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/birch_fence.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/birch_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/birch_fence_gate.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/birch_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/birch_planks.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/birch_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/birch_sign.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/birch_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/birch_slab.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/birch_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/birch_stairs.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/birch_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/birch_trapdoor.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/birch_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/birch_wood.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/black_banner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/black_banner.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/black_bed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/black_bed.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/black_carpet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/black_carpet.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/black_dye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/black_dye.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/black_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/black_terracotta.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/black_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/black_wool.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/blackstone_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/blackstone_slab.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/blackstone_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/blackstone_stairs.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/blackstone_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/blackstone_wall.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/blast_furnace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/blast_furnace.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/blaze_powder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/blaze_powder.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/blue_banner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/blue_banner.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/blue_bed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/blue_bed.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/blue_carpet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/blue_carpet.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/blue_dye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/blue_dye.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/blue_ice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/blue_ice.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/blue_stained_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/blue_stained_glass.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/blue_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/blue_terracotta.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/blue_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/blue_wool.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/bone_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/bone_block.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/bone_meal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/bone_meal.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/book.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/book_cloning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/book_cloning.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/bookshelf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/bookshelf.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/bow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/bow.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/bowl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/bowl.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/bread.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/bread.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/brewing_stand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/brewing_stand.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/brick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/brick.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/brick_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/brick_slab.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/brick_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/brick_stairs.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/brick_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/brick_wall.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/bricks.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/brown_banner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/brown_banner.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/brown_bed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/brown_bed.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/brown_carpet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/brown_carpet.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/brown_dye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/brown_dye.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/brown_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/brown_terracotta.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/brown_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/brown_wool.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/bucket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/bucket.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/cake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/cake.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/campfire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/campfire.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/carrot_on_a_stick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/carrot_on_a_stick.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/cartography_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/cartography_table.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/cauldron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/cauldron.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/chain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/chain.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/charcoal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/charcoal.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/chest.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/chest_minecart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/chest_minecart.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/chiseled_sandstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/chiseled_sandstone.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/clay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/clay.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/clock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/clock.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/coal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/coal.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/coal_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/coal_block.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/coal_from_blasting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/coal_from_blasting.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/coal_from_smelting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/coal_from_smelting.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/coarse_dirt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/coarse_dirt.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/cobblestone_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/cobblestone_slab.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/cobblestone_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/cobblestone_stairs.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/cobblestone_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/cobblestone_wall.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/comparator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/comparator.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/compass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/compass.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/composter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/composter.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/conduit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/conduit.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/cooked_beef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/cooked_beef.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/cooked_chicken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/cooked_chicken.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/cooked_cod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/cooked_cod.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/cooked_mutton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/cooked_mutton.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/cooked_porkchop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/cooked_porkchop.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/cooked_rabbit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/cooked_rabbit.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/cooked_salmon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/cooked_salmon.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/cookie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/cookie.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/crafting_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/crafting_table.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/crimson_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/crimson_button.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/crimson_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/crimson_door.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/crimson_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/crimson_fence.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/crimson_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/crimson_fence_gate.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/crimson_hyphae.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/crimson_hyphae.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/crimson_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/crimson_planks.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/crimson_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/crimson_sign.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/crimson_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/crimson_slab.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/crimson_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/crimson_stairs.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/crimson_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/crimson_trapdoor.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/crossbow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/crossbow.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/cut_red_sandstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/cut_red_sandstone.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/cut_sandstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/cut_sandstone.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/cut_sandstone_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/cut_sandstone_slab.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/cyan_banner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/cyan_banner.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/cyan_bed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/cyan_bed.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/cyan_carpet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/cyan_carpet.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/cyan_dye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/cyan_dye.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/cyan_stained_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/cyan_stained_glass.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/cyan_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/cyan_terracotta.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/cyan_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/cyan_wool.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/dark_oak_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/dark_oak_boat.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/dark_oak_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/dark_oak_button.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/dark_oak_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/dark_oak_door.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/dark_oak_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/dark_oak_fence.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/dark_oak_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/dark_oak_planks.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/dark_oak_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/dark_oak_sign.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/dark_oak_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/dark_oak_slab.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/dark_oak_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/dark_oak_stairs.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/dark_oak_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/dark_oak_trapdoor.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/dark_oak_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/dark_oak_wood.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/dark_prismarine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/dark_prismarine.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/daylight_detector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/daylight_detector.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/detector_rail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/detector_rail.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/diamond.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/diamond_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/diamond_axe.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/diamond_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/diamond_block.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/diamond_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/diamond_boots.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/diamond_chestplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/diamond_chestplate.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/diamond_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/diamond_helmet.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/diamond_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/diamond_hoe.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/diamond_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/diamond_leggings.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/diamond_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/diamond_pickaxe.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/diamond_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/diamond_shovel.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/diamond_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/diamond_sword.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/diorite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/diorite.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/diorite_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/diorite_slab.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/diorite_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/diorite_stairs.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/diorite_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/diorite_wall.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/dispenser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/dispenser.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/dried_kelp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/dried_kelp.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/dried_kelp_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/dried_kelp_block.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/dropper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/dropper.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/emerald.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/emerald_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/emerald_block.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/enchanting_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/enchanting_table.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/end_crystal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/end_crystal.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/end_rod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/end_rod.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/end_stone_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/end_stone_bricks.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/ender_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/ender_chest.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/ender_eye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/ender_eye.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/fire_charge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/fire_charge.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/firework_rocket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/firework_rocket.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/firework_star.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/firework_star.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/fishing_rod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/fishing_rod.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/fletching_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/fletching_table.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/flint_and_steel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/flint_and_steel.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/flower_pot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/flower_pot.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/furnace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/furnace.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/furnace_minecart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/furnace_minecart.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/glass.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/glass_bottle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/glass_bottle.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/glass_pane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/glass_pane.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/glowstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/glowstone.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/gold_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/gold_block.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/gold_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/gold_ingot.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/gold_nugget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/gold_nugget.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/golden_apple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/golden_apple.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/golden_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/golden_axe.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/golden_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/golden_boots.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/golden_carrot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/golden_carrot.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/golden_chestplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/golden_chestplate.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/golden_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/golden_helmet.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/golden_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/golden_hoe.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/golden_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/golden_leggings.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/golden_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/golden_pickaxe.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/golden_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/golden_shovel.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/golden_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/golden_sword.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/granite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/granite.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/granite_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/granite_slab.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/granite_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/granite_stairs.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/granite_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/granite_wall.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/gray_banner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/gray_banner.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/gray_bed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/gray_bed.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/gray_carpet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/gray_carpet.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/gray_dye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/gray_dye.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/gray_stained_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/gray_stained_glass.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/gray_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/gray_terracotta.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/gray_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/gray_wool.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/green_banner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/green_banner.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/green_bed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/green_bed.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/green_carpet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/green_carpet.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/green_dye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/green_dye.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/green_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/green_terracotta.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/green_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/green_wool.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/grindstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/grindstone.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/hay_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/hay_block.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/honey_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/honey_block.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/honey_bottle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/honey_bottle.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/honeycomb_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/honeycomb_block.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/hopper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/hopper.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/hopper_minecart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/hopper_minecart.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/iron_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/iron_axe.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/iron_bars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/iron_bars.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/iron_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/iron_block.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/iron_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/iron_boots.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/iron_chestplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/iron_chestplate.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/iron_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/iron_door.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/iron_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/iron_helmet.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/iron_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/iron_hoe.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/iron_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/iron_ingot.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/iron_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/iron_leggings.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/iron_nugget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/iron_nugget.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/iron_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/iron_pickaxe.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/iron_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/iron_shovel.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/iron_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/iron_sword.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/iron_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/iron_trapdoor.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/item_frame.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/item_frame.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/jack_o_lantern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/jack_o_lantern.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/jukebox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/jukebox.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/jungle_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/jungle_boat.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/jungle_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/jungle_button.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/jungle_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/jungle_door.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/jungle_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/jungle_fence.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/jungle_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/jungle_fence_gate.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/jungle_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/jungle_planks.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/jungle_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/jungle_sign.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/jungle_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/jungle_slab.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/jungle_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/jungle_stairs.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/jungle_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/jungle_trapdoor.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/jungle_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/jungle_wood.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/ladder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/ladder.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/lantern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/lantern.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/lapis_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/lapis_block.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/lapis_lazuli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/lapis_lazuli.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/lead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/lead.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/leather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/leather.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/leather_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/leather_boots.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/leather_chestplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/leather_chestplate.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/leather_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/leather_helmet.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/leather_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/leather_leggings.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/lectern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/lectern.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/lever.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/lever.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/light_blue_banner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/light_blue_banner.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/light_blue_bed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/light_blue_bed.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/light_blue_carpet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/light_blue_carpet.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/light_blue_dye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/light_blue_dye.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/light_blue_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/light_blue_wool.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/light_gray_banner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/light_gray_banner.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/light_gray_bed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/light_gray_bed.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/light_gray_carpet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/light_gray_carpet.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/light_gray_dye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/light_gray_dye.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/light_gray_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/light_gray_wool.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/lime_banner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/lime_banner.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/lime_bed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/lime_bed.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/lime_carpet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/lime_carpet.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/lime_dye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/lime_dye.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/lime_stained_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/lime_stained_glass.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/lime_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/lime_terracotta.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/lime_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/lime_wool.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/lodestone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/lodestone.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/loom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/loom.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/magenta_banner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/magenta_banner.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/magenta_bed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/magenta_bed.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/magenta_carpet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/magenta_carpet.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/magenta_dye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/magenta_dye.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/magenta_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/magenta_terracotta.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/magenta_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/magenta_wool.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/magma_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/magma_block.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/magma_cream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/magma_cream.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/map.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/map_cloning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/map_cloning.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/map_extending.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/map_extending.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/melon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/melon.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/melon_seeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/melon_seeds.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/minecart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/minecart.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/mossy_cobblestone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/mossy_cobblestone.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/mossy_stone_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/mossy_stone_bricks.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/mushroom_stew.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/mushroom_stew.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/nether_brick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/nether_brick.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/nether_brick_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/nether_brick_fence.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/nether_brick_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/nether_brick_slab.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/nether_brick_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/nether_brick_wall.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/nether_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/nether_bricks.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/nether_wart_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/nether_wart_block.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/netherite_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/netherite_block.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/netherite_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/netherite_ingot.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/netherite_scrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/netherite_scrap.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/note_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/note_block.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/oak_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/oak_boat.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/oak_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/oak_button.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/oak_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/oak_door.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/oak_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/oak_fence.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/oak_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/oak_fence_gate.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/oak_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/oak_planks.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/oak_pressure_plate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/oak_pressure_plate.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/oak_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/oak_sign.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/oak_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/oak_slab.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/oak_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/oak_stairs.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/oak_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/oak_trapdoor.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/oak_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/oak_wood.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/observer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/observer.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/orange_banner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/orange_banner.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/orange_bed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/orange_bed.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/orange_carpet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/orange_carpet.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/orange_dye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/orange_dye.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/orange_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/orange_terracotta.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/orange_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/orange_wool.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/packed_ice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/packed_ice.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/painting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/painting.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/paper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/paper.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/pink_banner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/pink_banner.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/pink_bed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/pink_bed.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/pink_carpet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/pink_carpet.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/pink_dye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/pink_dye.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/pink_stained_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/pink_stained_glass.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/pink_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/pink_terracotta.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/pink_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/pink_wool.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/piston.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/piston.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/polished_andesite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/polished_andesite.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/polished_basalt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/polished_basalt.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/polished_diorite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/polished_diorite.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/polished_granite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/polished_granite.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/powered_rail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/powered_rail.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/prismarine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/prismarine.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/prismarine_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/prismarine_bricks.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/prismarine_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/prismarine_slab.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/prismarine_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/prismarine_stairs.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/prismarine_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/prismarine_wall.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/pumpkin_pie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/pumpkin_pie.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/pumpkin_seeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/pumpkin_seeds.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/purple_banner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/purple_banner.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/purple_bed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/purple_bed.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/purple_carpet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/purple_carpet.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/purple_dye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/purple_dye.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/purple_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/purple_terracotta.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/purple_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/purple_wool.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/purpur_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/purpur_block.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/purpur_pillar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/purpur_pillar.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/purpur_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/purpur_slab.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/purpur_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/purpur_stairs.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/quartz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/quartz.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/quartz_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/quartz_block.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/quartz_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/quartz_bricks.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/quartz_pillar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/quartz_pillar.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/quartz_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/quartz_slab.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/quartz_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/quartz_stairs.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/rail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/rail.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/red_banner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/red_banner.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/red_bed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/red_bed.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/red_carpet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/red_carpet.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/red_dye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/red_dye.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/red_dye_from_tulip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/red_dye_from_tulip.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/red_nether_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/red_nether_bricks.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/red_sandstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/red_sandstone.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/red_sandstone_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/red_sandstone_slab.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/red_sandstone_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/red_sandstone_wall.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/red_stained_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/red_stained_glass.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/red_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/red_terracotta.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/red_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/red_wool.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/redstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/redstone.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/redstone_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/redstone_block.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/redstone_lamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/redstone_lamp.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/redstone_torch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/redstone_torch.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/repair_item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/repair_item.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/repeater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/repeater.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/respawn_anchor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/respawn_anchor.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/sandstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/sandstone.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/sandstone_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/sandstone_slab.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/sandstone_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/sandstone_stairs.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/sandstone_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/sandstone_wall.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/scaffolding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/scaffolding.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/sea_lantern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/sea_lantern.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/shears.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/shears.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/shield.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/shield_decoration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/shield_decoration.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/shulker_box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/shulker_box.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/slime_ball.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/slime_ball.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/slime_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/slime_block.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/smithing_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/smithing_table.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/smoker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/smoker.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/smooth_quartz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/smooth_quartz.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/smooth_quartz_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/smooth_quartz_slab.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/smooth_sandstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/smooth_sandstone.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/smooth_stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/smooth_stone.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/smooth_stone_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/smooth_stone_slab.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/snow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/snow.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/snow_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/snow_block.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/soul_campfire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/soul_campfire.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/soul_lantern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/soul_lantern.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/soul_torch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/soul_torch.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/spectral_arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/spectral_arrow.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/sponge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/sponge.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/spruce_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/spruce_boat.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/spruce_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/spruce_button.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/spruce_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/spruce_door.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/spruce_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/spruce_fence.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/spruce_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/spruce_fence_gate.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/spruce_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/spruce_planks.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/spruce_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/spruce_sign.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/spruce_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/spruce_slab.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/spruce_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/spruce_stairs.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/spruce_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/spruce_trapdoor.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/spruce_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/spruce_wood.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/stick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/stick.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/sticky_piston.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/sticky_piston.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/stone.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/stone_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/stone_axe.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/stone_brick_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/stone_brick_slab.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/stone_brick_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/stone_brick_stairs.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/stone_brick_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/stone_brick_wall.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/stone_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/stone_bricks.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/stone_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/stone_button.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/stone_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/stone_hoe.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/stone_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/stone_pickaxe.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/stone_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/stone_shovel.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/stone_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/stone_slab.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/stone_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/stone_stairs.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/stone_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/stone_sword.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/stonecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/stonecutter.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/stripped_oak_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/stripped_oak_wood.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/suspicious_stew.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/suspicious_stew.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/target.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/terracotta.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/tipped_arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/tipped_arrow.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/tnt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/tnt.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/tnt_minecart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/tnt_minecart.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/torch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/torch.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/trapped_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/trapped_chest.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/tripwire_hook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/tripwire_hook.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/turtle_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/turtle_helmet.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/warped_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/warped_button.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/warped_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/warped_door.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/warped_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/warped_fence.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/warped_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/warped_fence_gate.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/warped_hyphae.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/warped_hyphae.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/warped_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/warped_planks.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/warped_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/warped_sign.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/warped_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/warped_slab.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/warped_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/warped_stairs.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/warped_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/warped_trapdoor.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/wheat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/wheat.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/white_banner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/white_banner.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/white_bed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/white_bed.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/white_carpet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/white_carpet.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/white_dye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/white_dye.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/white_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/white_terracotta.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/wooden_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/wooden_axe.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/wooden_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/wooden_hoe.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/wooden_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/wooden_pickaxe.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/wooden_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/wooden_shovel.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/wooden_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/wooden_sword.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/writable_book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/writable_book.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/yellow_banner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/yellow_banner.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/yellow_bed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/yellow_bed.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/yellow_carpet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/yellow_carpet.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/yellow_dye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/yellow_dye.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/yellow_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/yellow_terracotta.json -------------------------------------------------------------------------------- /src/optimus1/helper/recipes/yellow_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/recipes/yellow_wool.json -------------------------------------------------------------------------------- /src/optimus1/helper/slot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/slot.py -------------------------------------------------------------------------------- /src/optimus1/helper/tag_items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/helper/tag_items.json -------------------------------------------------------------------------------- /src/optimus1/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/main.py -------------------------------------------------------------------------------- /src/optimus1/memories/__init__.py: -------------------------------------------------------------------------------- 1 | from .memory import * 2 | -------------------------------------------------------------------------------- /src/optimus1/memories/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/memories/graph.py -------------------------------------------------------------------------------- /src/optimus1/memories/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/memories/memory.py -------------------------------------------------------------------------------- /src/optimus1/memories/v1/reflection/chop_trees.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/memories/v1/reflection/chop_trees.json -------------------------------------------------------------------------------- /src/optimus1/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/optimus1/models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/base_model.py -------------------------------------------------------------------------------- /src/optimus1/models/deepseek_vl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/deepseek_vl/__init__.py -------------------------------------------------------------------------------- /src/optimus1/models/deepseek_vl/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/deepseek_vl/models/__init__.py -------------------------------------------------------------------------------- /src/optimus1/models/deepseek_vl/models/projector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/deepseek_vl/models/projector.py -------------------------------------------------------------------------------- /src/optimus1/models/deepseek_vl/models/sam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/deepseek_vl/models/sam.py -------------------------------------------------------------------------------- /src/optimus1/models/deepseek_vl/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/deepseek_vl/utils/__init__.py -------------------------------------------------------------------------------- /src/optimus1/models/deepseek_vl/utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/deepseek_vl/utils/io.py -------------------------------------------------------------------------------- /src/optimus1/models/deepseek_vl_planning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/deepseek_vl_planning.py -------------------------------------------------------------------------------- /src/optimus1/models/gpt4_planning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/gpt4_planning.py -------------------------------------------------------------------------------- /src/optimus1/models/steve1/VPT/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/optimus1/models/steve1/VPT/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/steve1/VPT/agent.py -------------------------------------------------------------------------------- /src/optimus1/models/steve1/VPT/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/optimus1/models/steve1/VPT/lib/action_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/steve1/VPT/lib/action_head.py -------------------------------------------------------------------------------- /src/optimus1/models/steve1/VPT/lib/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/steve1/VPT/lib/actions.py -------------------------------------------------------------------------------- /src/optimus1/models/steve1/VPT/lib/impala_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/steve1/VPT/lib/impala_cnn.py -------------------------------------------------------------------------------- /src/optimus1/models/steve1/VPT/lib/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/steve1/VPT/lib/misc.py -------------------------------------------------------------------------------- /src/optimus1/models/steve1/VPT/lib/mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/steve1/VPT/lib/mlp.py -------------------------------------------------------------------------------- /src/optimus1/models/steve1/VPT/lib/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/steve1/VPT/lib/policy.py -------------------------------------------------------------------------------- /src/optimus1/models/steve1/VPT/lib/torch_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/steve1/VPT/lib/torch_util.py -------------------------------------------------------------------------------- /src/optimus1/models/steve1/VPT/lib/tree_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/steve1/VPT/lib/tree_util.py -------------------------------------------------------------------------------- /src/optimus1/models/steve1/VPT/lib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/steve1/VPT/lib/util.py -------------------------------------------------------------------------------- /src/optimus1/models/steve1/VPT/lib/xf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/steve1/VPT/lib/xf.py -------------------------------------------------------------------------------- /src/optimus1/models/steve1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/optimus1/models/steve1/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/steve1/config.py -------------------------------------------------------------------------------- /src/optimus1/models/steve1/data/EpisodeStorage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/steve1/data/EpisodeStorage.py -------------------------------------------------------------------------------- /src/optimus1/models/steve1/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/optimus1/models/steve1/data/generation/__init_.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/optimus1/models/steve1/data/utils/contractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/steve1/data/utils/contractor.py -------------------------------------------------------------------------------- /src/optimus1/models/steve1/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/steve1/helpers.py -------------------------------------------------------------------------------- /src/optimus1/models/steve1/mineclip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/steve1/mineclip/__init__.py -------------------------------------------------------------------------------- /src/optimus1/models/steve1/mineclip/utils/mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/steve1/mineclip/utils/mlp.py -------------------------------------------------------------------------------- /src/optimus1/models/steve1/mineclip/utils/once.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/steve1/mineclip/utils/once.py -------------------------------------------------------------------------------- /src/optimus1/models/steve1/utils/embed_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/steve1/utils/embed_utils.py -------------------------------------------------------------------------------- /src/optimus1/models/steve1/utils/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/steve1/utils/file_utils.py -------------------------------------------------------------------------------- /src/optimus1/models/steve1/utils/video_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/steve1/utils/video_utils.py -------------------------------------------------------------------------------- /src/optimus1/models/steve_action_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/steve_action_model.py -------------------------------------------------------------------------------- /src/optimus1/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/models/utils.py -------------------------------------------------------------------------------- /src/optimus1/monitor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/monitor/__init__.py -------------------------------------------------------------------------------- /src/optimus1/monitor/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/monitor/monitor.py -------------------------------------------------------------------------------- /src/optimus1/monitor/monitors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/monitor/monitors.py -------------------------------------------------------------------------------- /src/optimus1/monitor/step_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/monitor/step_monitor.py -------------------------------------------------------------------------------- /src/optimus1/monitor/success_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/monitor/success_monitor.py -------------------------------------------------------------------------------- /src/optimus1/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/optimus1/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/optimus1/server/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/server/agent.py -------------------------------------------------------------------------------- /src/optimus1/server/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/optimus1/server/api/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/server/api/request.py -------------------------------------------------------------------------------- /src/optimus1/server/api/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/server/api/utils.py -------------------------------------------------------------------------------- /src/optimus1/test_optimus1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/test_optimus1.py -------------------------------------------------------------------------------- /src/optimus1/tests/minerl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/tests/minerl.py -------------------------------------------------------------------------------- /src/optimus1/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/util/__init__.py -------------------------------------------------------------------------------- /src/optimus1/util/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/util/decorator.py -------------------------------------------------------------------------------- /src/optimus1/util/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/util/image.py -------------------------------------------------------------------------------- /src/optimus1/util/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/util/logger.py -------------------------------------------------------------------------------- /src/optimus1/util/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/util/prompt.py -------------------------------------------------------------------------------- /src/optimus1/util/server_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/util/server_api.py -------------------------------------------------------------------------------- /src/optimus1/util/thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/util/thread.py -------------------------------------------------------------------------------- /src/optimus1/util/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/util/tools.py -------------------------------------------------------------------------------- /src/optimus1/util/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/util/utils.py -------------------------------------------------------------------------------- /src/optimus1/util/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/src/optimus1/util/video.py -------------------------------------------------------------------------------- /uv-installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/uv-installer.sh -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiuTian-VL/Optimus-1/HEAD/uv.lock --------------------------------------------------------------------------------