├── .editorconfig ├── .github └── workflows │ ├── build.yml │ ├── release.yml │ └── snapshot.yml ├── .gitignore ├── .idea └── icon.png ├── CHANGELOG.txt ├── CONTRIBUTING.md ├── CREDIT ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── modules ├── attributes │ ├── build.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── fabricators_of_create │ │ │ │ └── porting_lib │ │ │ │ └── attributes │ │ │ │ ├── BooleanAttribute.java │ │ │ │ ├── PortingLibAttributes.java │ │ │ │ ├── injections │ │ │ │ └── PlayerAttributesInjection.java │ │ │ │ └── mixin │ │ │ │ ├── client │ │ │ │ └── LocalPlayerMixin.java │ │ │ │ └── common │ │ │ │ ├── AttributeMapMixin.java │ │ │ │ ├── DataFixersMixin.java │ │ │ │ ├── LivingEntityMixin.java │ │ │ │ ├── PlayerMixin.java │ │ │ │ ├── ServerGamePacketListenerImplMixin.java │ │ │ │ └── ServerPlayerMixin.java │ │ └── resources │ │ │ ├── assets │ │ │ └── porting_lib │ │ │ │ └── lang │ │ │ │ └── en_us.json │ │ │ ├── fabric.mod.json │ │ │ └── porting_lib_attributes.mixins.json │ │ └── testmod │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── attributes │ │ │ └── testmod │ │ │ └── MayFlyAttributeTest.java │ │ └── resources │ │ └── fabric.mod.json ├── base │ ├── build.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ ├── PortingLibBase.java │ │ │ ├── PortingLibBaseClient.java │ │ │ ├── client │ │ │ ├── armor │ │ │ │ ├── ArmorRenderer.java │ │ │ │ └── ArmorRendererRegistry.java │ │ │ ├── dimesnion │ │ │ │ └── DimensionSpecialEffectsRenderer.java │ │ │ └── entity │ │ │ │ └── CustomBoatModel.java │ │ │ ├── command │ │ │ ├── ConfigCommand.java │ │ │ ├── EnumArgument.java │ │ │ └── ModIdArgument.java │ │ │ ├── enchant │ │ │ └── CustomEnchantingBehaviorItem.java │ │ │ ├── event │ │ │ ├── client │ │ │ │ ├── ColorHandlersCallback.java │ │ │ │ ├── CreateSkullModelsCallback.java │ │ │ │ ├── DrawSelectionEvents.java │ │ │ │ ├── EntityAddedLayerCallback.java │ │ │ │ ├── FieldOfViewEvents.java │ │ │ │ ├── FogEvents.java │ │ │ │ ├── InstanceRegistrationCallback.java │ │ │ │ ├── InteractEvents.java │ │ │ │ ├── KeyInputCallback.java │ │ │ │ ├── LivingEntityRenderEvents.java │ │ │ │ ├── MinecraftTailCallback.java │ │ │ │ ├── ModelLoadCallback.java │ │ │ │ ├── MouseInputEvents.java │ │ │ │ ├── OverlayRenderCallback.java │ │ │ │ ├── ParticleManagerRegistrationCallback.java │ │ │ │ ├── PreRenderTooltipCallback.java │ │ │ │ ├── RenderFrameEvent.java │ │ │ │ ├── RenderPlayerEvents.java │ │ │ │ ├── RenderTooltipBorderColorCallback.java │ │ │ │ └── TextureAtlasStitchedEvent.java │ │ │ └── common │ │ │ │ ├── AdvancementEvent.java │ │ │ │ ├── ChunkWatchEvent.java │ │ │ │ ├── ExplosionEvents.java │ │ │ │ ├── GrindstoneEvent.java │ │ │ │ ├── ItemAttributeModifierEvent.java │ │ │ │ └── ModsLoadedCallback.java │ │ │ ├── extensions │ │ │ ├── client │ │ │ │ ├── AbstractTextureExtension.java │ │ │ │ ├── PoseStackExtension.java │ │ │ │ ├── RenderTargetExtension.java │ │ │ │ └── TextureAtlasSpriteExtension.java │ │ │ └── common │ │ │ │ ├── GrindstoneMenuExtension.java │ │ │ │ ├── LevelExtensions.java │ │ │ │ ├── ResourceLocationExtension.java │ │ │ │ ├── SlotExtension.java │ │ │ │ ├── StructureProcessorExtension.java │ │ │ │ ├── TagAppenderExtension.java │ │ │ │ └── TiersExtension.java │ │ │ ├── item │ │ │ └── DamageableItem.java │ │ │ ├── mixin │ │ │ ├── PortingLibMixinPlugin.java │ │ │ ├── client │ │ │ │ ├── AbstractClientPlayerMixin.java │ │ │ │ ├── AbstractTextureMixin.java │ │ │ │ ├── BlockColorsMixin.java │ │ │ │ ├── BlockRenderDispatcherMixin.java │ │ │ │ ├── BoatRendererMixin.java │ │ │ │ ├── ChestRendererMixin.java │ │ │ │ ├── ClientLanguageAccessor.java │ │ │ │ ├── ClientPacketListenerMixin.java │ │ │ │ ├── EntityRenderDispatcherMixin.java │ │ │ │ ├── FogRendererMixin.java │ │ │ │ ├── GameRendererMixin.java │ │ │ │ ├── GuiGraphicsMixin.java │ │ │ │ ├── GuiMixin.java │ │ │ │ ├── HumanoidArmorLayerMixin.java │ │ │ │ ├── I18nMixin.java │ │ │ │ ├── ItemColorsMixin.java │ │ │ │ ├── KeyboardHandlerMixin.java │ │ │ │ ├── LevelRendererMixin.java │ │ │ │ ├── LightTextureMixin.java │ │ │ │ ├── LivingEntityRendererMixin.java │ │ │ │ ├── MinecraftMixin.java │ │ │ │ ├── ModelBakeryMixin.java │ │ │ │ ├── MouseHandlerMixin.java │ │ │ │ ├── ParticleEngineMixin.java │ │ │ │ ├── PlayerRendererMixin.java │ │ │ │ ├── PoseStackMixin.java │ │ │ │ ├── PostChainMixin.java │ │ │ │ ├── RenderTargetMixin.java │ │ │ │ ├── SkullBlockRendererMixin.java │ │ │ │ ├── TextureAtlasMixin.java │ │ │ │ ├── TextureAtlasSprite$AnimatedTextureAccessor.java │ │ │ │ ├── TextureAtlasSpriteMixin.java │ │ │ │ └── frex │ │ │ │ │ └── EntityBlockRenderContextMixin.java │ │ │ └── common │ │ │ │ ├── AnvilMenuMixin.java │ │ │ │ ├── BeardifierMixin.java │ │ │ │ ├── BlockStateMixin.java │ │ │ │ ├── BoatMixin.java │ │ │ │ ├── ChunkMapMixin.java │ │ │ │ ├── ConnectionMixin.java │ │ │ │ ├── EnchantmentHelperMixin.java │ │ │ │ ├── EntityMixin.java │ │ │ │ ├── ExplosionMixin.java │ │ │ │ ├── FlyingMobMixin.java │ │ │ │ ├── GrindstoneMenuMixin.java │ │ │ │ ├── ItemEnchantmentsPredicate$EnchantmentsMixin.java │ │ │ │ ├── ItemStackMixin.java │ │ │ │ ├── LevelMixin.java │ │ │ │ ├── MainMixin.java │ │ │ │ ├── MinecartItemMixin.java │ │ │ │ ├── PlayerAdvancementsMixin.java │ │ │ │ ├── PlayerChunkSenderMixin.java │ │ │ │ ├── PlayerListMixin.java │ │ │ │ ├── PlayerMixin.java │ │ │ │ ├── ResourceLocationMixin.java │ │ │ │ ├── ShapedRecipePattern$DataMixin.java │ │ │ │ ├── ShapelessRecipe$SerializerMixin.java │ │ │ │ ├── ShapelessRecipeMixin.java │ │ │ │ ├── SlotMixin.java │ │ │ │ ├── SpawnEggItemMixin.java │ │ │ │ ├── StructureProcessorMixin.java │ │ │ │ ├── StructureTemplateMixin.java │ │ │ │ ├── TagAppenderMixin.java │ │ │ │ └── TiersMixin.java │ │ │ ├── util │ │ │ ├── Constants.java │ │ │ ├── CyclePresentException.java │ │ │ ├── DeferredSpawnEggItem.java │ │ │ ├── ForgeI18n.java │ │ │ ├── IdentifiableSimplePreparableReloadListener.java │ │ │ ├── KeyBindingHelper.java │ │ │ ├── LazySoundType.java │ │ │ ├── MaterialChest.java │ │ │ ├── NetworkDirection.java │ │ │ ├── PortingHooks.java │ │ │ ├── ScreenHelper.java │ │ │ ├── StickinessUtil.java │ │ │ ├── StronglyConnectedComponentDetector.java │ │ │ ├── StructureTemplateUtils.java │ │ │ ├── TablePrinter.java │ │ │ ├── TagUtil.java │ │ │ ├── TopologicalSort.java │ │ │ ├── UsernameCache.java │ │ │ └── client │ │ │ │ ├── ClientHooks.java │ │ │ │ ├── ExtendedSlider.java │ │ │ │ └── ScrollPanel.java │ │ │ └── world │ │ │ ├── PieceBeardifierIterator.java │ │ │ └── PieceBeardifierModifier.java │ │ └── resources │ │ ├── assets │ │ ├── forge │ │ │ ├── icon.png │ │ │ ├── models │ │ │ │ └── item │ │ │ │ │ ├── bucket.json │ │ │ │ │ ├── bucket_drip.json │ │ │ │ │ ├── default-tool.json │ │ │ │ │ └── default.json │ │ │ └── textures │ │ │ │ └── item │ │ │ │ └── mask │ │ │ │ ├── bucket_fluid.png │ │ │ │ ├── bucket_fluid_cover.png │ │ │ │ ├── bucket_fluid_cover_drip.png │ │ │ │ └── bucket_fluid_drip.png │ │ └── porting_lib │ │ │ ├── lang │ │ │ └── en_us.json │ │ │ └── white.png │ │ ├── data │ │ ├── c │ │ │ └── tags │ │ │ │ └── blocks │ │ │ │ └── rails │ │ │ │ └── activator.json │ │ └── forge │ │ │ └── loot_modifiers │ │ │ └── global_loot_modifiers.json │ │ ├── fabric.mod.json │ │ ├── porting_lib_base.accesswidener │ │ └── porting_lib_base.mixins.json ├── blocks │ ├── build.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── blocks │ │ │ ├── BlockEvents.java │ │ │ ├── BlockHooks.java │ │ │ ├── ClientBlockHooks.java │ │ │ ├── CullingBlockEntityIterator.java │ │ │ ├── extensions │ │ │ ├── BeaconColorMultiplierBlock.java │ │ │ ├── ChunkUnloadListeningBlockEntity.java │ │ │ ├── CollisionExtendsVerticallyBlock.java │ │ │ ├── ConnectableRedstoneBlock.java │ │ │ ├── CustomBurnabilityBlock.java │ │ │ ├── CustomDataPacketHandlingBlockEntity.java │ │ │ ├── CustomDestroyEffectsBlock.java │ │ │ ├── CustomDisplayFluidOverlayBlock.java │ │ │ ├── CustomExpBlock.java │ │ │ ├── CustomFrictionBlock.java │ │ │ ├── CustomHitEffectsBlock.java │ │ │ ├── CustomLadderBlock.java │ │ │ ├── CustomLandingEffectsBlock.java │ │ │ ├── CustomRailDirectionBlock.java │ │ │ ├── CustomRenderBoundingBoxBlockEntity.java │ │ │ ├── CustomRunningEffectsBlock.java │ │ │ ├── CustomScaffoldingBlock.java │ │ │ ├── CustomSlimeBlock.java │ │ │ ├── CustomSoundTypeBlock.java │ │ │ ├── CustomUpdateTagHandlingBlockEntity.java │ │ │ ├── EnchantmentBonusBlock.java │ │ │ ├── EntityDestroyBlock.java │ │ │ ├── ExplosionResistanceBlock.java │ │ │ ├── FaceHidingBlock.java │ │ │ ├── FireSourceBlock.java │ │ │ ├── FlammableBlock.java │ │ │ ├── HarvestableBlock.java │ │ │ ├── LightEmissiveBlock.java │ │ │ ├── MinecartPassHandlerBlock.java │ │ │ ├── NeighborChangeListeningBlock.java │ │ │ ├── OnExplodedBlock.java │ │ │ ├── OnLoadBlockEntity.java │ │ │ ├── OnTreeGrowBlock.java │ │ │ ├── PlayerDestroyBlock.java │ │ │ ├── SlopeCreationCheckingRailBlock.java │ │ │ ├── StateViewpointBlock.java │ │ │ ├── StickToBlock.java │ │ │ ├── StickyBlock.java │ │ │ ├── SupportsClimbableOpenTrapdoorBlock.java │ │ │ ├── VanillaCustomExpBlock.java │ │ │ └── WeakPowerCheckingBlock.java │ │ │ ├── fixes │ │ │ └── ForgeBlockEntityFix.java │ │ │ ├── injects │ │ │ ├── BlockEntityInjection.java │ │ │ ├── BlockStateInjection.java │ │ │ ├── CameraInjection.java │ │ │ ├── LevelInjection.java │ │ │ └── PlayerInjection.java │ │ │ ├── mixin │ │ │ ├── PortingLibBlocksMixinPlugin.java │ │ │ ├── client │ │ │ │ ├── CameraMixin.java │ │ │ │ ├── ClientPacketListenerMixin.java │ │ │ │ ├── LevelRendererMixin.java │ │ │ │ ├── LiquidBlockRendererMixin.java │ │ │ │ ├── ModelBlockRendererMixin.java │ │ │ │ ├── MultiPlayerGameModeMixin.java │ │ │ │ └── ParticleEngineMixin.java │ │ │ ├── common │ │ │ │ ├── AbstractMinecartAccessor.java │ │ │ │ ├── AbstractMinecartMixin.java │ │ │ │ ├── BeaconBlockEntityMixin.java │ │ │ │ ├── BlockBehavior$PropertiesMixin.java │ │ │ │ ├── BlockBehaviourMixin.java │ │ │ │ ├── BlockEntityMixin.java │ │ │ │ ├── BlockGetterMixin.java │ │ │ │ ├── BlockLightEngineMixin.java │ │ │ │ ├── BlockMixin.java │ │ │ │ ├── BlockStateMixin.java │ │ │ │ ├── DataFixersMixin.java │ │ │ │ ├── DispenseItemBehaviorMixin.java │ │ │ │ ├── DoorBlockMixin.java │ │ │ │ ├── DropExperienceBlockMixin.java │ │ │ │ ├── EnchantmentMenuMixin.java │ │ │ │ ├── EnchantmentTableBlockMixin.java │ │ │ │ ├── EntityMixin.java │ │ │ │ ├── ExperienceOrbMixin.java │ │ │ │ ├── ExplosionDamageCalculatorMixin.java │ │ │ │ ├── FireBlockAccessor.java │ │ │ │ ├── FireBlockMixin.java │ │ │ │ ├── LevelChunkMixin.java │ │ │ │ ├── LevelMixin.java │ │ │ │ ├── LightEngineMixin.java │ │ │ │ ├── LivingEntityMixin.java │ │ │ │ ├── PistonMovingBlockEntityMixin.java │ │ │ │ ├── PistonStructureResolverMixin.java │ │ │ │ ├── PlayerMixin.java │ │ │ │ ├── RailStateMixin.java │ │ │ │ ├── RedStoneOreBlockMixin.java │ │ │ │ ├── RedStoneWireBlockMixin.java │ │ │ │ ├── SculkCatalystBlockMixin.java │ │ │ │ ├── SculkSensorBlockMixin.java │ │ │ │ ├── SculkShriekerBlockMixin.java │ │ │ │ ├── ServerPlayerGameModeMixin.java │ │ │ │ ├── SignalGetterMixin.java │ │ │ │ ├── SpawnerBlockMixin.java │ │ │ │ ├── TntBlockMixin.java │ │ │ │ ├── TrunkPlacerMixin.java │ │ │ │ ├── WitherBossMixin.java │ │ │ │ └── WitherSkullMixin.java │ │ │ └── compat │ │ │ │ └── sodium │ │ │ │ └── FabricBlockAccessMixin.java │ │ │ └── util │ │ │ ├── BlockEntityDataKeys.java │ │ │ └── MinecartAndRailUtil.java │ │ └── resources │ │ ├── fabric.mod.json │ │ ├── porting_lib_blocks.accesswidener │ │ └── porting_lib_blocks.mixins.json ├── brewing │ ├── build.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── brewing │ │ │ ├── BrewingRecipe.java │ │ │ ├── BrewingRecipeRegistry.java │ │ │ ├── IBrewingRecipe.java │ │ │ ├── RegisterBrewingRecipesEvent.java │ │ │ ├── ext │ │ │ ├── PotionBrewingBuilderExt.java │ │ │ └── PotionBrewingExt.java │ │ │ └── mixin │ │ │ ├── BrewingStandBlockEntityMixin.java │ │ │ ├── BrewingStandMenu$IngredientsSlotMixin.java │ │ │ ├── BrewingStandMenu$PotionSlotMixin.java │ │ │ └── PotionBrewingMixin.java │ │ └── resources │ │ ├── fabric.mod.json │ │ ├── porting_lib_brewing.accesswidener │ │ └── porting_lib_brewing.mixins.json ├── chunk_loading │ ├── build.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── chunk │ │ │ └── loading │ │ │ ├── ForcedChunkManager.java │ │ │ ├── LoadingValidationCallback.java │ │ │ ├── TicketController.java │ │ │ ├── TicketHelper.java │ │ │ ├── TicketSet.java │ │ │ ├── extensions │ │ │ ├── DistanceManagerExtension.java │ │ │ ├── ForcedChunksSavedDataExtension.java │ │ │ ├── ServerChunkCacheExtension.java │ │ │ └── TicketExtension.java │ │ │ └── mixin │ │ │ ├── DistanceManagerMixin.java │ │ │ ├── ForcedChunksSavedDataMixin.java │ │ │ ├── MinecraftServerMixin.java │ │ │ ├── ServerChunkCacheMixin.java │ │ │ ├── ServerLevelMixin.java │ │ │ └── TicketMixin.java │ │ └── resources │ │ ├── fabric.mod.json │ │ └── porting_lib_chunk_loading.mixins.json ├── client_events │ ├── build.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── client_events │ │ │ ├── ClientEventHooks.java │ │ │ ├── EntityShaderManager.java │ │ │ ├── event │ │ │ └── client │ │ │ │ ├── ClientPlayerNetworkCloneCallback.java │ │ │ │ ├── ComputeFovModifierEvent.java │ │ │ │ ├── EntityRenderersEvent.java │ │ │ │ ├── InputEvent.java │ │ │ │ ├── MovementInputUpdateCallback.java │ │ │ │ ├── PlaySoundCallback.java │ │ │ │ ├── PlaySoundSourceCallback.java │ │ │ │ ├── RegisterColorResolversCallback.java │ │ │ │ ├── RegisterEntitySpectatorShadersCallback.java │ │ │ │ ├── RenderArmEvent.java │ │ │ │ ├── RenderHandEvent.java │ │ │ │ ├── SelectMusicEvent.java │ │ │ │ └── ViewportEvent.java │ │ │ └── mixin │ │ │ └── client │ │ │ ├── AbstractClientPlayerMixin.java │ │ │ ├── CameraMixin.java │ │ │ ├── ClientLevelMixin.java │ │ │ ├── ClientPacketListenerMixin.java │ │ │ ├── EntityRenderDispatcherMixin.java │ │ │ ├── FogRendererMixin.java │ │ │ ├── GameRendererMixin.java │ │ │ ├── ItemInHandRendererMixin.java │ │ │ ├── KeyboardHandlerMixin.java │ │ │ ├── LocalPlayerMixin.java │ │ │ ├── MinecraftMixin.java │ │ │ ├── MouseHandlerMixin.java │ │ │ ├── MusicManagerMixin.java │ │ │ ├── PlayerRendererMixin.java │ │ │ ├── SkullBlockRendererMixin.java │ │ │ └── SoundEngineMixin.java │ │ └── resources │ │ ├── fabric.mod.json │ │ ├── porting_lib_client_events.accesswidener │ │ └── porting_lib_client_events.mixins.json ├── client_extensions │ ├── build.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── client_extensions │ │ │ ├── ClientExtensionsRegistry.java │ │ │ ├── IClientBlockExtensions.java │ │ │ ├── IClientItemExtensions.java │ │ │ ├── IClientMobEffectExtensions.java │ │ │ └── mixin │ │ │ ├── ItemRendererAccessor.java │ │ │ ├── MinecraftMixin.java │ │ │ └── ParticleEngineMixin.java │ │ └── resources │ │ ├── fabric.mod.json │ │ └── porting_lib_client_extensions.mixins.json ├── common │ ├── build.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── common │ │ │ ├── PortingLibCommon.java │ │ │ ├── extensions │ │ │ └── CustomSortOrderMobEffect.java │ │ │ ├── injects │ │ │ ├── LanguageManagerInjection.java │ │ │ └── LevelReaderInjection.java │ │ │ ├── mixin │ │ │ ├── client │ │ │ │ └── LanguageManagerMixin.java │ │ │ └── common │ │ │ │ ├── LevelReaderMixin.java │ │ │ │ └── MobEffectInstanceMixin.java │ │ │ └── util │ │ │ ├── EnvExecutor.java │ │ │ ├── FriendlyByteBufUtil.java │ │ │ ├── Lazy.java │ │ │ ├── SimpleRecipeType.java │ │ │ ├── SimpleTier.java │ │ │ ├── TriPredicate.java │ │ │ └── TrueCondition.java │ │ └── resources │ │ ├── fabric.mod.json │ │ ├── porting_lib_common.accesswidener │ │ └── porting_lib_common.mixins.json ├── config │ ├── build.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── config │ │ │ ├── ConfigRegistry.java │ │ │ ├── ConfigTracker.java │ │ │ ├── ConfigWatcher.java │ │ │ ├── IConfigSpec.java │ │ │ ├── LoadedConfig.java │ │ │ ├── ModConfig.java │ │ │ ├── ModConfigEvent.java │ │ │ ├── ModConfigSpec.java │ │ │ ├── ModConfigs.java │ │ │ ├── PortingLibConfig.java │ │ │ ├── client │ │ │ ├── PortingLibClientConfig.java │ │ │ ├── PortingLibConfigClient.java │ │ │ ├── compat │ │ │ │ └── PortingLibModMenuCompat.java │ │ │ └── gui │ │ │ │ └── ConfigurationScreen.java │ │ │ ├── mixin │ │ │ ├── client │ │ │ │ └── MinecraftMixin.java │ │ │ └── server │ │ │ │ └── MainMixin.java │ │ │ └── network │ │ │ ├── ConfigSync.java │ │ │ ├── configuration │ │ │ └── SyncConfig.java │ │ │ └── payload │ │ │ └── ConfigFilePayload.java │ │ └── resources │ │ ├── META-INF │ │ └── defaultportinglibconfig.toml │ │ ├── assets │ │ └── porting_lib_config │ │ │ └── lang │ │ │ └── en_us.json │ │ ├── fabric.mod.json │ │ ├── porting_lib_config.accesswidener │ │ └── porting_lib_config.mixins.json ├── core │ ├── build.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── core │ │ │ ├── PortingLib.java │ │ │ ├── client │ │ │ └── PortingLibClient.java │ │ │ ├── event │ │ │ ├── BaseEvent.java │ │ │ ├── CancellableEvent.java │ │ │ └── entity │ │ │ │ ├── EntityEvent.java │ │ │ │ ├── living │ │ │ │ └── LivingEvent.java │ │ │ │ └── player │ │ │ │ └── PlayerEvent.java │ │ │ └── util │ │ │ ├── INBTSerializable.java │ │ │ ├── LamdbaExceptionUtils.java │ │ │ ├── Lazy.java │ │ │ ├── LogicalSidedProvider.java │ │ │ ├── MixinHelper.java │ │ │ ├── MutableDataComponentHolder.java │ │ │ ├── PortingLibExtraCodecs.java │ │ │ ├── PortingLibStreamCodecs.java │ │ │ ├── RecipeMatcher.java │ │ │ ├── ServerLifecycleHooks.java │ │ │ └── TranslatableEnum.java │ │ └── resources │ │ └── fabric.mod.json ├── data │ ├── build.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── data │ │ │ ├── ConditionalRecipeOutput.java │ │ │ ├── DataMapProvider.java │ │ │ ├── DatapackBuiltinEntriesProvider.java │ │ │ ├── ExistingFileHelper.java │ │ │ ├── JsonCodecProvider.java │ │ │ ├── LanguageProvider.java │ │ │ ├── ModdedBlockLootSubProvider.java │ │ │ ├── ModdedEntityLootSubProvider.java │ │ │ ├── ModdedLootTableProvider.java │ │ │ ├── PortingLibDataHack.java │ │ │ ├── PortingLibItemTagsProvider.java │ │ │ ├── PortingLibTagsProvider.java │ │ │ ├── SoundDefinition.java │ │ │ ├── SoundDefinitionsProvider.java │ │ │ ├── SpriteSourceProvider.java │ │ │ ├── extensions │ │ │ ├── MinecraftExtension.java │ │ │ └── RecipeOutputExtension.java │ │ │ └── mixin │ │ │ ├── DynamicRegistriesMixin.java │ │ │ ├── MinecraftMixin.java │ │ │ ├── RecipeOutputMixin.java │ │ │ ├── RecipeProvider$RecipeOutputMixin.java │ │ │ ├── RecipeProviderAccessor.java │ │ │ ├── RegistryPatchGeneratorMixin.java │ │ │ └── RegistrySetBuilderMixin.java │ │ └── resources │ │ ├── fabric.mod.json │ │ ├── porting_lib_data.accesswidener │ │ └── porting_lib_data.mixins.json ├── entity │ ├── build.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── fabricators_of_create │ │ │ │ └── porting_lib │ │ │ │ └── entity │ │ │ │ ├── EffectCure.java │ │ │ │ ├── EffectCures.java │ │ │ │ ├── EntityHooks.java │ │ │ │ ├── IEntityWithComplexSpawn.java │ │ │ │ ├── MultiPartEntity.java │ │ │ │ ├── PartEntity.java │ │ │ │ ├── PortingLibEntity.java │ │ │ │ ├── RemovalFromWorldListener.java │ │ │ │ ├── client │ │ │ │ ├── MobEffectRenderer.java │ │ │ │ └── PortingLibEntityClient.java │ │ │ │ ├── events │ │ │ │ ├── EntityDataEvents.java │ │ │ │ ├── EntityEvents.java │ │ │ │ ├── EntityInvulnerabilityCheckEvent.java │ │ │ │ ├── EntityJoinLevelEvent.java │ │ │ │ ├── EntityLeaveLevelEvent.java │ │ │ │ ├── EntityMountEvent.java │ │ │ │ ├── EntityStruckByLightningEvent.java │ │ │ │ ├── EntityTeleportEvent.java │ │ │ │ ├── MinecartEvents.java │ │ │ │ ├── OnDatapackSyncCallback.java │ │ │ │ ├── ProjectileImpactEvent.java │ │ │ │ ├── ServerPlayerCreationCallback.java │ │ │ │ ├── living │ │ │ │ │ ├── LivingAttackEvent.java │ │ │ │ │ ├── LivingChangeTargetEvent.java │ │ │ │ │ ├── LivingDamageEvent.java │ │ │ │ │ ├── LivingDeathEvent.java │ │ │ │ │ ├── LivingDropsEvent.java │ │ │ │ │ ├── LivingEntityUseItemEvent.java │ │ │ │ │ ├── LivingEvents.java │ │ │ │ │ ├── LivingExperienceDropEvent.java │ │ │ │ │ ├── LivingFallEvent.java │ │ │ │ │ ├── LivingHurtEvent.java │ │ │ │ │ ├── LivingKnockBackEvent.java │ │ │ │ │ ├── LivingUseTotemEvent.java │ │ │ │ │ ├── MobEffectEvent.java │ │ │ │ │ └── ShieldBlockEvent.java │ │ │ │ ├── player │ │ │ │ │ ├── AttackEntityEvent.java │ │ │ │ │ ├── CriticalHitEvent.java │ │ │ │ │ ├── PlayerDestroyItemEvent.java │ │ │ │ │ ├── PlayerEvents.java │ │ │ │ │ ├── PlayerInteractEvent.java │ │ │ │ │ └── PlayerXpEvent.java │ │ │ │ └── tick │ │ │ │ │ ├── EntityTickEvent.java │ │ │ │ │ └── PlayerTickEvent.java │ │ │ │ ├── extensions │ │ │ │ ├── IShearable.java │ │ │ │ └── VanillaIShearable.java │ │ │ │ ├── injects │ │ │ │ ├── AbstractMinecartInjection.java │ │ │ │ ├── EntityInjection.java │ │ │ │ ├── ItemInjection.java │ │ │ │ ├── LevelInjection.java │ │ │ │ ├── LivingEntityInjection.java │ │ │ │ ├── MobEffectInjection.java │ │ │ │ ├── MobEffectInstance$DetailsInjection.java │ │ │ │ ├── MobEffectInstanceInjection.java │ │ │ │ ├── PlayerInjection.java │ │ │ │ └── SlimeInjection.java │ │ │ │ ├── mixin │ │ │ │ ├── accessor │ │ │ │ │ └── PlayerDataStorageAccessor.java │ │ │ │ ├── client │ │ │ │ │ ├── ClientLevel$EntityCallbacksMixin.java │ │ │ │ │ ├── ClientLevelMixin.java │ │ │ │ │ ├── EffectRenderingInventoryScreenMixin.java │ │ │ │ │ ├── EntityRenderDispatcherMixin.java │ │ │ │ │ ├── GuiMixin.java │ │ │ │ │ ├── LocalPlayerMixin.java │ │ │ │ │ ├── MinecraftMixin.java │ │ │ │ │ ├── MultiPlayerGameModeMixin.java │ │ │ │ │ └── RemotePlayerMixin.java │ │ │ │ └── common │ │ │ │ │ ├── AbstractArrowMixin.java │ │ │ │ │ ├── AbstractHorseMixin.java │ │ │ │ │ ├── AbstractHurtingProjectileMixin.java │ │ │ │ │ ├── AbstractMinecartMixin.java │ │ │ │ │ ├── BlockBehaviourMixin.java │ │ │ │ │ ├── BlockableEventLoopAccessor.java │ │ │ │ │ ├── BoggedMixin.java │ │ │ │ │ ├── BundlePacketMixin.java │ │ │ │ │ ├── ChorusFruitItemMixin.java │ │ │ │ │ ├── EnderManMixin.java │ │ │ │ │ ├── EntityMixin.java │ │ │ │ │ ├── ExperienceOrbMixin.java │ │ │ │ │ ├── FireworkRocketEntityMixin.java │ │ │ │ │ ├── FishingHookMixin.java │ │ │ │ │ ├── FurnaceResultSlotMixin.java │ │ │ │ │ ├── ItemMixin.java │ │ │ │ │ ├── LevelMixin.java │ │ │ │ │ ├── LightningBoltMixin.java │ │ │ │ │ ├── LivingEntityMixin.java │ │ │ │ │ ├── LlamaSpitMixin.java │ │ │ │ │ ├── MagmaCubeMixin.java │ │ │ │ │ ├── MobEffectInstance$DetailsMixin.java │ │ │ │ │ ├── MobEffectInstanceMixin.java │ │ │ │ │ ├── MobEffectMixin.java │ │ │ │ │ ├── MobMixin.java │ │ │ │ │ ├── MushroomCowMixin.java │ │ │ │ │ ├── PersistentEntitySectionManager$CallbackMixin.java │ │ │ │ │ ├── PersistentEntitySectionManagerMixin.java │ │ │ │ │ ├── PlayerDataStorageMixin.java │ │ │ │ │ ├── PlayerListMixin.java │ │ │ │ │ ├── PlayerMixin.java │ │ │ │ │ ├── ProjectileUtilMixin.java │ │ │ │ │ ├── ResultSlotMixin.java │ │ │ │ │ ├── ServerEntityMixin.java │ │ │ │ │ ├── ServerGamePacketListenerImpl$1Mixin.java │ │ │ │ │ ├── ServerLevel$EntityCallbacksMixin.java │ │ │ │ │ ├── ServerLevelMixin.java │ │ │ │ │ ├── ServerPlayerGameModeMixin.java │ │ │ │ │ ├── ServerPlayerMixin.java │ │ │ │ │ ├── ShearableMixin.java │ │ │ │ │ ├── ShearsDispenseItemBehaviorMixin.java │ │ │ │ │ ├── SheepMixin.java │ │ │ │ │ ├── ShulkerBulletMixin.java │ │ │ │ │ ├── ShulkerMixin.java │ │ │ │ │ ├── SlimeMixin.java │ │ │ │ │ ├── SnowGolemMixin.java │ │ │ │ │ ├── SpreadPlayersCommandMixin.java │ │ │ │ │ ├── StartAttackingMixin.java │ │ │ │ │ ├── TeleportCommandMixin.java │ │ │ │ │ ├── ThrowableProjectileMixin.java │ │ │ │ │ ├── ThrownEnderpearlMixin.java │ │ │ │ │ └── TransientEntitySectionManager$CallbackMixin.java │ │ │ │ └── network │ │ │ │ └── AdvancedAddEntityPayload.java │ │ └── resources │ │ │ ├── assets │ │ │ └── porting_lib_entity │ │ │ │ └── lang │ │ │ │ └── en_us.json │ │ │ ├── fabric.mod.json │ │ │ ├── porting_lib_entity.accesswidener │ │ │ └── porting_lib_entity.mixins.json │ │ └── testmod │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── entity │ │ │ └── testmod │ │ │ ├── CustomSlime.java │ │ │ ├── CustomSlimeRenderer.java │ │ │ ├── PortingLibEntityTestmod.java │ │ │ └── PortingLibEntityTestmodClient.java │ │ └── resources │ │ └── fabric.mod.json ├── entity_data_serializers │ ├── build.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── entity │ │ │ └── data │ │ │ ├── PortingLibEntityDataSerializers.java │ │ │ └── mixin │ │ │ └── EntityDataSerializersMixin.java │ │ └── resources │ │ ├── fabric.mod.json │ │ └── porting_lib_entity_data_serializers.json ├── fluids │ ├── build.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── fabricators_of_create │ │ │ │ └── porting_lib │ │ │ │ └── fluids │ │ │ │ ├── BaseFlowingFluid.java │ │ │ │ ├── FluidInteractionRegistry.java │ │ │ │ ├── FluidStack.java │ │ │ │ ├── FluidType.java │ │ │ │ ├── FluidUtil.java │ │ │ │ ├── PortingLibFluids.java │ │ │ │ ├── extensions │ │ │ │ ├── ConvertToSourceFluid.java │ │ │ │ ├── FluidExtension.java │ │ │ │ └── FluidStateExtension.java │ │ │ │ ├── mixin │ │ │ │ ├── FlowingFluidAccessor.java │ │ │ │ ├── FlowingFluidMixin.java │ │ │ │ ├── FluidMixin.java │ │ │ │ ├── FluidStateMixin.java │ │ │ │ ├── LiquidBlockMixin.java │ │ │ │ └── PatchedDataComponentMapAccessor.java │ │ │ │ ├── sound │ │ │ │ ├── SoundAction.java │ │ │ │ └── SoundActions.java │ │ │ │ └── wrapper │ │ │ │ ├── FabricFluidTypeWrapper.java │ │ │ │ ├── FluidAttributeFluidType.java │ │ │ │ └── MergingFluidAttributeFluidType.java │ │ └── resources │ │ │ ├── fabric.mod.json │ │ │ └── porting_lib_fluids.mixins.json │ │ └── testmod │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── fluids │ │ │ └── testmod │ │ │ └── PortingLibFluidsTestmod.java │ │ └── resources │ │ └── fabric.mod.json ├── gametest │ ├── build.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── gametest │ │ │ ├── PortingLibGameTest.java │ │ │ ├── PortingLibGameTestClient.java │ │ │ ├── extensions │ │ │ └── StructureBlockEntityExtensions.java │ │ │ ├── infrastructure │ │ │ ├── CustomGameTestHelper.java │ │ │ ├── ExtendedTestFunction.java │ │ │ ├── GameTestGroup.java │ │ │ ├── PortingLibGameTestHelper.java │ │ │ └── PortingLibStructures.java │ │ │ ├── mixin │ │ │ ├── StructureBlockEntityMixin.java │ │ │ └── TestCommandMixin.java │ │ │ ├── quickexport │ │ │ ├── AreaSelection.java │ │ │ ├── AreaSelectionRenderer.java │ │ │ ├── AreaSelectorItem.java │ │ │ ├── AreaSelectorTooltipProvider.java │ │ │ └── QuickExportCommand.java │ │ │ └── tests │ │ │ └── PortingLibGameTestTests.java │ │ └── resources │ │ ├── assets │ │ ├── porting_lib │ │ │ └── models │ │ │ │ └── item │ │ │ │ └── area_selector.json │ │ └── porting_lib_gametest │ │ │ └── lang │ │ │ └── en_us.json │ │ ├── data │ │ └── porting_lib_gametest │ │ │ └── structures │ │ │ └── gametest │ │ │ ├── platform │ │ │ ├── 18x3.nbt │ │ │ ├── 3x3.nbt │ │ │ ├── 5x5.nbt │ │ │ ├── 7x7.nbt │ │ │ └── 9x9.nbt │ │ │ └── test_testing │ │ │ └── test.nbt │ │ ├── fabric.mod.json │ │ ├── porting_lib_gametest.accesswidener │ │ └── porting_lib_gametest.mixins.json ├── gui_utils │ ├── build.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── fabricators_of_create │ │ │ │ └── porting_lib │ │ │ │ └── gui │ │ │ │ ├── GuiHooks.java │ │ │ │ ├── events │ │ │ │ ├── GatherComponentsEvent.java │ │ │ │ ├── RenderGuiCallback.java │ │ │ │ └── RenderGuiLayerCallback.java │ │ │ │ ├── extensions │ │ │ │ └── GuiGraphicsExtension.java │ │ │ │ ├── layered │ │ │ │ ├── GuiLayerManager.java │ │ │ │ ├── GuiLayerRegistry.java │ │ │ │ └── VanillaGuiLayers.java │ │ │ │ ├── map │ │ │ │ ├── IMapDecorationRenderer.java │ │ │ │ └── MapDecorationRendererManager.java │ │ │ │ ├── mixin │ │ │ │ ├── GuiAccessor.java │ │ │ │ ├── GuiGraphicsMixin.java │ │ │ │ ├── GuiMixin.java │ │ │ │ └── MapRendererMapInstanceMixin.java │ │ │ │ └── utils │ │ │ │ └── ModdedButton.java │ │ └── resources │ │ │ ├── fabric.mod.json │ │ │ ├── porting_lib_gui_utils.accesswidener │ │ │ └── porting_lib_gui_utils.mixins.json │ │ └── testmod │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── gui │ │ │ └── testmod │ │ │ └── PortingLibGuiUtilsTest.java │ │ └── resources │ │ └── fabric.mod.json ├── item_abilities │ ├── build.gradle │ └── src │ │ ├── generated │ │ └── resources │ │ │ ├── .cache │ │ │ └── e363a18310a24f02bdb404f7180170842373bd76 │ │ │ └── data │ │ │ └── minecraft │ │ │ └── loot_tables │ │ │ └── blocks │ │ │ ├── acacia_leaves.json │ │ │ ├── azalea_leaves.json │ │ │ ├── birch_leaves.json │ │ │ ├── cherry_leaves.json │ │ │ ├── cobweb.json │ │ │ ├── dark_oak_leaves.json │ │ │ ├── dead_bush.json │ │ │ ├── fern.json │ │ │ ├── flowering_azalea_leaves.json │ │ │ ├── glow_lichen.json │ │ │ ├── hanging_roots.json │ │ │ ├── jungle_leaves.json │ │ │ ├── large_fern.json │ │ │ ├── mangrove_leaves.json │ │ │ ├── nether_sprouts.json │ │ │ ├── oak_leaves.json │ │ │ ├── seagrass.json │ │ │ ├── short_grass.json │ │ │ ├── small_dripleaf.json │ │ │ ├── spruce_leaves.json │ │ │ ├── tall_grass.json │ │ │ ├── tall_seagrass.json │ │ │ ├── twisting_vines.json │ │ │ ├── twisting_vines_plant.json │ │ │ ├── vine.json │ │ │ ├── weeping_vines.json │ │ │ └── weeping_vines_plant.json │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── tool │ │ │ ├── ItemAbilities.java │ │ │ ├── ItemAbility.java │ │ │ ├── ItemAbilityHooks.java │ │ │ ├── addons │ │ │ ├── ItemAbilityBlock.java │ │ │ └── ItemAbilityItem.java │ │ │ ├── data │ │ │ ├── ItemAbilitiesData.java │ │ │ └── ItemAbilityLootTableProvider.java │ │ │ ├── events │ │ │ └── BlockToolModificationEvent.java │ │ │ ├── extensions │ │ │ ├── BlockStateExtensions.java │ │ │ ├── ItemStackExtensions.java │ │ │ └── VanillaItemAbilityItem.java │ │ │ ├── loot │ │ │ └── CanItemPerformAbility.java │ │ │ └── mixin │ │ │ ├── AxeItemMixin.java │ │ │ ├── BambooSaplingBlockMixin.java │ │ │ ├── BambooStalkBlockMixin.java │ │ │ ├── BeehiveBlockMixin.java │ │ │ ├── BlockStateMixin.java │ │ │ ├── BuilderAccessor.java │ │ │ ├── CompositeEntryBaseAccessor.java │ │ │ ├── CompositeLootItemConditionAccessor.java │ │ │ ├── FishingHookMixin.java │ │ │ ├── FishingHookRendererMixin.java │ │ │ ├── FishingRodItemMixin.java │ │ │ ├── HoeItemMixin.java │ │ │ ├── InvertedLootItemConditionAccessor.java │ │ │ ├── ItemStackMixin.java │ │ │ ├── LivingEntityMixin.java │ │ │ ├── LootPoolEntryContainerAccessor.java │ │ │ ├── PickaxeItemMixin.java │ │ │ ├── PlayerMixin.java │ │ │ ├── PumpkinBlockMixin.java │ │ │ ├── ShearsItemMixin.java │ │ │ ├── ShieldItemMixin.java │ │ │ ├── ShovelItemMixin.java │ │ │ ├── StopHoldingItemIfNoLongerAdmiringMixin.java │ │ │ ├── SwordItemMixin.java │ │ │ └── TripWireBlockMixin.java │ │ └── resources │ │ ├── fabric.mod.json │ │ ├── porting_lib_item_abilities.accesswidener │ │ └── porting_lib_item_abilities.mixins.json ├── items │ ├── build.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── fabricators_of_create │ │ │ │ └── porting_lib │ │ │ │ └── item │ │ │ │ ├── ItemHelper.java │ │ │ │ ├── ItemHooks.java │ │ │ │ ├── client │ │ │ │ ├── GlStateBackup.java │ │ │ │ ├── IItemDecorator.java │ │ │ │ ├── ItemClientHooks.java │ │ │ │ ├── ItemDecoratorHandler.java │ │ │ │ └── callbacks │ │ │ │ │ └── ItemDecorationsCallback.java │ │ │ │ ├── extensions │ │ │ │ ├── ArmorTextureItem.java │ │ │ │ ├── ArmorTickListeningItem.java │ │ │ │ ├── BlockBreakResetItem.java │ │ │ │ ├── BlockUseBypassingItem.java │ │ │ │ ├── ContinueUsingItem.java │ │ │ │ ├── CreativeModeTabExt.java │ │ │ │ ├── CreatorModIdItem.java │ │ │ │ ├── CustomArrowItem.java │ │ │ │ ├── CustomDamageItem.java │ │ │ │ ├── CustomEnchantmentValueItem.java │ │ │ │ ├── CustomFuelItem.java │ │ │ │ ├── CustomMapItem.java │ │ │ │ ├── CustomPickupBucketSoundItem.java │ │ │ │ ├── CustomSupportsEnchantItem.java │ │ │ │ ├── DamageableItem.java │ │ │ │ ├── EnderMaskItem.java │ │ │ │ ├── EntitySwingListenerItem.java │ │ │ │ ├── EntityTickListenerItem.java │ │ │ │ ├── EquipmentItem.java │ │ │ │ ├── InfiniteArrowItem.java │ │ │ │ ├── OnDestroyedItem.java │ │ │ │ ├── PiglinsNeutralItem.java │ │ │ │ ├── ReequipAnimationItem.java │ │ │ │ ├── ShieldBlockItem.java │ │ │ │ ├── SneakBypassUseItem.java │ │ │ │ ├── UseFirstBehaviorItem.java │ │ │ │ ├── UsingTickItem.java │ │ │ │ ├── WalkOnSnowItem.java │ │ │ │ └── XpRepairItem.java │ │ │ │ ├── injects │ │ │ │ ├── ItemContainerContentsInjection.java │ │ │ │ ├── ItemInjection.java │ │ │ │ ├── ItemPropertiesInjection.java │ │ │ │ └── ItemStackInjection.java │ │ │ │ ├── itemgroup │ │ │ │ └── PortingLibCreativeTab.java │ │ │ │ └── mixin │ │ │ │ ├── client │ │ │ │ ├── AbstractFurnaceMenuMixin.java │ │ │ │ ├── CreativeModeInventoryScreenMixin.java │ │ │ │ ├── GuiGraphicsMixin.java │ │ │ │ ├── HumanoidArmorLayerMixin.java │ │ │ │ ├── ItemFrameRendererMixin.java │ │ │ │ ├── ItemInHandRendererMixin.java │ │ │ │ └── MultiPlayerGameModeMixin.java │ │ │ │ └── common │ │ │ │ ├── AbstractFurnaceBlockEntityMixin.java │ │ │ │ ├── AbstractSkeletonMixin.java │ │ │ │ ├── AnvilMenuMixin.java │ │ │ │ ├── ArmorItemMixin.java │ │ │ │ ├── ArmorSlotMixin.java │ │ │ │ ├── BlockBehaviour$BlockStateBaseMixin.java │ │ │ │ ├── BucketItemMixin.java │ │ │ │ ├── CreativeModeTabMixin.java │ │ │ │ ├── EnchantCommandMixin.java │ │ │ │ ├── EnchantRandomlyFunctionMixin.java │ │ │ │ ├── EnchantmentHelperMixin.java │ │ │ │ ├── EnderManMixin.java │ │ │ │ ├── ExperienceOrbMixin.java │ │ │ │ ├── GrindstoneMenuMixin.java │ │ │ │ ├── IllusionerMixin.java │ │ │ │ ├── InventoryMixin.java │ │ │ │ ├── ItemContainerContentsMixin.java │ │ │ │ ├── ItemEntityMixin.java │ │ │ │ ├── ItemMixin.java │ │ │ │ ├── ItemStackMixin.java │ │ │ │ ├── LivingEntityMixin.java │ │ │ │ ├── MultiPlayerGameModeMixin.java │ │ │ │ ├── PiglinAiMixin.java │ │ │ │ ├── PowderSnowBlockMixin.java │ │ │ │ ├── ProjectileWeaponItemMixin.java │ │ │ │ ├── RepairItemRecipeMixin.java │ │ │ │ └── ServerPlayerGameModeMixin.java │ │ └── resources │ │ │ ├── fabric.mod.json │ │ │ ├── porting_lib_items.accesswidener │ │ │ └── porting_lib_items.mixins.json │ │ └── testmod │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── item │ │ │ └── testmod │ │ │ └── PortingLibItemsTestmod.java │ │ └── resources │ │ ├── assets │ │ └── porting_lib │ │ │ ├── lang │ │ │ └── en_us.json │ │ │ └── models │ │ │ └── item │ │ │ └── no_repair_pick.json │ │ └── fabric.mod.json ├── level_events │ ├── build.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── level │ │ │ ├── BlockSnapshot.java │ │ │ ├── LevelHooks.java │ │ │ ├── events │ │ │ ├── BlockDropsEvent.java │ │ │ ├── BlockEvent.java │ │ │ ├── ChunkDataEvent.java │ │ │ ├── ChunkEvent.java │ │ │ ├── ChunkTicketLevelUpdatedEvent.java │ │ │ ├── LevelEvent.java │ │ │ └── SleepFinishedTimeEvent.java │ │ │ └── mixin │ │ │ ├── client │ │ │ ├── ClientLevelMixin.java │ │ │ └── MinecraftMixin.java │ │ │ └── common │ │ │ ├── BlockItemMixin.java │ │ │ ├── ChunkMapMixin.java │ │ │ ├── ChunkSerializerMixin.java │ │ │ ├── DiodeBlockMixin.java │ │ │ ├── LavaFluidMixin.java │ │ │ ├── LevelMixin.java │ │ │ ├── MinecraftServerMixin.java │ │ │ ├── NaturalSpawnerMixin.java │ │ │ ├── ServerLevelMixin.java │ │ │ └── ServerPlayerGameModeMixin.java │ │ └── resources │ │ ├── fabric.mod.json │ │ └── porting_lib_level_events.mixins.json ├── loot │ ├── build.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── loot │ │ │ ├── GlobalLootModifierProvider.java │ │ │ ├── IGlobalLootModifier.java │ │ │ ├── LootCollector.java │ │ │ ├── LootModifier.java │ │ │ ├── LootModifierManager.java │ │ │ ├── LootTableIdCondition.java │ │ │ ├── PortingLibLoot.java │ │ │ ├── extensions │ │ │ ├── LootContextExtensions.java │ │ │ ├── LootPoolBuilderExtension.java │ │ │ ├── LootPoolExtensions.java │ │ │ ├── LootTableBuilderExtensions.java │ │ │ └── LootTableExtensions.java │ │ │ └── mixin │ │ │ ├── LootContextMixin.java │ │ │ ├── LootDataTypeMixin.java │ │ │ ├── LootPoolMixin.java │ │ │ └── LootTableMixin.java │ │ └── resources │ │ ├── fabric.mod.json │ │ └── porting_lib_loot.mixins.json ├── milk │ ├── build.gradle │ └── src │ │ ├── generated │ │ └── resources │ │ │ ├── assets │ │ │ └── porting_lib_milk │ │ │ │ └── sounds.json │ │ │ └── data │ │ │ └── c │ │ │ └── tags │ │ │ └── fluid │ │ │ └── milk.json │ │ ├── main │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── fabricators_of_create │ │ │ │ └── porting_lib │ │ │ │ └── milk │ │ │ │ ├── PortingLibMilk.java │ │ │ │ ├── client │ │ │ │ └── PortingLibMilkClient.java │ │ │ │ └── data │ │ │ │ ├── MilkSoundDefinitionsProvider.java │ │ │ │ ├── MilkTagProvider.java │ │ │ │ └── PortingLibMilkData.java │ │ └── resources │ │ │ ├── assets │ │ │ └── porting_lib │ │ │ │ ├── lang │ │ │ │ └── en_us.json │ │ │ │ └── textures │ │ │ │ └── block │ │ │ │ ├── milk_flowing.png │ │ │ │ ├── milk_flowing.png.mcmeta │ │ │ │ ├── milk_still.png │ │ │ │ └── milk_still.png.mcmeta │ │ │ └── fabric.mod.json │ │ └── testmod │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── milk │ │ │ └── testmod │ │ │ └── PortingLibMilkTest.java │ │ └── resources │ │ └── fabric.mod.json ├── mixin_extensions │ ├── build.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── mixin_extensions │ │ │ ├── init │ │ │ ├── PortingLibMixinExtensions.java │ │ │ ├── PortingLibMixinExtensionsAP.java │ │ │ └── PortingLibMixinExtensionsPlugin.java │ │ │ ├── injectors │ │ │ └── wrap_variable │ │ │ │ ├── WrapVariable.java │ │ │ │ ├── WrapVariableInjectionInfo.java │ │ │ │ └── WrapVariableInjector.java │ │ │ └── points │ │ │ └── WrappableInjectionPoint.java │ │ └── resources │ │ ├── META-INF │ │ └── services │ │ │ └── javax.annotation.processing.Processor │ │ ├── fabric.mod.json │ │ └── porting_lib_mixin_extensions.mixins.json ├── model_data │ ├── build.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── models │ │ │ └── data │ │ │ ├── ModelData.java │ │ │ └── ModelProperty.java │ │ └── resources │ │ └── fabric.mod.json ├── model_loader │ ├── build.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ ├── models │ │ │ ├── ElementsModel.java │ │ │ ├── ExtendedItemOverrides.java │ │ │ ├── ExtraFaceData.java │ │ │ ├── FabricQuadTransformers.java │ │ │ ├── IModelBuilder.java │ │ │ ├── IQuadTransformer.java │ │ │ ├── MeshBakedModel.java │ │ │ ├── QuadTransformers.java │ │ │ ├── UnbakedGeometryHelper.java │ │ │ ├── geometry │ │ │ │ ├── BlockGeometryBakingContext.java │ │ │ │ ├── EmptyModel.java │ │ │ │ ├── GeometryLoaderManager.java │ │ │ │ ├── IGeometryBakingContext.java │ │ │ │ ├── IGeometryLoader.java │ │ │ │ ├── IUnbakedGeometry.java │ │ │ │ ├── NullGeometryLoader.java │ │ │ │ ├── RegisterGeometryLoadersCallback.java │ │ │ │ ├── SimpleModelState.java │ │ │ │ ├── SimpleUnbakedGeometry.java │ │ │ │ ├── StandaloneGeometryBakingContext.java │ │ │ │ ├── extensions │ │ │ │ │ ├── BlockElementExtension.java │ │ │ │ │ ├── BlockElementFaceExtension.java │ │ │ │ │ ├── BlockModelExtension.java │ │ │ │ │ └── TransformationExtension.java │ │ │ │ └── mixin │ │ │ │ │ ├── client │ │ │ │ │ ├── BlockElementFaceMixin.java │ │ │ │ │ ├── BlockElementMixin.java │ │ │ │ │ ├── BlockModelDeserializerMixin.java │ │ │ │ │ └── BlockModelMixin.java │ │ │ │ │ └── common │ │ │ │ │ └── TransformationMixin.java │ │ │ └── renderable │ │ │ │ ├── CompositeRenderable.java │ │ │ │ ├── IRenderable.java │ │ │ │ └── ITextureRenderTypeLookup.java │ │ │ └── textures │ │ │ └── UnitTextureAtlasSprite.java │ │ └── resources │ │ ├── fabric.mod.json │ │ ├── porting_lib_model_loader.accesswidener │ │ └── porting_lib_model_loader.mixins.json ├── models │ ├── build.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── fabricators_of_create │ │ │ │ └── porting_lib │ │ │ │ └── models │ │ │ │ ├── BakedMeshModel.java │ │ │ │ ├── CompositeModel.java │ │ │ │ ├── ConcatenatedListView.java │ │ │ │ ├── CustomBlendModeModel.java │ │ │ │ ├── CustomParticleIconModel.java │ │ │ │ ├── DynamicFluidContainerModel.java │ │ │ │ ├── ItemLayerModel.java │ │ │ │ ├── ModelLoader.java │ │ │ │ ├── PortingLibModelLoadingRegistry.java │ │ │ │ ├── PortingLibModels.java │ │ │ │ ├── RenderMaterialDeserializer.java │ │ │ │ ├── RenderMaterialModel.java │ │ │ │ ├── SeparateTransformsModel.java │ │ │ │ ├── TransformTypeDependentItemBakedModel.java │ │ │ │ ├── builders │ │ │ │ ├── CompositeModelBuilder.java │ │ │ │ └── ItemLayerModelBuilder.java │ │ │ │ ├── events │ │ │ │ └── client │ │ │ │ │ └── ModelEvent.java │ │ │ │ ├── extensions │ │ │ │ ├── BlockModelExtensions.java │ │ │ │ ├── BlockParticleOptionExtensions.java │ │ │ │ ├── ItemTransformExtensions.java │ │ │ │ └── TerrainParticleExtensions.java │ │ │ │ ├── generators │ │ │ │ ├── BlockModelBuilder.java │ │ │ │ ├── BlockModelProvider.java │ │ │ │ ├── BlockStateProvider.java │ │ │ │ ├── ConfiguredModel.java │ │ │ │ ├── CustomLoaderBuilder.java │ │ │ │ ├── IGeneratedBlockState.java │ │ │ │ ├── ItemModelBuilder.java │ │ │ │ ├── ItemModelProvider.java │ │ │ │ ├── ModelBuilder.java │ │ │ │ ├── ModelFile.java │ │ │ │ ├── ModelProvider.java │ │ │ │ ├── MultiPartBlockStateBuilder.java │ │ │ │ ├── VariantBlockStateBuilder.java │ │ │ │ └── loaders │ │ │ │ │ ├── CompositeModelBuilder.java │ │ │ │ │ ├── DynamicFluidContainerModelBuilder.java │ │ │ │ │ ├── ItemLayerModelBuilder.java │ │ │ │ │ └── SeparateTransformsModelBuilder.java │ │ │ │ ├── injections │ │ │ │ ├── ModelBakerInjection.java │ │ │ │ └── ModelManagerInjection.java │ │ │ │ ├── internal │ │ │ │ └── TransformTypeDependentModelHelper.java │ │ │ │ ├── mixin │ │ │ │ ├── BlockElementFaceDeserializerMixin.java │ │ │ │ ├── BlockParticleOptionMixin.java │ │ │ │ ├── EntityMixin.java │ │ │ │ ├── LivingEntityMixin.java │ │ │ │ ├── PortingLibModelsPlugin.java │ │ │ │ └── client │ │ │ │ │ ├── BlockModelDeserializerMixin.java │ │ │ │ │ ├── BlockModelMixin.java │ │ │ │ │ ├── ItemRendererMixin.java │ │ │ │ │ ├── ItemTransformDeserializerMixin.java │ │ │ │ │ ├── ItemTransformMixin.java │ │ │ │ │ ├── ModelBakerMixin.java │ │ │ │ │ ├── ModelBakery$ModelBakerImplMixin.java │ │ │ │ │ ├── ModelBakeryAccessor.java │ │ │ │ │ ├── ModelBakeryMixin.java │ │ │ │ │ ├── ModelManagerMixin.java │ │ │ │ │ ├── ParticleEngineMixin.java │ │ │ │ │ ├── ScreenEffectRendererMixin.java │ │ │ │ │ ├── TerrainParticle$ProviderMixin.java │ │ │ │ │ ├── TerrainParticleMixin.java │ │ │ │ │ ├── TextureSheetParticleAccessor.java │ │ │ │ │ └── frex │ │ │ │ │ └── ItemRenderContextMixin.java │ │ │ │ ├── pipeline │ │ │ │ ├── QuadBakingVertexConsumer.java │ │ │ │ ├── TransformingVertexPipeline.java │ │ │ │ └── VertexConsumerWrapper.java │ │ │ │ ├── util │ │ │ │ ├── RenderTypeUtil.java │ │ │ │ └── TransformationHelper.java │ │ │ │ └── virtual │ │ │ │ ├── FixedColorTintingBakedModel.java │ │ │ │ ├── FixedLightBakedModel.java │ │ │ │ └── TranslucentBakedModel.java │ │ └── resources │ │ │ ├── fabric.mod.json │ │ │ ├── porting_lib_models.accesswidener │ │ │ └── porting_lib_models.mixins.json │ │ └── testmod │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── models │ │ │ └── testmod │ │ │ ├── PortingLibModelsTestmod.java │ │ │ └── client │ │ │ ├── DerpyItemModel.java │ │ │ └── PortingLibModelsTestmodClient.java │ │ └── resources │ │ ├── assets │ │ └── porting_lib │ │ │ ├── blockstates │ │ │ └── not_glass.json │ │ │ ├── lang │ │ │ └── en_us.json │ │ │ └── models │ │ │ ├── block │ │ │ └── not_glass.json │ │ │ └── item │ │ │ ├── derp_helmet.json │ │ │ └── stone_2.json │ │ └── fabric.mod.json ├── obj_loader │ ├── build.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── fabricators_of_create │ │ │ │ └── porting_lib │ │ │ │ ├── PortingLibObjLoader.java │ │ │ │ └── models │ │ │ │ └── obj │ │ │ │ ├── ObjBakedModel.java │ │ │ │ ├── ObjLoader.java │ │ │ │ ├── ObjMaterialLibrary.java │ │ │ │ ├── ObjModel.java │ │ │ │ └── ObjTokenizer.java │ │ └── resources │ │ │ └── fabric.mod.json │ │ └── testmod │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── obj_loader │ │ │ └── testmod │ │ │ ├── PortingLibObjLoaderTestmod.java │ │ │ └── RingItem.java │ │ └── resources │ │ ├── assets │ │ └── porting_lib │ │ │ └── models │ │ │ └── item │ │ │ ├── ring.json │ │ │ ├── ring.mtl │ │ │ └── ring.obj │ │ └── fabric.mod.json ├── recipe_book_categories │ ├── build.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── recipe_book_categories │ │ │ ├── RecipeBookRegistry.java │ │ │ └── mixin │ │ │ ├── ClientRecipeBookMixin.java │ │ │ └── RecipeBookCategoriesMixin.java │ │ └── resources │ │ ├── fabric.mod.json │ │ └── porting_lib_recipe_book_categories.mixins.json ├── registry │ ├── build.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── registry │ │ │ ├── DeferredBlock.java │ │ │ ├── DeferredHolder.java │ │ │ ├── DeferredItem.java │ │ │ ├── DeferredRegister.java │ │ │ ├── DelegatedHolder.java │ │ │ ├── RegistryBuilder.java │ │ │ ├── injections │ │ │ ├── HolderInjection.java │ │ │ └── RegistryInjection.java │ │ │ └── mixin │ │ │ ├── DefaultedMappedRegistryMixin.java │ │ │ ├── HolderMixin.java │ │ │ └── RegistryMixin.java │ │ └── resources │ │ ├── fabric.mod.json │ │ ├── porting_lib_registry.accesswidener │ │ └── porting_lib_registry.mixins.json ├── render_types │ ├── build.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── render_types │ │ │ ├── NamedRenderTypeManager.java │ │ │ ├── PortingLibRenderTypes.java │ │ │ └── RenderTypeGroup.java │ │ └── resources │ │ ├── assets │ │ └── porting_lib │ │ │ └── shaders │ │ │ └── core │ │ │ ├── rendertype_entity_unlit_translucent.fsh │ │ │ ├── rendertype_entity_unlit_translucent.json │ │ │ └── rendertype_entity_unlit_translucent.vsh │ │ ├── fabric.mod.json │ │ └── porting_lib_render_types.accesswidener ├── resources │ ├── build.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── resources │ │ │ ├── PortingLibResources.java │ │ │ ├── conditions │ │ │ ├── AndCondition.java │ │ │ ├── ConditionContext.java │ │ │ ├── ConditionalOps.java │ │ │ ├── ContextAwareReloadListener.java │ │ │ ├── FalseCondition.java │ │ │ ├── ICondition.java │ │ │ ├── ItemExistsCondition.java │ │ │ ├── ModLoadedCondition.java │ │ │ ├── NotCondition.java │ │ │ ├── OrCondition.java │ │ │ ├── PortingLibConditions.java │ │ │ ├── TagEmptyCondition.java │ │ │ ├── TrueCondition.java │ │ │ └── WithConditions.java │ │ │ ├── crafting │ │ │ ├── DataComponentIngredient.java │ │ │ ├── IngredientType.java │ │ │ ├── PortingLibIngredients.java │ │ │ └── SizedIngredient.java │ │ │ ├── data_maps │ │ │ ├── AdvancedDataMapType.java │ │ │ ├── DataMapEntry.java │ │ │ ├── DataMapFile.java │ │ │ ├── DataMapLoader.java │ │ │ ├── DataMapType.java │ │ │ ├── DataMapValueMerger.java │ │ │ ├── DataMapValueRemover.java │ │ │ ├── IWithData.java │ │ │ └── PortingLibDataMaps.java │ │ │ ├── events │ │ │ ├── AddPackFindersEvent.java │ │ │ ├── AddReloadListenersEvent.java │ │ │ ├── DataMapsUpdatedEvent.java │ │ │ ├── RecipesUpdatedEvent.java │ │ │ └── TagsUpdatedEvent.java │ │ │ ├── extensions │ │ │ └── ContextAwareReloadListenerExtension.java │ │ │ ├── fluids │ │ │ ├── FluidStackLinkedSet.java │ │ │ └── crafting │ │ │ │ ├── CompoundFluidIngredient.java │ │ │ │ ├── DataComponentFluidIngredient.java │ │ │ │ ├── DifferenceFluidIngredient.java │ │ │ │ ├── EmptyFluidIngredient.java │ │ │ │ ├── FluidIngredient.java │ │ │ │ ├── FluidIngredientType.java │ │ │ │ ├── IntersectionFluidIngredient.java │ │ │ │ ├── SingleFluidIngredient.java │ │ │ │ ├── SizedFluidIngredient.java │ │ │ │ └── TagFluidIngredient.java │ │ │ ├── injections │ │ │ ├── HolderInjection.java │ │ │ ├── IngredientInjection.java │ │ │ ├── PackRepositoryInjection.java │ │ │ ├── RegistryInjection.java │ │ │ ├── RegistryLookupInjection.java │ │ │ └── ReloadableServerResourcesInjection.java │ │ │ └── mixin │ │ │ ├── client │ │ │ ├── ClientPacketListenerMixin.java │ │ │ ├── CreateWorldScreenMixin.java │ │ │ ├── MinecraftMixin.java │ │ │ └── TagCollectorMixin.java │ │ │ ├── common │ │ │ ├── HolderLookupRegistryLookupMixin.java │ │ │ ├── HolderReferenceMixin.java │ │ │ ├── IngredientMixin.java │ │ │ ├── MappedRegistryMixin.java │ │ │ ├── PackRepositoryMixin.java │ │ │ ├── RecipeManagerMixin.java │ │ │ ├── RegistryMixin.java │ │ │ ├── ReloadableServerResourcesMixin.java │ │ │ ├── ServerAdvancementManagerMixin.java │ │ │ ├── ServerPacksSourceMixin.java │ │ │ └── SimplePreparableReloadListenerMixin.java │ │ │ └── porting_lib │ │ │ └── DeferredHolderMixin.java │ │ └── resources │ │ ├── fabric.mod.json │ │ ├── porting_lib_resources.accesswidener │ │ └── porting_lib_resources.mixins.json ├── tags │ ├── build.gradle │ └── src │ │ ├── generated │ │ └── resources │ │ │ ├── .cache │ │ │ ├── 0db07b083d8ec4867dc8d8bdff9548858228ce08 │ │ │ ├── 6962ca521ed0f04c0af588ee702ea5e92dd92bbf │ │ │ ├── 878c0710f526c0b7873f5817de08efcf0d1534b7 │ │ │ ├── 9897d8c3e92150bbf2fefe657c4abae25457fe85 │ │ │ ├── adaca8b06aaaf3f4d67b9cca4cb2c5464edbdcad │ │ │ └── eea7abfa3446d2a4e6ddd444e2bc333157ec6267 │ │ │ ├── assets │ │ │ └── porting_lib_tags │ │ │ │ └── lang │ │ │ │ └── en_us.json │ │ │ └── data │ │ │ └── c │ │ │ └── tags │ │ │ ├── blocks │ │ │ ├── amethyst_blocks.json │ │ │ ├── barrels.json │ │ │ ├── black_glass.json │ │ │ ├── black_glass_panes.json │ │ │ ├── blue_glass.json │ │ │ ├── blue_glass_panes.json │ │ │ ├── brown_glass.json │ │ │ ├── brown_glass_panes.json │ │ │ ├── chests.json │ │ │ ├── coal_blocks.json │ │ │ ├── coal_ores.json │ │ │ ├── cobblestone.json │ │ │ ├── colorless_glass.json │ │ │ ├── colorless_glass_panes.json │ │ │ ├── colorless_sand.json │ │ │ ├── copper_blocks.json │ │ │ ├── copper_ores.json │ │ │ ├── cyan_glass.json │ │ │ ├── cyan_glass_panes.json │ │ │ ├── deepslate_cobblestone.json │ │ │ ├── diamond_blocks.json │ │ │ ├── diamond_ores.json │ │ │ ├── emerald_blocks.json │ │ │ ├── emerald_ores.json │ │ │ ├── end_stones.json │ │ │ ├── ender_chests.json │ │ │ ├── enderman_place_on_blacklist.json │ │ │ ├── fence_gates.json │ │ │ ├── fences.json │ │ │ ├── glass_blocks.json │ │ │ ├── glass_panes.json │ │ │ ├── gold_blocks.json │ │ │ ├── gold_ores.json │ │ │ ├── gravel.json │ │ │ ├── gray_glass.json │ │ │ ├── gray_glass_panes.json │ │ │ ├── green_glass.json │ │ │ ├── green_glass_panes.json │ │ │ ├── infested_cobblestone.json │ │ │ ├── iron_blocks.json │ │ │ ├── iron_ores.json │ │ │ ├── lapis_blocks.json │ │ │ ├── lapis_ores.json │ │ │ ├── light_blue_glass.json │ │ │ ├── light_blue_glass_panes.json │ │ │ ├── light_gray_glass.json │ │ │ ├── light_gray_glass_panes.json │ │ │ ├── lime_glass.json │ │ │ ├── lime_glass_panes.json │ │ │ ├── magenta_glass.json │ │ │ ├── magenta_glass_panes.json │ │ │ ├── mossy_cobblestone.json │ │ │ ├── nether_brick_fences.json │ │ │ ├── netherite_blocks.json │ │ │ ├── netherite_scrap_ores.json │ │ │ ├── netherrack.json │ │ │ ├── normal_cobblestone.json │ │ │ ├── obsidian.json │ │ │ ├── orange_glass.json │ │ │ ├── orange_glass_panes.json │ │ │ ├── ore_bearing_ground │ │ │ │ ├── deepslate.json │ │ │ │ ├── netherrack.json │ │ │ │ └── stone.json │ │ │ ├── ore_rates │ │ │ │ ├── dense.json │ │ │ │ ├── singular.json │ │ │ │ └── sparse.json │ │ │ ├── ores.json │ │ │ ├── ores_in_ground │ │ │ │ ├── deepslate.json │ │ │ │ ├── netherrack.json │ │ │ │ └── stone.json │ │ │ ├── pink_glass.json │ │ │ ├── pink_glass_panes.json │ │ │ ├── purple_glass.json │ │ │ ├── purple_glass_panes.json │ │ │ ├── quartz_blocks.json │ │ │ ├── quartz_ores.json │ │ │ ├── raw_copper_blocks.json │ │ │ ├── raw_gold_blocks.json │ │ │ ├── raw_iron_blocks.json │ │ │ ├── red_glass.json │ │ │ ├── red_glass_panes.json │ │ │ ├── red_sand.json │ │ │ ├── redstone_blocks.json │ │ │ ├── redstone_ores.json │ │ │ ├── sand.json │ │ │ ├── sandstone.json │ │ │ ├── silica_glass.json │ │ │ ├── stained_glass.json │ │ │ ├── stained_glass_panes.json │ │ │ ├── stone.json │ │ │ ├── storage_blocks.json │ │ │ ├── tinted_glass.json │ │ │ ├── trapped_chests.json │ │ │ ├── white_glass.json │ │ │ ├── white_glass_panes.json │ │ │ ├── wooden_barrels.json │ │ │ ├── wooden_chests.json │ │ │ ├── wooden_fence_gates.json │ │ │ ├── wooden_fences.json │ │ │ ├── yellow_glass.json │ │ │ └── yellow_glass_panes.json │ │ │ ├── entity_types │ │ │ └── bosses.json │ │ │ ├── items │ │ │ ├── amethyst.json │ │ │ ├── amethyst_blocks.json │ │ │ ├── armors.json │ │ │ ├── axes.json │ │ │ ├── barrels.json │ │ │ ├── beetroot_seeds.json │ │ │ ├── black_dyes.json │ │ │ ├── black_glass.json │ │ │ ├── black_glass_panes.json │ │ │ ├── blaze_rods.json │ │ │ ├── blue_dyes.json │ │ │ ├── blue_glass.json │ │ │ ├── blue_glass_panes.json │ │ │ ├── bones.json │ │ │ ├── bookshelves.json │ │ │ ├── boots.json │ │ │ ├── bows.json │ │ │ ├── brick_ingots.json │ │ │ ├── brown_dyes.json │ │ │ ├── brown_glass.json │ │ │ ├── brown_glass_panes.json │ │ │ ├── chestplates.json │ │ │ ├── chests.json │ │ │ ├── coal_blocks.json │ │ │ ├── coal_ores.json │ │ │ ├── cobblestone.json │ │ │ ├── colorless_glass.json │ │ │ ├── colorless_glass_panes.json │ │ │ ├── colorless_sand.json │ │ │ ├── copper_blocks.json │ │ │ ├── copper_ingots.json │ │ │ ├── copper_ores.json │ │ │ ├── copper_raw_materials.json │ │ │ ├── crops.json │ │ │ ├── crops │ │ │ │ ├── beetroot.json │ │ │ │ ├── carrot.json │ │ │ │ ├── nether_wart.json │ │ │ │ ├── potato.json │ │ │ │ └── wheat.json │ │ │ ├── crossbows.json │ │ │ ├── cyan_dyes.json │ │ │ ├── cyan_glass.json │ │ │ ├── cyan_glass_panes.json │ │ │ ├── deepslate_cobblestone.json │ │ │ ├── diamond_blocks.json │ │ │ ├── diamond_ores.json │ │ │ ├── diamonds.json │ │ │ ├── dusts.json │ │ │ ├── dusts │ │ │ │ ├── glowstone.json │ │ │ │ ├── prismarine.json │ │ │ │ └── redstone.json │ │ │ ├── dyes.json │ │ │ ├── eggs.json │ │ │ ├── emerald_blocks.json │ │ │ ├── emerald_ores.json │ │ │ ├── emeralds.json │ │ │ ├── enchanting_fuels.json │ │ │ ├── end_stones.json │ │ │ ├── ender_chests.json │ │ │ ├── ender_pearls.json │ │ │ ├── feathers.json │ │ │ ├── fence_gates.json │ │ │ ├── fences.json │ │ │ ├── fishing_rods.json │ │ │ ├── gems.json │ │ │ ├── glass_blocks.json │ │ │ ├── glass_panes.json │ │ │ ├── gold_blocks.json │ │ │ ├── gold_ingots.json │ │ │ ├── gold_nuggets.json │ │ │ ├── gold_ores.json │ │ │ ├── gold_raw_materials.json │ │ │ ├── gravel.json │ │ │ ├── gray_dyes.json │ │ │ ├── gray_glass.json │ │ │ ├── gray_glass_panes.json │ │ │ ├── green_dyes.json │ │ │ ├── green_glass.json │ │ │ ├── green_glass_panes.json │ │ │ ├── gunpowder.json │ │ │ ├── heads.json │ │ │ ├── helmets.json │ │ │ ├── hoes.json │ │ │ ├── infested_cobblestone.json │ │ │ ├── ingots.json │ │ │ ├── iron_blocks.json │ │ │ ├── iron_ingots.json │ │ │ ├── iron_nuggets.json │ │ │ ├── iron_ores.json │ │ │ ├── iron_raw_materials.json │ │ │ ├── lapis.json │ │ │ ├── lapis_blocks.json │ │ │ ├── lapis_ores.json │ │ │ ├── leather.json │ │ │ ├── leggings.json │ │ │ ├── light_blue_dyes.json │ │ │ ├── light_blue_glass.json │ │ │ ├── light_blue_glass_panes.json │ │ │ ├── light_gray_dyes.json │ │ │ ├── light_gray_glass.json │ │ │ ├── light_gray_glass_panes.json │ │ │ ├── lime_dyes.json │ │ │ ├── lime_glass.json │ │ │ ├── lime_glass_panes.json │ │ │ ├── magenta_dyes.json │ │ │ ├── magenta_glass.json │ │ │ ├── magenta_glass_panes.json │ │ │ ├── melon_seeds.json │ │ │ ├── mossy_cobblestone.json │ │ │ ├── mushrooms.json │ │ │ ├── nether_brick_fences.json │ │ │ ├── nether_brick_ingots.json │ │ │ ├── nether_stars.json │ │ │ ├── netherite_blocks.json │ │ │ ├── netherite_ingots.json │ │ │ ├── netherite_scrap_ores.json │ │ │ ├── netherrack.json │ │ │ ├── normal_cobblestone.json │ │ │ ├── nuggets.json │ │ │ ├── obsidian.json │ │ │ ├── orange_dyes.json │ │ │ ├── orange_glass.json │ │ │ ├── orange_glass_panes.json │ │ │ ├── ore_bearing_ground │ │ │ │ ├── deepslate.json │ │ │ │ ├── netherrack.json │ │ │ │ └── stone.json │ │ │ ├── ore_rates │ │ │ │ ├── dense.json │ │ │ │ ├── singular.json │ │ │ │ └── sparse.json │ │ │ ├── ores.json │ │ │ ├── ores_in_ground │ │ │ │ ├── deepslate.json │ │ │ │ ├── netherrack.json │ │ │ │ └── stone.json │ │ │ ├── pickaxes.json │ │ │ ├── pink_dyes.json │ │ │ ├── pink_glass.json │ │ │ ├── pink_glass_panes.json │ │ │ ├── prismarine.json │ │ │ ├── pumpkin_seeds.json │ │ │ ├── purple_dyes.json │ │ │ ├── purple_glass.json │ │ │ ├── purple_glass_panes.json │ │ │ ├── quartz.json │ │ │ ├── quartz_blocks.json │ │ │ ├── quartz_ores.json │ │ │ ├── raw_copper_blocks.json │ │ │ ├── raw_gold_blocks.json │ │ │ ├── raw_iron_blocks.json │ │ │ ├── raw_materials.json │ │ │ ├── red_dyes.json │ │ │ ├── red_glass.json │ │ │ ├── red_glass_panes.json │ │ │ ├── red_sand.json │ │ │ ├── redstone_blocks.json │ │ │ ├── redstone_ores.json │ │ │ ├── rods.json │ │ │ ├── sand.json │ │ │ ├── sandstone.json │ │ │ ├── seeds.json │ │ │ ├── shears.json │ │ │ ├── shields.json │ │ │ ├── shovels.json │ │ │ ├── silica_glass.json │ │ │ ├── slimeballs.json │ │ │ ├── stained_glass.json │ │ │ ├── stained_glass_panes.json │ │ │ ├── stone.json │ │ │ ├── storage_blocks.json │ │ │ ├── string.json │ │ │ ├── swords.json │ │ │ ├── tinted_glass.json │ │ │ ├── tools.json │ │ │ ├── trapped_chests.json │ │ │ ├── tridents.json │ │ │ ├── wheat_seeds.json │ │ │ ├── white_dyes.json │ │ │ ├── white_glass.json │ │ │ ├── white_glass_panes.json │ │ │ ├── wooden_barrels.json │ │ │ ├── wooden_chests.json │ │ │ ├── wooden_fence_gates.json │ │ │ ├── wooden_fences.json │ │ │ ├── wooden_rods.json │ │ │ ├── yellow_dyes.json │ │ │ ├── yellow_glass.json │ │ │ └── yellow_glass_panes.json │ │ │ └── worldgen │ │ │ └── biome │ │ │ ├── is_cave.json │ │ │ ├── is_cold.json │ │ │ ├── is_cold │ │ │ ├── end.json │ │ │ └── overworld.json │ │ │ ├── is_coniferous.json │ │ │ ├── is_dense.json │ │ │ ├── is_dense │ │ │ └── overworld.json │ │ │ ├── is_desert.json │ │ │ ├── is_dry.json │ │ │ ├── is_dry │ │ │ ├── end.json │ │ │ ├── nether.json │ │ │ └── overworld.json │ │ │ ├── is_hot.json │ │ │ ├── is_hot │ │ │ ├── nether.json │ │ │ └── overworld.json │ │ │ ├── is_lush.json │ │ │ ├── is_mountain.json │ │ │ ├── is_mushroom.json │ │ │ ├── is_peak.json │ │ │ ├── is_plains.json │ │ │ ├── is_plateau.json │ │ │ ├── is_rare.json │ │ │ ├── is_sandy.json │ │ │ ├── is_slope.json │ │ │ ├── is_snowy.json │ │ │ ├── is_sparse.json │ │ │ ├── is_sparse │ │ │ └── overworld.json │ │ │ ├── is_spooky.json │ │ │ ├── is_swamp.json │ │ │ ├── is_underground.json │ │ │ ├── is_void.json │ │ │ ├── is_wasteland.json │ │ │ ├── is_water.json │ │ │ ├── is_wet.json │ │ │ └── is_wet │ │ │ └── overworld.json │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── fabricators_of_create │ │ │ └── porting_lib │ │ │ └── tags │ │ │ ├── TagHelper.java │ │ │ ├── Tags.java │ │ │ ├── data │ │ │ ├── BiomeTagsProvider.java │ │ │ ├── BlockTagProvider.java │ │ │ ├── DataGenerators.java │ │ │ ├── EntityTagProvider.java │ │ │ ├── FluidTagProvider.java │ │ │ ├── ItemTagLangProvider.java │ │ │ └── ItemTagProvider.java │ │ │ ├── extensions │ │ │ └── DyeExtension.java │ │ │ └── mixin │ │ │ └── DyeColorMixin.java │ │ └── resources │ │ ├── fabric.mod.json │ │ └── porting_lib_tags.mixins.json └── transfer │ ├── build.gradle │ └── src │ └── main │ ├── java │ └── io │ │ └── github │ │ └── fabricators_of_create │ │ └── porting_lib │ │ ├── PortingLibTransfer.java │ │ ├── transfer │ │ ├── MutableContainerItemContext.java │ │ ├── StorageViewArrayIterator.java │ │ ├── TransferUtil.java │ │ ├── ViewOnlyWrappedIterator.java │ │ ├── ViewOnlyWrappedStorageView.java │ │ ├── WrappedStorage.java │ │ ├── callbacks │ │ │ ├── TransactionCallback.java │ │ │ ├── TransactionFailCallback.java │ │ │ └── TransactionSuccessCallback.java │ │ ├── fluid │ │ │ ├── FluidTank.java │ │ │ ├── SimpleFluidContent.java │ │ │ ├── block │ │ │ │ └── BucketPickupHandlerWrapper.java │ │ │ └── item │ │ │ │ ├── FluidBucketWrapper.java │ │ │ │ └── FluidHandlerItemStack.java │ │ ├── internal │ │ │ ├── cache │ │ │ │ ├── ClientBlockApiCache.java │ │ │ │ ├── ClientFluidLookupCache.java │ │ │ │ ├── ClientItemLookupCache.java │ │ │ │ ├── EmptyFluidLookupCache.java │ │ │ │ └── EmptyItemLookupCache.java │ │ │ └── extensions │ │ │ │ ├── ClientLevelExtensions.java │ │ │ │ └── LevelExtensions.java │ │ ├── item │ │ │ ├── BundleStorage.java │ │ │ ├── ItemHandlerHelper.java │ │ │ ├── ItemItemStorages.java │ │ │ ├── ItemStackHandler.java │ │ │ ├── ItemStackHandlerContainer.java │ │ │ ├── ItemStackHandlerContainerItemContext.java │ │ │ ├── ItemStackHandlerSlot.java │ │ │ ├── RecipeWrapper.java │ │ │ ├── ShulkerBoxStorage.java │ │ │ ├── SlotItemHandler.java │ │ │ ├── SlottedStackStorage.java │ │ │ └── wrapper │ │ │ │ ├── CombinedInventoryStorage.java │ │ │ │ ├── EmptyItemHandler.java │ │ │ │ ├── EmptySingleItemSlotStorage.java │ │ │ │ ├── IInventoryStorage.java │ │ │ │ ├── InventorySlotWrapper.java │ │ │ │ ├── InventoryStorage.java │ │ │ │ ├── PlayerInventoryStorage.java │ │ │ │ ├── SidedInventorySlotWrapper.java │ │ │ │ └── SidedInventoryStorage.java │ │ └── mixin │ │ │ ├── client │ │ │ └── ClientLevelMixin.java │ │ │ └── common │ │ │ ├── LevelMixin.java │ │ │ └── ServerLevelMixin.java │ │ └── util │ │ ├── DualSortedSetIterator.java │ │ ├── EmptySortedSet.java │ │ ├── FluidTextUtil.java │ │ ├── FluidUnit.java │ │ ├── ItemStackUtil.java │ │ └── StorageProvider.java │ └── resources │ ├── fabric.mod.json │ ├── porting_lib_transfer.accesswidener │ └── porting_lib_transfer.mixins.json ├── settings.gradle └── src └── main └── resources ├── assets └── porting_lib │ └── icon.png ├── fabric.mod.json └── template.fabric.mod.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/snapshot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/.github/workflows/snapshot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/.idea/icon.png -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CREDIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/CREDIT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/gradlew.bat -------------------------------------------------------------------------------- /modules/attributes/build.gradle: -------------------------------------------------------------------------------- 1 | portingLib { 2 | enableTestMod() 3 | } 4 | -------------------------------------------------------------------------------- /modules/attributes/src/main/resources/assets/porting_lib/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/attributes/src/main/resources/assets/porting_lib/lang/en_us.json -------------------------------------------------------------------------------- /modules/attributes/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/attributes/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/attributes/src/main/resources/porting_lib_attributes.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/attributes/src/main/resources/porting_lib_attributes.mixins.json -------------------------------------------------------------------------------- /modules/attributes/src/testmod/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/attributes/src/testmod/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/base/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/build.gradle -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/PortingLibBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/PortingLibBase.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/PortingLibBaseClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/PortingLibBaseClient.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/client/armor/ArmorRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/client/armor/ArmorRenderer.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/command/ConfigCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/command/ConfigCommand.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/command/EnumArgument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/command/EnumArgument.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/command/ModIdArgument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/command/ModIdArgument.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/event/client/FogEvents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/event/client/FogEvents.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/item/DamageableItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/item/DamageableItem.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/mixin/client/GuiMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/mixin/client/GuiMixin.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/mixin/client/I18nMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/mixin/client/I18nMixin.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/mixin/common/BoatMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/mixin/common/BoatMixin.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/mixin/common/ChunkMapMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/mixin/common/ChunkMapMixin.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/mixin/common/EntityMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/mixin/common/EntityMixin.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/mixin/common/LevelMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/mixin/common/LevelMixin.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/mixin/common/MainMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/mixin/common/MainMixin.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/mixin/common/PlayerMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/mixin/common/PlayerMixin.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/mixin/common/SlotMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/mixin/common/SlotMixin.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/mixin/common/TiersMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/mixin/common/TiersMixin.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/Constants.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/CyclePresentException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/CyclePresentException.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/DeferredSpawnEggItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/DeferredSpawnEggItem.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/ForgeI18n.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/ForgeI18n.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/KeyBindingHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/KeyBindingHelper.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/LazySoundType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/LazySoundType.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/MaterialChest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/MaterialChest.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/NetworkDirection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/NetworkDirection.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/PortingHooks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/PortingHooks.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/ScreenHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/ScreenHelper.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/StickinessUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/StickinessUtil.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/TablePrinter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/TablePrinter.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/TagUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/TagUtil.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/TopologicalSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/TopologicalSort.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/UsernameCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/UsernameCache.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/client/ClientHooks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/client/ClientHooks.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/client/ExtendedSlider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/client/ExtendedSlider.java -------------------------------------------------------------------------------- /modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/client/ScrollPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/java/io/github/fabricators_of_create/porting_lib/util/client/ScrollPanel.java -------------------------------------------------------------------------------- /modules/base/src/main/resources/assets/forge/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/resources/assets/forge/icon.png -------------------------------------------------------------------------------- /modules/base/src/main/resources/assets/forge/models/item/bucket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/resources/assets/forge/models/item/bucket.json -------------------------------------------------------------------------------- /modules/base/src/main/resources/assets/forge/models/item/bucket_drip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/resources/assets/forge/models/item/bucket_drip.json -------------------------------------------------------------------------------- /modules/base/src/main/resources/assets/forge/models/item/default-tool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/resources/assets/forge/models/item/default-tool.json -------------------------------------------------------------------------------- /modules/base/src/main/resources/assets/forge/models/item/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/resources/assets/forge/models/item/default.json -------------------------------------------------------------------------------- /modules/base/src/main/resources/assets/forge/textures/item/mask/bucket_fluid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/resources/assets/forge/textures/item/mask/bucket_fluid.png -------------------------------------------------------------------------------- /modules/base/src/main/resources/assets/forge/textures/item/mask/bucket_fluid_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/resources/assets/forge/textures/item/mask/bucket_fluid_cover.png -------------------------------------------------------------------------------- /modules/base/src/main/resources/assets/forge/textures/item/mask/bucket_fluid_cover_drip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/resources/assets/forge/textures/item/mask/bucket_fluid_cover_drip.png -------------------------------------------------------------------------------- /modules/base/src/main/resources/assets/forge/textures/item/mask/bucket_fluid_drip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/resources/assets/forge/textures/item/mask/bucket_fluid_drip.png -------------------------------------------------------------------------------- /modules/base/src/main/resources/assets/porting_lib/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/resources/assets/porting_lib/lang/en_us.json -------------------------------------------------------------------------------- /modules/base/src/main/resources/assets/porting_lib/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/resources/assets/porting_lib/white.png -------------------------------------------------------------------------------- /modules/base/src/main/resources/data/c/tags/blocks/rails/activator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/resources/data/c/tags/blocks/rails/activator.json -------------------------------------------------------------------------------- /modules/base/src/main/resources/data/forge/loot_modifiers/global_loot_modifiers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/resources/data/forge/loot_modifiers/global_loot_modifiers.json -------------------------------------------------------------------------------- /modules/base/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/base/src/main/resources/porting_lib_base.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/resources/porting_lib_base.accesswidener -------------------------------------------------------------------------------- /modules/base/src/main/resources/porting_lib_base.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/base/src/main/resources/porting_lib_base.mixins.json -------------------------------------------------------------------------------- /modules/blocks/build.gradle: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/blocks/src/main/java/io/github/fabricators_of_create/porting_lib/blocks/BlockEvents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/blocks/src/main/java/io/github/fabricators_of_create/porting_lib/blocks/BlockEvents.java -------------------------------------------------------------------------------- /modules/blocks/src/main/java/io/github/fabricators_of_create/porting_lib/blocks/BlockHooks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/blocks/src/main/java/io/github/fabricators_of_create/porting_lib/blocks/BlockHooks.java -------------------------------------------------------------------------------- /modules/blocks/src/main/java/io/github/fabricators_of_create/porting_lib/blocks/ClientBlockHooks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/blocks/src/main/java/io/github/fabricators_of_create/porting_lib/blocks/ClientBlockHooks.java -------------------------------------------------------------------------------- /modules/blocks/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/blocks/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/blocks/src/main/resources/porting_lib_blocks.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/blocks/src/main/resources/porting_lib_blocks.accesswidener -------------------------------------------------------------------------------- /modules/blocks/src/main/resources/porting_lib_blocks.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/blocks/src/main/resources/porting_lib_blocks.mixins.json -------------------------------------------------------------------------------- /modules/brewing/build.gradle: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/brewing/src/main/java/io/github/fabricators_of_create/porting_lib/brewing/BrewingRecipe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/brewing/src/main/java/io/github/fabricators_of_create/porting_lib/brewing/BrewingRecipe.java -------------------------------------------------------------------------------- /modules/brewing/src/main/java/io/github/fabricators_of_create/porting_lib/brewing/IBrewingRecipe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/brewing/src/main/java/io/github/fabricators_of_create/porting_lib/brewing/IBrewingRecipe.java -------------------------------------------------------------------------------- /modules/brewing/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/brewing/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/brewing/src/main/resources/porting_lib_brewing.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/brewing/src/main/resources/porting_lib_brewing.accesswidener -------------------------------------------------------------------------------- /modules/brewing/src/main/resources/porting_lib_brewing.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/brewing/src/main/resources/porting_lib_brewing.mixins.json -------------------------------------------------------------------------------- /modules/chunk_loading/build.gradle: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/chunk_loading/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/chunk_loading/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/chunk_loading/src/main/resources/porting_lib_chunk_loading.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/chunk_loading/src/main/resources/porting_lib_chunk_loading.mixins.json -------------------------------------------------------------------------------- /modules/client_events/build.gradle: -------------------------------------------------------------------------------- 1 | dependencies { 2 | modImplementation(include("com.github.Chocohead:Fabric-ASM:v2.3")) 3 | } 4 | -------------------------------------------------------------------------------- /modules/client_events/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/client_events/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/client_events/src/main/resources/porting_lib_client_events.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/client_events/src/main/resources/porting_lib_client_events.accesswidener -------------------------------------------------------------------------------- /modules/client_events/src/main/resources/porting_lib_client_events.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/client_events/src/main/resources/porting_lib_client_events.mixins.json -------------------------------------------------------------------------------- /modules/client_extensions/build.gradle: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/client_extensions/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/client_extensions/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/client_extensions/src/main/resources/porting_lib_client_extensions.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/client_extensions/src/main/resources/porting_lib_client_extensions.mixins.json -------------------------------------------------------------------------------- /modules/common/build.gradle: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/common/src/main/java/io/github/fabricators_of_create/porting_lib/common/PortingLibCommon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/common/src/main/java/io/github/fabricators_of_create/porting_lib/common/PortingLibCommon.java -------------------------------------------------------------------------------- /modules/common/src/main/java/io/github/fabricators_of_create/porting_lib/common/util/EnvExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/common/src/main/java/io/github/fabricators_of_create/porting_lib/common/util/EnvExecutor.java -------------------------------------------------------------------------------- /modules/common/src/main/java/io/github/fabricators_of_create/porting_lib/common/util/Lazy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/common/src/main/java/io/github/fabricators_of_create/porting_lib/common/util/Lazy.java -------------------------------------------------------------------------------- /modules/common/src/main/java/io/github/fabricators_of_create/porting_lib/common/util/SimpleTier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/common/src/main/java/io/github/fabricators_of_create/porting_lib/common/util/SimpleTier.java -------------------------------------------------------------------------------- /modules/common/src/main/java/io/github/fabricators_of_create/porting_lib/common/util/TriPredicate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/common/src/main/java/io/github/fabricators_of_create/porting_lib/common/util/TriPredicate.java -------------------------------------------------------------------------------- /modules/common/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/common/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/common/src/main/resources/porting_lib_common.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/common/src/main/resources/porting_lib_common.accesswidener -------------------------------------------------------------------------------- /modules/common/src/main/resources/porting_lib_common.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/common/src/main/resources/porting_lib_common.mixins.json -------------------------------------------------------------------------------- /modules/config/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/config/build.gradle -------------------------------------------------------------------------------- /modules/config/src/main/java/io/github/fabricators_of_create/porting_lib/config/ConfigRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/config/src/main/java/io/github/fabricators_of_create/porting_lib/config/ConfigRegistry.java -------------------------------------------------------------------------------- /modules/config/src/main/java/io/github/fabricators_of_create/porting_lib/config/ConfigTracker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/config/src/main/java/io/github/fabricators_of_create/porting_lib/config/ConfigTracker.java -------------------------------------------------------------------------------- /modules/config/src/main/java/io/github/fabricators_of_create/porting_lib/config/ConfigWatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/config/src/main/java/io/github/fabricators_of_create/porting_lib/config/ConfigWatcher.java -------------------------------------------------------------------------------- /modules/config/src/main/java/io/github/fabricators_of_create/porting_lib/config/IConfigSpec.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/config/src/main/java/io/github/fabricators_of_create/porting_lib/config/IConfigSpec.java -------------------------------------------------------------------------------- /modules/config/src/main/java/io/github/fabricators_of_create/porting_lib/config/LoadedConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/config/src/main/java/io/github/fabricators_of_create/porting_lib/config/LoadedConfig.java -------------------------------------------------------------------------------- /modules/config/src/main/java/io/github/fabricators_of_create/porting_lib/config/ModConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/config/src/main/java/io/github/fabricators_of_create/porting_lib/config/ModConfig.java -------------------------------------------------------------------------------- /modules/config/src/main/java/io/github/fabricators_of_create/porting_lib/config/ModConfigEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/config/src/main/java/io/github/fabricators_of_create/porting_lib/config/ModConfigEvent.java -------------------------------------------------------------------------------- /modules/config/src/main/java/io/github/fabricators_of_create/porting_lib/config/ModConfigSpec.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/config/src/main/java/io/github/fabricators_of_create/porting_lib/config/ModConfigSpec.java -------------------------------------------------------------------------------- /modules/config/src/main/java/io/github/fabricators_of_create/porting_lib/config/ModConfigs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/config/src/main/java/io/github/fabricators_of_create/porting_lib/config/ModConfigs.java -------------------------------------------------------------------------------- /modules/config/src/main/java/io/github/fabricators_of_create/porting_lib/config/PortingLibConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/config/src/main/java/io/github/fabricators_of_create/porting_lib/config/PortingLibConfig.java -------------------------------------------------------------------------------- /modules/config/src/main/resources/META-INF/defaultportinglibconfig.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/config/src/main/resources/META-INF/defaultportinglibconfig.toml -------------------------------------------------------------------------------- /modules/config/src/main/resources/assets/porting_lib_config/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/config/src/main/resources/assets/porting_lib_config/lang/en_us.json -------------------------------------------------------------------------------- /modules/config/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/config/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/config/src/main/resources/porting_lib_config.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/config/src/main/resources/porting_lib_config.accesswidener -------------------------------------------------------------------------------- /modules/config/src/main/resources/porting_lib_config.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/config/src/main/resources/porting_lib_config.mixins.json -------------------------------------------------------------------------------- /modules/core/build.gradle: -------------------------------------------------------------------------------- 1 | portingLib.addModuleDependency("gametest") 2 | -------------------------------------------------------------------------------- /modules/core/src/main/java/io/github/fabricators_of_create/porting_lib/core/PortingLib.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/core/src/main/java/io/github/fabricators_of_create/porting_lib/core/PortingLib.java -------------------------------------------------------------------------------- /modules/core/src/main/java/io/github/fabricators_of_create/porting_lib/core/event/BaseEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/core/src/main/java/io/github/fabricators_of_create/porting_lib/core/event/BaseEvent.java -------------------------------------------------------------------------------- /modules/core/src/main/java/io/github/fabricators_of_create/porting_lib/core/util/INBTSerializable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/core/src/main/java/io/github/fabricators_of_create/porting_lib/core/util/INBTSerializable.java -------------------------------------------------------------------------------- /modules/core/src/main/java/io/github/fabricators_of_create/porting_lib/core/util/Lazy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/core/src/main/java/io/github/fabricators_of_create/porting_lib/core/util/Lazy.java -------------------------------------------------------------------------------- /modules/core/src/main/java/io/github/fabricators_of_create/porting_lib/core/util/MixinHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/core/src/main/java/io/github/fabricators_of_create/porting_lib/core/util/MixinHelper.java -------------------------------------------------------------------------------- /modules/core/src/main/java/io/github/fabricators_of_create/porting_lib/core/util/RecipeMatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/core/src/main/java/io/github/fabricators_of_create/porting_lib/core/util/RecipeMatcher.java -------------------------------------------------------------------------------- /modules/core/src/main/java/io/github/fabricators_of_create/porting_lib/core/util/TranslatableEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/core/src/main/java/io/github/fabricators_of_create/porting_lib/core/util/TranslatableEnum.java -------------------------------------------------------------------------------- /modules/core/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/core/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/data/build.gradle: -------------------------------------------------------------------------------- 1 | portingLib.addModuleDependencies(["common", "resources"]) 2 | -------------------------------------------------------------------------------- /modules/data/src/main/java/io/github/fabricators_of_create/porting_lib/data/DataMapProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/data/src/main/java/io/github/fabricators_of_create/porting_lib/data/DataMapProvider.java -------------------------------------------------------------------------------- /modules/data/src/main/java/io/github/fabricators_of_create/porting_lib/data/ExistingFileHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/data/src/main/java/io/github/fabricators_of_create/porting_lib/data/ExistingFileHelper.java -------------------------------------------------------------------------------- /modules/data/src/main/java/io/github/fabricators_of_create/porting_lib/data/JsonCodecProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/data/src/main/java/io/github/fabricators_of_create/porting_lib/data/JsonCodecProvider.java -------------------------------------------------------------------------------- /modules/data/src/main/java/io/github/fabricators_of_create/porting_lib/data/LanguageProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/data/src/main/java/io/github/fabricators_of_create/porting_lib/data/LanguageProvider.java -------------------------------------------------------------------------------- /modules/data/src/main/java/io/github/fabricators_of_create/porting_lib/data/PortingLibDataHack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/data/src/main/java/io/github/fabricators_of_create/porting_lib/data/PortingLibDataHack.java -------------------------------------------------------------------------------- /modules/data/src/main/java/io/github/fabricators_of_create/porting_lib/data/SoundDefinition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/data/src/main/java/io/github/fabricators_of_create/porting_lib/data/SoundDefinition.java -------------------------------------------------------------------------------- /modules/data/src/main/java/io/github/fabricators_of_create/porting_lib/data/SpriteSourceProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/data/src/main/java/io/github/fabricators_of_create/porting_lib/data/SpriteSourceProvider.java -------------------------------------------------------------------------------- /modules/data/src/main/java/io/github/fabricators_of_create/porting_lib/data/mixin/MinecraftMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/data/src/main/java/io/github/fabricators_of_create/porting_lib/data/mixin/MinecraftMixin.java -------------------------------------------------------------------------------- /modules/data/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/data/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/data/src/main/resources/porting_lib_data.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/data/src/main/resources/porting_lib_data.accesswidener -------------------------------------------------------------------------------- /modules/data/src/main/resources/porting_lib_data.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/data/src/main/resources/porting_lib_data.mixins.json -------------------------------------------------------------------------------- /modules/entity/build.gradle: -------------------------------------------------------------------------------- 1 | portingLib { 2 | addModuleDependency("mixin_extensions") 3 | enableTestMod() 4 | } 5 | -------------------------------------------------------------------------------- /modules/entity/src/main/java/io/github/fabricators_of_create/porting_lib/entity/EffectCure.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/entity/src/main/java/io/github/fabricators_of_create/porting_lib/entity/EffectCure.java -------------------------------------------------------------------------------- /modules/entity/src/main/java/io/github/fabricators_of_create/porting_lib/entity/EffectCures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/entity/src/main/java/io/github/fabricators_of_create/porting_lib/entity/EffectCures.java -------------------------------------------------------------------------------- /modules/entity/src/main/java/io/github/fabricators_of_create/porting_lib/entity/EntityHooks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/entity/src/main/java/io/github/fabricators_of_create/porting_lib/entity/EntityHooks.java -------------------------------------------------------------------------------- /modules/entity/src/main/java/io/github/fabricators_of_create/porting_lib/entity/MultiPartEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/entity/src/main/java/io/github/fabricators_of_create/porting_lib/entity/MultiPartEntity.java -------------------------------------------------------------------------------- /modules/entity/src/main/java/io/github/fabricators_of_create/porting_lib/entity/PartEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/entity/src/main/java/io/github/fabricators_of_create/porting_lib/entity/PartEntity.java -------------------------------------------------------------------------------- /modules/entity/src/main/java/io/github/fabricators_of_create/porting_lib/entity/PortingLibEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/entity/src/main/java/io/github/fabricators_of_create/porting_lib/entity/PortingLibEntity.java -------------------------------------------------------------------------------- /modules/entity/src/main/resources/assets/porting_lib_entity/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/entity/src/main/resources/assets/porting_lib_entity/lang/en_us.json -------------------------------------------------------------------------------- /modules/entity/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/entity/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/entity/src/main/resources/porting_lib_entity.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/entity/src/main/resources/porting_lib_entity.accesswidener -------------------------------------------------------------------------------- /modules/entity/src/main/resources/porting_lib_entity.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/entity/src/main/resources/porting_lib_entity.mixins.json -------------------------------------------------------------------------------- /modules/entity/src/testmod/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/entity/src/testmod/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/entity_data_serializers/build.gradle: -------------------------------------------------------------------------------- 1 | portingLib { 2 | enableTestMod() 3 | } 4 | -------------------------------------------------------------------------------- /modules/entity_data_serializers/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/entity_data_serializers/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/entity_data_serializers/src/main/resources/porting_lib_entity_data_serializers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/entity_data_serializers/src/main/resources/porting_lib_entity_data_serializers.json -------------------------------------------------------------------------------- /modules/fluids/build.gradle: -------------------------------------------------------------------------------- 1 | portingLib.enableTestMod() 2 | -------------------------------------------------------------------------------- /modules/fluids/src/main/java/io/github/fabricators_of_create/porting_lib/fluids/BaseFlowingFluid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/fluids/src/main/java/io/github/fabricators_of_create/porting_lib/fluids/BaseFlowingFluid.java -------------------------------------------------------------------------------- /modules/fluids/src/main/java/io/github/fabricators_of_create/porting_lib/fluids/FluidStack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/fluids/src/main/java/io/github/fabricators_of_create/porting_lib/fluids/FluidStack.java -------------------------------------------------------------------------------- /modules/fluids/src/main/java/io/github/fabricators_of_create/porting_lib/fluids/FluidType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/fluids/src/main/java/io/github/fabricators_of_create/porting_lib/fluids/FluidType.java -------------------------------------------------------------------------------- /modules/fluids/src/main/java/io/github/fabricators_of_create/porting_lib/fluids/FluidUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/fluids/src/main/java/io/github/fabricators_of_create/porting_lib/fluids/FluidUtil.java -------------------------------------------------------------------------------- /modules/fluids/src/main/java/io/github/fabricators_of_create/porting_lib/fluids/PortingLibFluids.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/fluids/src/main/java/io/github/fabricators_of_create/porting_lib/fluids/PortingLibFluids.java -------------------------------------------------------------------------------- /modules/fluids/src/main/java/io/github/fabricators_of_create/porting_lib/fluids/mixin/FluidMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/fluids/src/main/java/io/github/fabricators_of_create/porting_lib/fluids/mixin/FluidMixin.java -------------------------------------------------------------------------------- /modules/fluids/src/main/java/io/github/fabricators_of_create/porting_lib/fluids/sound/SoundAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/fluids/src/main/java/io/github/fabricators_of_create/porting_lib/fluids/sound/SoundAction.java -------------------------------------------------------------------------------- /modules/fluids/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/fluids/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/fluids/src/main/resources/porting_lib_fluids.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/fluids/src/main/resources/porting_lib_fluids.mixins.json -------------------------------------------------------------------------------- /modules/fluids/src/testmod/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/fluids/src/testmod/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/gametest/build.gradle: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/gametest/src/main/resources/assets/porting_lib/models/item/area_selector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/gametest/src/main/resources/assets/porting_lib/models/item/area_selector.json -------------------------------------------------------------------------------- /modules/gametest/src/main/resources/assets/porting_lib_gametest/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/gametest/src/main/resources/assets/porting_lib_gametest/lang/en_us.json -------------------------------------------------------------------------------- /modules/gametest/src/main/resources/data/porting_lib_gametest/structures/gametest/platform/18x3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/gametest/src/main/resources/data/porting_lib_gametest/structures/gametest/platform/18x3.nbt -------------------------------------------------------------------------------- /modules/gametest/src/main/resources/data/porting_lib_gametest/structures/gametest/platform/3x3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/gametest/src/main/resources/data/porting_lib_gametest/structures/gametest/platform/3x3.nbt -------------------------------------------------------------------------------- /modules/gametest/src/main/resources/data/porting_lib_gametest/structures/gametest/platform/5x5.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/gametest/src/main/resources/data/porting_lib_gametest/structures/gametest/platform/5x5.nbt -------------------------------------------------------------------------------- /modules/gametest/src/main/resources/data/porting_lib_gametest/structures/gametest/platform/7x7.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/gametest/src/main/resources/data/porting_lib_gametest/structures/gametest/platform/7x7.nbt -------------------------------------------------------------------------------- /modules/gametest/src/main/resources/data/porting_lib_gametest/structures/gametest/platform/9x9.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/gametest/src/main/resources/data/porting_lib_gametest/structures/gametest/platform/9x9.nbt -------------------------------------------------------------------------------- /modules/gametest/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/gametest/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/gametest/src/main/resources/porting_lib_gametest.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/gametest/src/main/resources/porting_lib_gametest.accesswidener -------------------------------------------------------------------------------- /modules/gametest/src/main/resources/porting_lib_gametest.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/gametest/src/main/resources/porting_lib_gametest.mixins.json -------------------------------------------------------------------------------- /modules/gui_utils/build.gradle: -------------------------------------------------------------------------------- 1 | portingLib.enableTestMod() 2 | -------------------------------------------------------------------------------- /modules/gui_utils/src/main/java/io/github/fabricators_of_create/porting_lib/gui/GuiHooks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/gui_utils/src/main/java/io/github/fabricators_of_create/porting_lib/gui/GuiHooks.java -------------------------------------------------------------------------------- /modules/gui_utils/src/main/java/io/github/fabricators_of_create/porting_lib/gui/mixin/GuiAccessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/gui_utils/src/main/java/io/github/fabricators_of_create/porting_lib/gui/mixin/GuiAccessor.java -------------------------------------------------------------------------------- /modules/gui_utils/src/main/java/io/github/fabricators_of_create/porting_lib/gui/mixin/GuiMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/gui_utils/src/main/java/io/github/fabricators_of_create/porting_lib/gui/mixin/GuiMixin.java -------------------------------------------------------------------------------- /modules/gui_utils/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/gui_utils/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/gui_utils/src/main/resources/porting_lib_gui_utils.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/gui_utils/src/main/resources/porting_lib_gui_utils.accesswidener -------------------------------------------------------------------------------- /modules/gui_utils/src/main/resources/porting_lib_gui_utils.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/gui_utils/src/main/resources/porting_lib_gui_utils.mixins.json -------------------------------------------------------------------------------- /modules/gui_utils/src/testmod/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/gui_utils/src/testmod/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/item_abilities/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/build.gradle -------------------------------------------------------------------------------- /modules/item_abilities/src/generated/resources/.cache/e363a18310a24f02bdb404f7180170842373bd76: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/generated/resources/.cache/e363a18310a24f02bdb404f7180170842373bd76 -------------------------------------------------------------------------------- /modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/acacia_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/acacia_leaves.json -------------------------------------------------------------------------------- /modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/azalea_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/azalea_leaves.json -------------------------------------------------------------------------------- /modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/birch_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/birch_leaves.json -------------------------------------------------------------------------------- /modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/cherry_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/cherry_leaves.json -------------------------------------------------------------------------------- /modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/cobweb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/cobweb.json -------------------------------------------------------------------------------- /modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/dark_oak_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/dark_oak_leaves.json -------------------------------------------------------------------------------- /modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/dead_bush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/dead_bush.json -------------------------------------------------------------------------------- /modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/fern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/fern.json -------------------------------------------------------------------------------- /modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/glow_lichen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/glow_lichen.json -------------------------------------------------------------------------------- /modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/hanging_roots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/hanging_roots.json -------------------------------------------------------------------------------- /modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/jungle_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/jungle_leaves.json -------------------------------------------------------------------------------- /modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/large_fern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/large_fern.json -------------------------------------------------------------------------------- /modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/mangrove_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/mangrove_leaves.json -------------------------------------------------------------------------------- /modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/nether_sprouts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/nether_sprouts.json -------------------------------------------------------------------------------- /modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/oak_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/oak_leaves.json -------------------------------------------------------------------------------- /modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/seagrass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/seagrass.json -------------------------------------------------------------------------------- /modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/short_grass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/short_grass.json -------------------------------------------------------------------------------- /modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/small_dripleaf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/small_dripleaf.json -------------------------------------------------------------------------------- /modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/spruce_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/spruce_leaves.json -------------------------------------------------------------------------------- /modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/tall_grass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/tall_grass.json -------------------------------------------------------------------------------- /modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/tall_seagrass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/tall_seagrass.json -------------------------------------------------------------------------------- /modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/twisting_vines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/twisting_vines.json -------------------------------------------------------------------------------- /modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/vine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/vine.json -------------------------------------------------------------------------------- /modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/weeping_vines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/generated/resources/data/minecraft/loot_tables/blocks/weeping_vines.json -------------------------------------------------------------------------------- /modules/item_abilities/src/main/java/io/github/fabricators_of_create/porting_lib/tool/ItemAbility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/main/java/io/github/fabricators_of_create/porting_lib/tool/ItemAbility.java -------------------------------------------------------------------------------- /modules/item_abilities/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/item_abilities/src/main/resources/porting_lib_item_abilities.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/main/resources/porting_lib_item_abilities.accesswidener -------------------------------------------------------------------------------- /modules/item_abilities/src/main/resources/porting_lib_item_abilities.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/item_abilities/src/main/resources/porting_lib_item_abilities.mixins.json -------------------------------------------------------------------------------- /modules/items/build.gradle: -------------------------------------------------------------------------------- 1 | portingLib.enableTestMod() 2 | -------------------------------------------------------------------------------- /modules/items/src/main/java/io/github/fabricators_of_create/porting_lib/item/ItemHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/items/src/main/java/io/github/fabricators_of_create/porting_lib/item/ItemHelper.java -------------------------------------------------------------------------------- /modules/items/src/main/java/io/github/fabricators_of_create/porting_lib/item/ItemHooks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/items/src/main/java/io/github/fabricators_of_create/porting_lib/item/ItemHooks.java -------------------------------------------------------------------------------- /modules/items/src/main/java/io/github/fabricators_of_create/porting_lib/item/client/GlStateBackup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/items/src/main/java/io/github/fabricators_of_create/porting_lib/item/client/GlStateBackup.java -------------------------------------------------------------------------------- /modules/items/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/items/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/items/src/main/resources/porting_lib_items.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/items/src/main/resources/porting_lib_items.accesswidener -------------------------------------------------------------------------------- /modules/items/src/main/resources/porting_lib_items.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/items/src/main/resources/porting_lib_items.mixins.json -------------------------------------------------------------------------------- /modules/items/src/testmod/resources/assets/porting_lib/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/items/src/testmod/resources/assets/porting_lib/lang/en_us.json -------------------------------------------------------------------------------- /modules/items/src/testmod/resources/assets/porting_lib/models/item/no_repair_pick.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/netherite_pickaxe" 3 | } 4 | -------------------------------------------------------------------------------- /modules/items/src/testmod/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/items/src/testmod/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/level_events/build.gradle: -------------------------------------------------------------------------------- 1 | portingLib.addModuleDependency("blocks") 2 | -------------------------------------------------------------------------------- /modules/level_events/src/main/java/io/github/fabricators_of_create/porting_lib/level/LevelHooks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/level_events/src/main/java/io/github/fabricators_of_create/porting_lib/level/LevelHooks.java -------------------------------------------------------------------------------- /modules/level_events/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/level_events/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/level_events/src/main/resources/porting_lib_level_events.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/level_events/src/main/resources/porting_lib_level_events.mixins.json -------------------------------------------------------------------------------- /modules/loot/build.gradle: -------------------------------------------------------------------------------- 1 | portingLib.addModuleDependencies(["registry", "resources"]) 2 | -------------------------------------------------------------------------------- /modules/loot/src/main/java/io/github/fabricators_of_create/porting_lib/loot/IGlobalLootModifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/loot/src/main/java/io/github/fabricators_of_create/porting_lib/loot/IGlobalLootModifier.java -------------------------------------------------------------------------------- /modules/loot/src/main/java/io/github/fabricators_of_create/porting_lib/loot/LootCollector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/loot/src/main/java/io/github/fabricators_of_create/porting_lib/loot/LootCollector.java -------------------------------------------------------------------------------- /modules/loot/src/main/java/io/github/fabricators_of_create/porting_lib/loot/LootModifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/loot/src/main/java/io/github/fabricators_of_create/porting_lib/loot/LootModifier.java -------------------------------------------------------------------------------- /modules/loot/src/main/java/io/github/fabricators_of_create/porting_lib/loot/LootModifierManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/loot/src/main/java/io/github/fabricators_of_create/porting_lib/loot/LootModifierManager.java -------------------------------------------------------------------------------- /modules/loot/src/main/java/io/github/fabricators_of_create/porting_lib/loot/LootTableIdCondition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/loot/src/main/java/io/github/fabricators_of_create/porting_lib/loot/LootTableIdCondition.java -------------------------------------------------------------------------------- /modules/loot/src/main/java/io/github/fabricators_of_create/porting_lib/loot/PortingLibLoot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/loot/src/main/java/io/github/fabricators_of_create/porting_lib/loot/PortingLibLoot.java -------------------------------------------------------------------------------- /modules/loot/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/loot/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/loot/src/main/resources/porting_lib_loot.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/loot/src/main/resources/porting_lib_loot.mixins.json -------------------------------------------------------------------------------- /modules/milk/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/milk/build.gradle -------------------------------------------------------------------------------- /modules/milk/src/generated/resources/assets/porting_lib_milk/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/milk/src/generated/resources/assets/porting_lib_milk/sounds.json -------------------------------------------------------------------------------- /modules/milk/src/generated/resources/data/c/tags/fluid/milk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/milk/src/generated/resources/data/c/tags/fluid/milk.json -------------------------------------------------------------------------------- /modules/milk/src/main/java/io/github/fabricators_of_create/porting_lib/milk/PortingLibMilk.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/milk/src/main/java/io/github/fabricators_of_create/porting_lib/milk/PortingLibMilk.java -------------------------------------------------------------------------------- /modules/milk/src/main/resources/assets/porting_lib/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/milk/src/main/resources/assets/porting_lib/lang/en_us.json -------------------------------------------------------------------------------- /modules/milk/src/main/resources/assets/porting_lib/textures/block/milk_flowing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/milk/src/main/resources/assets/porting_lib/textures/block/milk_flowing.png -------------------------------------------------------------------------------- /modules/milk/src/main/resources/assets/porting_lib/textures/block/milk_flowing.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/milk/src/main/resources/assets/porting_lib/textures/block/milk_flowing.png.mcmeta -------------------------------------------------------------------------------- /modules/milk/src/main/resources/assets/porting_lib/textures/block/milk_still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/milk/src/main/resources/assets/porting_lib/textures/block/milk_still.png -------------------------------------------------------------------------------- /modules/milk/src/main/resources/assets/porting_lib/textures/block/milk_still.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/milk/src/main/resources/assets/porting_lib/textures/block/milk_still.png.mcmeta -------------------------------------------------------------------------------- /modules/milk/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/milk/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/milk/src/testmod/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/milk/src/testmod/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/mixin_extensions/build.gradle: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/mixin_extensions/src/main/resources/META-INF/services/javax.annotation.processing.Processor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/mixin_extensions/src/main/resources/META-INF/services/javax.annotation.processing.Processor -------------------------------------------------------------------------------- /modules/mixin_extensions/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/mixin_extensions/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/mixin_extensions/src/main/resources/porting_lib_mixin_extensions.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/mixin_extensions/src/main/resources/porting_lib_mixin_extensions.mixins.json -------------------------------------------------------------------------------- /modules/model_data/build.gradle: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/model_data/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/model_data/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/model_loader/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/model_loader/build.gradle -------------------------------------------------------------------------------- /modules/model_loader/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/model_loader/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/model_loader/src/main/resources/porting_lib_model_loader.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/model_loader/src/main/resources/porting_lib_model_loader.accesswidener -------------------------------------------------------------------------------- /modules/model_loader/src/main/resources/porting_lib_model_loader.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/model_loader/src/main/resources/porting_lib_model_loader.mixins.json -------------------------------------------------------------------------------- /modules/models/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/models/build.gradle -------------------------------------------------------------------------------- /modules/models/src/main/java/io/github/fabricators_of_create/porting_lib/models/BakedMeshModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/models/src/main/java/io/github/fabricators_of_create/porting_lib/models/BakedMeshModel.java -------------------------------------------------------------------------------- /modules/models/src/main/java/io/github/fabricators_of_create/porting_lib/models/CompositeModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/models/src/main/java/io/github/fabricators_of_create/porting_lib/models/CompositeModel.java -------------------------------------------------------------------------------- /modules/models/src/main/java/io/github/fabricators_of_create/porting_lib/models/ItemLayerModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/models/src/main/java/io/github/fabricators_of_create/porting_lib/models/ItemLayerModel.java -------------------------------------------------------------------------------- /modules/models/src/main/java/io/github/fabricators_of_create/porting_lib/models/ModelLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/models/src/main/java/io/github/fabricators_of_create/porting_lib/models/ModelLoader.java -------------------------------------------------------------------------------- /modules/models/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/models/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/models/src/main/resources/porting_lib_models.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/models/src/main/resources/porting_lib_models.accesswidener -------------------------------------------------------------------------------- /modules/models/src/main/resources/porting_lib_models.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/models/src/main/resources/porting_lib_models.mixins.json -------------------------------------------------------------------------------- /modules/models/src/testmod/resources/assets/porting_lib/blockstates/not_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/models/src/testmod/resources/assets/porting_lib/blockstates/not_glass.json -------------------------------------------------------------------------------- /modules/models/src/testmod/resources/assets/porting_lib/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/models/src/testmod/resources/assets/porting_lib/lang/en_us.json -------------------------------------------------------------------------------- /modules/models/src/testmod/resources/assets/porting_lib/models/block/not_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/models/src/testmod/resources/assets/porting_lib/models/block/not_glass.json -------------------------------------------------------------------------------- /modules/models/src/testmod/resources/assets/porting_lib/models/item/derp_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/models/src/testmod/resources/assets/porting_lib/models/item/derp_helmet.json -------------------------------------------------------------------------------- /modules/models/src/testmod/resources/assets/porting_lib/models/item/stone_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/models/src/testmod/resources/assets/porting_lib/models/item/stone_2.json -------------------------------------------------------------------------------- /modules/models/src/testmod/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/models/src/testmod/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/obj_loader/build.gradle: -------------------------------------------------------------------------------- 1 | portingLib { 2 | addModuleDependency("model_loader") 3 | enableTestMod() 4 | } 5 | -------------------------------------------------------------------------------- /modules/obj_loader/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/obj_loader/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/obj_loader/src/testmod/resources/assets/porting_lib/models/item/ring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/obj_loader/src/testmod/resources/assets/porting_lib/models/item/ring.json -------------------------------------------------------------------------------- /modules/obj_loader/src/testmod/resources/assets/porting_lib/models/item/ring.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/obj_loader/src/testmod/resources/assets/porting_lib/models/item/ring.mtl -------------------------------------------------------------------------------- /modules/obj_loader/src/testmod/resources/assets/porting_lib/models/item/ring.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/obj_loader/src/testmod/resources/assets/porting_lib/models/item/ring.obj -------------------------------------------------------------------------------- /modules/obj_loader/src/testmod/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/obj_loader/src/testmod/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/recipe_book_categories/build.gradle: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/recipe_book_categories/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/recipe_book_categories/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/recipe_book_categories/src/main/resources/porting_lib_recipe_book_categories.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/recipe_book_categories/src/main/resources/porting_lib_recipe_book_categories.mixins.json -------------------------------------------------------------------------------- /modules/registry/build.gradle: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/registry/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/registry/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/registry/src/main/resources/porting_lib_registry.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/registry/src/main/resources/porting_lib_registry.accesswidener -------------------------------------------------------------------------------- /modules/registry/src/main/resources/porting_lib_registry.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/registry/src/main/resources/porting_lib_registry.mixins.json -------------------------------------------------------------------------------- /modules/render_types/build.gradle: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/render_types/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/render_types/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/render_types/src/main/resources/porting_lib_render_types.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/render_types/src/main/resources/porting_lib_render_types.accesswidener -------------------------------------------------------------------------------- /modules/resources/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/resources/build.gradle -------------------------------------------------------------------------------- /modules/resources/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/resources/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/resources/src/main/resources/porting_lib_resources.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/resources/src/main/resources/porting_lib_resources.accesswidener -------------------------------------------------------------------------------- /modules/resources/src/main/resources/porting_lib_resources.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/resources/src/main/resources/porting_lib_resources.mixins.json -------------------------------------------------------------------------------- /modules/tags/build.gradle: -------------------------------------------------------------------------------- 1 | portingLib.enableDatagen() 2 | -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/.cache/0db07b083d8ec4867dc8d8bdff9548858228ce08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/.cache/0db07b083d8ec4867dc8d8bdff9548858228ce08 -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/.cache/6962ca521ed0f04c0af588ee702ea5e92dd92bbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/.cache/6962ca521ed0f04c0af588ee702ea5e92dd92bbf -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/.cache/878c0710f526c0b7873f5817de08efcf0d1534b7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/.cache/878c0710f526c0b7873f5817de08efcf0d1534b7 -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/.cache/9897d8c3e92150bbf2fefe657c4abae25457fe85: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/.cache/9897d8c3e92150bbf2fefe657c4abae25457fe85 -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/.cache/adaca8b06aaaf3f4d67b9cca4cb2c5464edbdcad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/.cache/adaca8b06aaaf3f4d67b9cca4cb2c5464edbdcad -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/.cache/eea7abfa3446d2a4e6ddd444e2bc333157ec6267: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/.cache/eea7abfa3446d2a4e6ddd444e2bc333157ec6267 -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/assets/porting_lib_tags/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/assets/porting_lib_tags/lang/en_us.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/amethyst_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/amethyst_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/barrels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/barrels.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/black_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/black_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/black_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/black_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/blue_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/blue_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/blue_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/blue_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/brown_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/brown_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/brown_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/brown_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/chests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/chests.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/coal_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/coal_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/coal_ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/coal_ores.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/cobblestone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/cobblestone.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/colorless_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/colorless_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/colorless_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/colorless_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/colorless_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/colorless_sand.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/copper_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/copper_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/copper_ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/copper_ores.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/cyan_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/cyan_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/cyan_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/cyan_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/deepslate_cobblestone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/deepslate_cobblestone.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/diamond_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/diamond_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/diamond_ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/diamond_ores.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/emerald_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/emerald_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/emerald_ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/emerald_ores.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/end_stones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/end_stones.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/ender_chests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/ender_chests.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/enderman_place_on_blacklist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/enderman_place_on_blacklist.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/fence_gates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/fence_gates.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/fences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/fences.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/glass_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/glass_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/gold_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/gold_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/gold_ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/gold_ores.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/gravel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/gravel.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/gray_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/gray_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/gray_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/gray_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/green_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/green_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/green_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/green_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/infested_cobblestone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/infested_cobblestone.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/iron_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/iron_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/iron_ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/iron_ores.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/lapis_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/lapis_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/lapis_ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/lapis_ores.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/light_blue_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/light_blue_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/light_blue_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/light_blue_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/light_gray_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/light_gray_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/light_gray_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/light_gray_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/lime_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/lime_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/lime_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/lime_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/magenta_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/magenta_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/magenta_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/magenta_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/mossy_cobblestone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/mossy_cobblestone.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/nether_brick_fences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/nether_brick_fences.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/netherite_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/netherite_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/netherite_scrap_ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/netherite_scrap_ores.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/netherrack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/netherrack.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/normal_cobblestone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/normal_cobblestone.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/obsidian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/obsidian.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/orange_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/orange_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/orange_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/orange_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/ore_bearing_ground/deepslate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/ore_bearing_ground/deepslate.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/ore_bearing_ground/netherrack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/ore_bearing_ground/netherrack.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/ore_bearing_ground/stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/ore_bearing_ground/stone.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/ore_rates/dense.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/ore_rates/dense.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/ore_rates/singular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/ore_rates/singular.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/ore_rates/sparse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/ore_rates/sparse.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/ores.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/ores_in_ground/deepslate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/ores_in_ground/deepslate.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/ores_in_ground/netherrack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/ores_in_ground/netherrack.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/ores_in_ground/stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/ores_in_ground/stone.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/pink_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/pink_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/pink_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/pink_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/purple_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/purple_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/purple_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/purple_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/quartz_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/quartz_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/quartz_ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/quartz_ores.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/raw_copper_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/raw_copper_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/raw_gold_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/raw_gold_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/raw_iron_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/raw_iron_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/red_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/red_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/red_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/red_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/red_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/red_sand.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/redstone_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/redstone_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/redstone_ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/redstone_ores.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/sand.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/sandstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/sandstone.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/silica_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/silica_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/stained_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/stained_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/stained_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/stained_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/stone.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/storage_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/storage_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/tinted_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/tinted_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/trapped_chests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/trapped_chests.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/white_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/white_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/white_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/white_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/wooden_barrels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/wooden_barrels.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/wooden_chests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/wooden_chests.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/wooden_fence_gates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/wooden_fence_gates.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/wooden_fences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/wooden_fences.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/yellow_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/yellow_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/blocks/yellow_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/blocks/yellow_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/entity_types/bosses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/entity_types/bosses.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/amethyst.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/amethyst.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/amethyst_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/amethyst_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/armors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/armors.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/axes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/axes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/barrels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/barrels.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/beetroot_seeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/beetroot_seeds.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/black_dyes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/black_dyes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/black_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/black_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/black_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/black_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/blaze_rods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/blaze_rods.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/blue_dyes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/blue_dyes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/blue_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/blue_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/blue_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/blue_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/bones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/bones.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/bookshelves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/bookshelves.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/boots.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/bows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/bows.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/brick_ingots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/brick_ingots.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/brown_dyes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/brown_dyes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/brown_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/brown_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/brown_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/brown_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/chestplates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/chestplates.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/chests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/chests.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/coal_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/coal_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/coal_ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/coal_ores.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/cobblestone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/cobblestone.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/colorless_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/colorless_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/colorless_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/colorless_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/colorless_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/colorless_sand.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/copper_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/copper_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/copper_ingots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/copper_ingots.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/copper_ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/copper_ores.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/copper_raw_materials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/copper_raw_materials.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/crops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/crops.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/crops/beetroot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/crops/beetroot.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/crops/carrot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/crops/carrot.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/crops/nether_wart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/crops/nether_wart.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/crops/potato.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/crops/potato.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/crops/wheat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/crops/wheat.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/crossbows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/crossbows.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/cyan_dyes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/cyan_dyes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/cyan_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/cyan_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/cyan_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/cyan_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/deepslate_cobblestone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/deepslate_cobblestone.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/diamond_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/diamond_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/diamond_ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/diamond_ores.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/diamonds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/diamonds.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/dusts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/dusts.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/dusts/glowstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/dusts/glowstone.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/dusts/prismarine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/dusts/prismarine.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/dusts/redstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/dusts/redstone.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/dyes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/dyes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/eggs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/eggs.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/emerald_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/emerald_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/emerald_ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/emerald_ores.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/emeralds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/emeralds.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/enchanting_fuels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/enchanting_fuels.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/end_stones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/end_stones.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/ender_chests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/ender_chests.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/ender_pearls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/ender_pearls.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/feathers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/feathers.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/fence_gates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/fence_gates.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/fences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/fences.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/fishing_rods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/fishing_rods.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/gems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/gems.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/glass_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/glass_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/gold_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/gold_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/gold_ingots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/gold_ingots.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/gold_nuggets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/gold_nuggets.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/gold_ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/gold_ores.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/gold_raw_materials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/gold_raw_materials.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/gravel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/gravel.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/gray_dyes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/gray_dyes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/gray_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/gray_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/gray_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/gray_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/green_dyes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/green_dyes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/green_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/green_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/green_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/green_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/gunpowder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/gunpowder.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/heads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/heads.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/helmets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/helmets.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/hoes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/hoes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/infested_cobblestone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/infested_cobblestone.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/ingots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/ingots.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/iron_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/iron_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/iron_ingots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/iron_ingots.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/iron_nuggets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/iron_nuggets.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/iron_ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/iron_ores.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/iron_raw_materials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/iron_raw_materials.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/lapis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/lapis.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/lapis_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/lapis_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/lapis_ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/lapis_ores.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/leather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/leather.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/leggings.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/light_blue_dyes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/light_blue_dyes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/light_blue_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/light_blue_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/light_blue_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/light_blue_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/light_gray_dyes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/light_gray_dyes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/light_gray_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/light_gray_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/light_gray_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/light_gray_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/lime_dyes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/lime_dyes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/lime_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/lime_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/lime_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/lime_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/magenta_dyes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/magenta_dyes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/magenta_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/magenta_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/magenta_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/magenta_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/melon_seeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/melon_seeds.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/mossy_cobblestone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/mossy_cobblestone.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/mushrooms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/mushrooms.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/nether_brick_fences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/nether_brick_fences.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/nether_brick_ingots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/nether_brick_ingots.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/nether_stars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/nether_stars.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/netherite_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/netherite_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/netherite_ingots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/netherite_ingots.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/netherite_scrap_ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/netherite_scrap_ores.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/netherrack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/netherrack.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/normal_cobblestone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/normal_cobblestone.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/nuggets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/nuggets.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/obsidian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/obsidian.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/orange_dyes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/orange_dyes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/orange_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/orange_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/orange_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/orange_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/ore_bearing_ground/deepslate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/ore_bearing_ground/deepslate.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/ore_bearing_ground/netherrack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/ore_bearing_ground/netherrack.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/ore_bearing_ground/stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/ore_bearing_ground/stone.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/ore_rates/dense.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/ore_rates/dense.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/ore_rates/singular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/ore_rates/singular.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/ore_rates/sparse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/ore_rates/sparse.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/ores.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/ores_in_ground/deepslate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/ores_in_ground/deepslate.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/ores_in_ground/netherrack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/ores_in_ground/netherrack.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/ores_in_ground/stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/ores_in_ground/stone.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/pickaxes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/pickaxes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/pink_dyes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/pink_dyes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/pink_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/pink_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/pink_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/pink_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/prismarine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/prismarine.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/pumpkin_seeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/pumpkin_seeds.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/purple_dyes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/purple_dyes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/purple_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/purple_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/purple_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/purple_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/quartz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/quartz.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/quartz_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/quartz_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/quartz_ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/quartz_ores.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/raw_copper_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/raw_copper_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/raw_gold_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/raw_gold_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/raw_iron_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/raw_iron_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/raw_materials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/raw_materials.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/red_dyes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/red_dyes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/red_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/red_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/red_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/red_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/red_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/red_sand.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/redstone_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/redstone_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/redstone_ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/redstone_ores.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/rods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/rods.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/sand.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/sandstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/sandstone.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/seeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/seeds.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/shears.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/shears.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/shields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/shields.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/shovels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/shovels.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/silica_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/silica_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/slimeballs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/slimeballs.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/stained_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/stained_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/stained_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/stained_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/stone.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/storage_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/storage_blocks.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/string.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/swords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/swords.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/tinted_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/tinted_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/tools.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/trapped_chests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/trapped_chests.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/tridents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/tridents.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/wheat_seeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/wheat_seeds.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/white_dyes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/white_dyes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/white_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/white_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/white_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/white_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/wooden_barrels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/wooden_barrels.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/wooden_chests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/wooden_chests.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/wooden_fence_gates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/wooden_fence_gates.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/wooden_fences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/wooden_fences.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/wooden_rods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/wooden_rods.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/yellow_dyes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/yellow_dyes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/yellow_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/yellow_glass.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/items/yellow_glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/items/yellow_glass_panes.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_cave.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_cave.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_cold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_cold.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_cold/end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_cold/end.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_cold/overworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_cold/overworld.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_coniferous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_coniferous.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_dense.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_dense.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_dense/overworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_dense/overworld.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_desert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_desert.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_dry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_dry.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_dry/end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_dry/end.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_dry/nether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_dry/nether.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_dry/overworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_dry/overworld.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_hot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_hot.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_hot/nether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_hot/nether.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_hot/overworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_hot/overworld.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_lush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_lush.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_mountain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_mountain.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_mushroom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_mushroom.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_peak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_peak.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_plains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_plains.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_plateau.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_plateau.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_rare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_rare.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_sandy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_sandy.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_slope.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_slope.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_snowy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_snowy.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_sparse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_sparse.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_sparse/overworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_sparse/overworld.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_spooky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_spooky.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_swamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_swamp.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_underground.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_underground.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_void.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_void.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_wasteland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_wasteland.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_water.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_water.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_wet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_wet.json -------------------------------------------------------------------------------- /modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_wet/overworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/generated/resources/data/c/tags/worldgen/biome/is_wet/overworld.json -------------------------------------------------------------------------------- /modules/tags/src/main/java/io/github/fabricators_of_create/porting_lib/tags/TagHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/main/java/io/github/fabricators_of_create/porting_lib/tags/TagHelper.java -------------------------------------------------------------------------------- /modules/tags/src/main/java/io/github/fabricators_of_create/porting_lib/tags/Tags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/main/java/io/github/fabricators_of_create/porting_lib/tags/Tags.java -------------------------------------------------------------------------------- /modules/tags/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/tags/src/main/resources/porting_lib_tags.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/tags/src/main/resources/porting_lib_tags.mixins.json -------------------------------------------------------------------------------- /modules/transfer/build.gradle: -------------------------------------------------------------------------------- 1 | portingLib.addModuleDependency("fluids") 2 | -------------------------------------------------------------------------------- /modules/transfer/src/main/java/io/github/fabricators_of_create/porting_lib/PortingLibTransfer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/transfer/src/main/java/io/github/fabricators_of_create/porting_lib/PortingLibTransfer.java -------------------------------------------------------------------------------- /modules/transfer/src/main/java/io/github/fabricators_of_create/porting_lib/util/EmptySortedSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/transfer/src/main/java/io/github/fabricators_of_create/porting_lib/util/EmptySortedSet.java -------------------------------------------------------------------------------- /modules/transfer/src/main/java/io/github/fabricators_of_create/porting_lib/util/FluidTextUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/transfer/src/main/java/io/github/fabricators_of_create/porting_lib/util/FluidTextUtil.java -------------------------------------------------------------------------------- /modules/transfer/src/main/java/io/github/fabricators_of_create/porting_lib/util/FluidUnit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/transfer/src/main/java/io/github/fabricators_of_create/porting_lib/util/FluidUnit.java -------------------------------------------------------------------------------- /modules/transfer/src/main/java/io/github/fabricators_of_create/porting_lib/util/ItemStackUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/transfer/src/main/java/io/github/fabricators_of_create/porting_lib/util/ItemStackUtil.java -------------------------------------------------------------------------------- /modules/transfer/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/transfer/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /modules/transfer/src/main/resources/porting_lib_transfer.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/transfer/src/main/resources/porting_lib_transfer.accesswidener -------------------------------------------------------------------------------- /modules/transfer/src/main/resources/porting_lib_transfer.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/modules/transfer/src/main/resources/porting_lib_transfer.mixins.json -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/main/resources/assets/porting_lib/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/src/main/resources/assets/porting_lib/icon.png -------------------------------------------------------------------------------- /src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /src/main/resources/template.fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fabricators-of-Create/Porting-Lib/HEAD/src/main/resources/template.fabric.mod.json --------------------------------------------------------------------------------