├── .gitignore ├── LICENSE ├── README.md ├── build.gradle ├── changelog.txt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src ├── generated └── resources │ ├── assets │ └── rftoolsutility │ │ ├── blockstates │ │ ├── analog.json │ │ ├── counter.json │ │ ├── crafter1.json │ │ ├── crafter2.json │ │ ├── crafter3.json │ │ ├── creative_screen.json │ │ ├── destination_analyzer.json │ │ ├── dialing_device.json │ │ ├── digit.json │ │ ├── environmental_controller.json │ │ ├── invchecker.json │ │ ├── logic.json │ │ ├── matter_beamer.json │ │ ├── matter_booster.json │ │ ├── matter_receiver.json │ │ ├── matter_transmitter.json │ │ ├── redstone_receiver.json │ │ ├── redstone_transmitter.json │ │ ├── screen.json │ │ ├── screen_controller.json │ │ ├── screen_hitblock.json │ │ ├── sensor.json │ │ ├── sequencer.json │ │ ├── simple_dialer.json │ │ ├── spawner.json │ │ ├── timer.json │ │ └── wire.json │ │ └── models │ │ ├── block │ │ ├── analog_0.json │ │ ├── analog_1.json │ │ ├── analog_2.json │ │ ├── analog_3.json │ │ ├── counter_0.json │ │ ├── counter_1.json │ │ ├── counter_2.json │ │ ├── counter_3.json │ │ ├── crafter1.json │ │ ├── crafter2.json │ │ ├── crafter3.json │ │ ├── creative_screen.json │ │ ├── destination_analyzer.json │ │ ├── dialing_device.json │ │ ├── digit_0.json │ │ ├── digit_1.json │ │ ├── digit_2.json │ │ ├── digit_3.json │ │ ├── environmental_controller.json │ │ ├── invchecker_0.json │ │ ├── invchecker_1.json │ │ ├── invchecker_2.json │ │ ├── invchecker_3.json │ │ ├── logic_0.json │ │ ├── logic_1.json │ │ ├── logic_2.json │ │ ├── logic_3.json │ │ ├── matter_beamer_off.json │ │ ├── matter_beamer_on.json │ │ ├── matter_booster.json │ │ ├── matter_receiver.json │ │ ├── matter_transmitter.json │ │ ├── redstone_receiver_0.json │ │ ├── redstone_receiver_1.json │ │ ├── redstone_receiver_2.json │ │ ├── redstone_receiver_3.json │ │ ├── redstone_transmitter_0.json │ │ ├── redstone_transmitter_1.json │ │ ├── redstone_transmitter_2.json │ │ ├── redstone_transmitter_3.json │ │ ├── screen.json │ │ ├── screen_controller.json │ │ ├── sensor_0.json │ │ ├── sensor_1.json │ │ ├── sensor_2.json │ │ ├── sensor_3.json │ │ ├── sequencer_0.json │ │ ├── sequencer_1.json │ │ ├── sequencer_2.json │ │ ├── sequencer_3.json │ │ ├── simple_dialer_0.json │ │ ├── simple_dialer_1.json │ │ ├── simple_dialer_2.json │ │ ├── simple_dialer_3.json │ │ ├── spawner.json │ │ ├── tank_inventory.json │ │ ├── timer_0.json │ │ ├── timer_1.json │ │ ├── timer_2.json │ │ ├── timer_3.json │ │ ├── wire_0.json │ │ ├── wire_1.json │ │ ├── wire_2.json │ │ └── wire_3.json │ │ └── item │ │ ├── analog.json │ │ ├── blindness_module.json │ │ ├── counter.json │ │ ├── crafter1.json │ │ ├── crafter2.json │ │ ├── crafter3.json │ │ ├── creative_screen.json │ │ ├── destination_analyzer.json │ │ ├── dialing_device.json │ │ ├── digit.json │ │ ├── environmental_controller.json │ │ ├── featherfalling_module.json │ │ ├── featherfallingplus_module.json │ │ ├── flight_module.json │ │ ├── glowing_module.json │ │ ├── haste_module.json │ │ ├── hasteplus_module.json │ │ ├── invchecker.json │ │ ├── logic.json │ │ ├── luck_module.json │ │ ├── matter_beamer.json │ │ ├── matter_booster.json │ │ ├── matter_receiver.json │ │ ├── matter_transmitter.json │ │ ├── module_template.json │ │ ├── moduleplus_template.json │ │ ├── nightvision_module.json │ │ ├── noteleport_module.json │ │ ├── peaceful_module.json │ │ ├── poison_module.json │ │ ├── redstone_receiver.json │ │ ├── redstone_transmitter.json │ │ ├── regeneration_module.json │ │ ├── regenerationplus_module.json │ │ ├── saturation_module.json │ │ ├── saturationplus_module.json │ │ ├── screen.json │ │ ├── screen_controller.json │ │ ├── sensor.json │ │ ├── sequencer.json │ │ ├── simple_dialer.json │ │ ├── slowness_module.json │ │ ├── spawner.json │ │ ├── speed_module.json │ │ ├── speedplus_module.json │ │ ├── tank.json │ │ ├── timer.json │ │ ├── waterbreathing_module.json │ │ ├── weakness_module.json │ │ └── wire.json │ └── data │ └── rftoolsutility │ ├── advancements │ └── recipes │ │ ├── rftoolsbase │ │ ├── matter_beamer.json │ │ └── spawner.json │ │ └── rftoolsutility │ │ ├── advanced_charged_porter.json │ │ ├── analog.json │ │ ├── blindness_module.json │ │ ├── button_module.json │ │ ├── charged_porter.json │ │ ├── clock_module.json │ │ ├── counter.json │ │ ├── crafter1.json │ │ ├── crafter2.json │ │ ├── crafter3.json │ │ ├── destination_analyzer.json │ │ ├── dialing_device.json │ │ ├── digit.json │ │ ├── energy_module.json │ │ ├── energyplus_module.json │ │ ├── environmental_controller.json │ │ ├── featherfalling_module.json │ │ ├── featherfallingplus_module.json │ │ ├── flight_module.json │ │ ├── fluid_module.json │ │ ├── fluidplus_module.json │ │ ├── glowing_module.json │ │ ├── haste_module.json │ │ ├── hasteplus_module.json │ │ ├── invchecker.json │ │ ├── inventory_module.json │ │ ├── inventoryplus_module.json │ │ ├── logic.json │ │ ├── luck_module.json │ │ ├── machineinformation_module.json │ │ ├── matter_booster.json │ │ ├── matter_receiver.json │ │ ├── matter_transmitter.json │ │ ├── module_template.json │ │ ├── moduleplus_template.json │ │ ├── nightvision_module.json │ │ ├── noteleport_module.json │ │ ├── peaceful_module.json │ │ ├── poison_module.json │ │ ├── redstone_information.json │ │ ├── redstone_module.json │ │ ├── redstone_receiver.json │ │ ├── redstone_transmitter.json │ │ ├── regeneration_module.json │ │ ├── regenerationplus_module.json │ │ ├── saturation_module.json │ │ ├── saturationplus_module.json │ │ ├── screen.json │ │ ├── screen_controller.json │ │ ├── screen_link.json │ │ ├── sensor.json │ │ ├── sequencer.json │ │ ├── simple_dialer.json │ │ ├── slowness_module.json │ │ ├── speed_module.json │ │ ├── speedplus_module.json │ │ ├── syringe.json │ │ ├── tank.json │ │ ├── text_module.json │ │ ├── timer.json │ │ ├── waterbreathing_module.json │ │ ├── weakness_module.json │ │ └── wire.json │ ├── loot_tables │ └── blocks │ │ ├── analog.json │ │ ├── counter.json │ │ ├── crafter1.json │ │ ├── crafter2.json │ │ ├── crafter3.json │ │ ├── creative_screen.json │ │ ├── destination_analyzer.json │ │ ├── dialing_device.json │ │ ├── digit.json │ │ ├── environmental_controller.json │ │ ├── invchecker.json │ │ ├── logic.json │ │ ├── matter_beamer.json │ │ ├── matter_booster.json │ │ ├── matter_receiver.json │ │ ├── matter_transmitter.json │ │ ├── redstone_receiver.json │ │ ├── redstone_transmitter.json │ │ ├── screen.json │ │ ├── screen_controller.json │ │ ├── sensor.json │ │ ├── sequencer.json │ │ ├── simple_dialer.json │ │ ├── spawner.json │ │ ├── tank.json │ │ ├── timer.json │ │ └── wire.json │ └── recipes │ ├── advanced_charged_porter.json │ ├── analog.json │ ├── blindness_module.json │ ├── button_module.json │ ├── charged_porter.json │ ├── clock_module.json │ ├── counter.json │ ├── crafter1.json │ ├── crafter2.json │ ├── crafter3.json │ ├── destination_analyzer.json │ ├── dialing_device.json │ ├── digit.json │ ├── energy_module.json │ ├── energyplus_module.json │ ├── environmental_controller.json │ ├── featherfalling_module.json │ ├── featherfallingplus_module.json │ ├── flight_module.json │ ├── fluid_module.json │ ├── fluidplus_module.json │ ├── glowing_module.json │ ├── haste_module.json │ ├── hasteplus_module.json │ ├── invchecker.json │ ├── inventory_module.json │ ├── inventoryplus_module.json │ ├── logic.json │ ├── luck_module.json │ ├── machineinformation_module.json │ ├── matter_beamer.json │ ├── matter_booster.json │ ├── matter_receiver.json │ ├── matter_transmitter.json │ ├── minecraft_bat.json │ ├── minecraft_bee.json │ ├── minecraft_blaze.json │ ├── minecraft_cat.json │ ├── minecraft_cave_spider.json │ ├── minecraft_chicken.json │ ├── minecraft_cod.json │ ├── minecraft_cow.json │ ├── minecraft_creeper.json │ ├── minecraft_dolphin.json │ ├── minecraft_donkey.json │ ├── minecraft_drowned.json │ ├── minecraft_elder_guardian.json │ ├── minecraft_ender_dragon.json │ ├── minecraft_enderman.json │ ├── minecraft_endermite.json │ ├── minecraft_evoker.json │ ├── minecraft_fox.json │ ├── minecraft_ghast.json │ ├── minecraft_giant.json │ ├── minecraft_guardian.json │ ├── minecraft_hoglin.json │ ├── minecraft_horse.json │ ├── minecraft_husk.json │ ├── minecraft_illusioner.json │ ├── minecraft_iron_golem.json │ ├── minecraft_llama.json │ ├── minecraft_magma_cube.json │ ├── minecraft_mooshroom.json │ ├── minecraft_mule.json │ ├── minecraft_ocelot.json │ ├── minecraft_panda.json │ ├── minecraft_parrot.json │ ├── minecraft_phantom.json │ ├── minecraft_pig.json │ ├── minecraft_piglin.json │ ├── minecraft_piglin_brute.json │ ├── minecraft_pillager.json │ ├── minecraft_polar_bear.json │ ├── minecraft_pufferfish.json │ ├── minecraft_rabbit.json │ ├── minecraft_ravager.json │ ├── minecraft_salmon.json │ ├── minecraft_sheep.json │ ├── minecraft_shulker.json │ ├── minecraft_silverfish.json │ ├── minecraft_skeleton.json │ ├── minecraft_skeleton_horse.json │ ├── minecraft_slime.json │ ├── minecraft_snow_golem.json │ ├── minecraft_spider.json │ ├── minecraft_squid.json │ ├── minecraft_stray.json │ ├── minecraft_strider.json │ ├── minecraft_trader_llama.json │ ├── minecraft_tropical_fish.json │ ├── minecraft_turtle.json │ ├── minecraft_vex.json │ ├── minecraft_villager.json │ ├── minecraft_vindicator.json │ ├── minecraft_wandering_trader.json │ ├── minecraft_witch.json │ ├── minecraft_wither.json │ ├── minecraft_wither_skeleton.json │ ├── minecraft_wolf.json │ ├── minecraft_zoglin.json │ ├── minecraft_zombie.json │ ├── minecraft_zombie_horse.json │ ├── minecraft_zombie_villager.json │ ├── minecraft_zombified_piglin.json │ ├── module_template.json │ ├── moduleplus_template.json │ ├── nightvision_module.json │ ├── noteleport_module.json │ ├── peaceful_module.json │ ├── poison_module.json │ ├── redstone_information.json │ ├── redstone_module.json │ ├── redstone_receiver.json │ ├── redstone_transmitter.json │ ├── regeneration_module.json │ ├── regenerationplus_module.json │ ├── saturation_module.json │ ├── saturationplus_module.json │ ├── screen.json │ ├── screen_controller.json │ ├── screen_link.json │ ├── sensor.json │ ├── sequencer.json │ ├── simple_dialer.json │ ├── slowness_module.json │ ├── spawner.json │ ├── speed_module.json │ ├── speedplus_module.json │ ├── syringe.json │ ├── tank.json │ ├── text_module.json │ ├── timer.json │ ├── waterbreathing_module.json │ ├── weakness_module.json │ └── wire.json └── main ├── java └── mcjty │ └── rftoolsutility │ ├── RFToolsUtility.java │ ├── apiimpl │ └── teleportation │ │ └── TeleportationManager.java │ ├── client │ └── RenderGameOverlayEventHandler.java │ ├── commands │ ├── CommandCleanupReceivers.java │ ├── CommandSetBuffs.java │ └── ModCommands.java │ ├── compat │ ├── ElementSequencer.java │ ├── RFToolsUtilityTOPDriver.java │ ├── TheOneProbeSupport.java │ └── jei │ │ ├── CrafterRecipeTransferHandler.java │ │ ├── PacketSendRecipe.java │ │ └── RFToolsUtilityJeiPlugin.java │ ├── datagen │ ├── BlockStates.java │ ├── DataGenerators.java │ ├── Items.java │ ├── LootTables.java │ └── Recipes.java │ ├── modules │ ├── crafter │ │ ├── CrafterConfiguration.java │ │ ├── CrafterModule.java │ │ ├── blocks │ │ │ ├── CrafterBaseTE.java │ │ │ ├── CrafterBlock.java │ │ │ ├── CrafterBlockTileEntity1.java │ │ │ ├── CrafterBlockTileEntity2.java │ │ │ ├── CrafterBlockTileEntity3.java │ │ │ └── CrafterContainer.java │ │ ├── client │ │ │ └── GuiCrafter.java │ │ └── data │ │ │ ├── CraftMode.java │ │ │ ├── CraftingRecipe.java │ │ │ ├── KeepMode.java │ │ │ └── SpeedMode.java │ ├── environmental │ │ ├── EnvModuleProvider.java │ │ ├── EnvironmentalConfiguration.java │ │ ├── EnvironmentalModule.java │ │ ├── NoTeleportAreaManager.java │ │ ├── PeacefulAreaManager.java │ │ ├── blocks │ │ │ └── EnvironmentalControllerTileEntity.java │ │ ├── client │ │ │ ├── ClientSetup.java │ │ │ ├── EnvironmentalRenderer.java │ │ │ └── GuiEnvironmentalController.java │ │ ├── items │ │ │ └── EnvironmentalControllerItem.java │ │ ├── modules │ │ │ ├── BuffEModule.java │ │ │ ├── EnvironmentModule.java │ │ │ ├── NoTeleportEModule.java │ │ │ ├── PeacefulEModule.java │ │ │ └── PotionEffectModule.java │ │ └── recipes │ │ │ ├── SyringeBasedRecipe.java │ │ │ ├── SyringeRecipeBuilder.java │ │ │ ├── SyringeRecipeSerializer.java │ │ │ └── SyringeRecipeType.java │ ├── logic │ │ ├── LogicBlockModule.java │ │ ├── blocks │ │ │ ├── AnalogTileEntity.java │ │ │ ├── CounterTileEntity.java │ │ │ ├── DigitTileEntity.java │ │ │ ├── InvCheckerDamageMode.java │ │ │ ├── InvCheckerTileEntity.java │ │ │ ├── RedstoneChannelBlock.java │ │ │ ├── RedstoneChannelTileEntity.java │ │ │ ├── RedstoneReceiverTileEntity.java │ │ │ ├── RedstoneTransmitterBlock.java │ │ │ ├── RedstoneTransmitterTileEntity.java │ │ │ ├── SensorTileEntity.java │ │ │ ├── SequencerTileEntity.java │ │ │ ├── ThreeLogicTileEntity.java │ │ │ ├── TimerTileEntity.java │ │ │ └── WireTileEntity.java │ │ ├── client │ │ │ ├── DigitRenderer.java │ │ │ ├── GuiAnalog.java │ │ │ ├── GuiCounter.java │ │ │ ├── GuiInvChecker.java │ │ │ ├── GuiRedstoneInformation.java │ │ │ ├── GuiRedstoneReceiver.java │ │ │ ├── GuiRedstoneTransmitter.java │ │ │ ├── GuiSensor.java │ │ │ ├── GuiSequencer.java │ │ │ ├── GuiThreeLogic.java │ │ │ └── GuiTimer.java │ │ ├── items │ │ │ ├── RedstoneInformationContainer.java │ │ │ └── RedstoneInformationItem.java │ │ ├── network │ │ │ ├── PacketRemoveChannel.java │ │ │ ├── PacketSendRedstoneData.java │ │ │ ├── PacketSetChannelName.java │ │ │ └── PacketSetRedstone.java │ │ └── tools │ │ │ ├── AreaType.java │ │ │ ├── GroupType.java │ │ │ ├── RedstoneChannels.java │ │ │ ├── SensorType.java │ │ │ └── SequencerMode.java │ ├── screen │ │ ├── IModuleGuiChanged.java │ │ ├── MachineInfo.java │ │ ├── NbtSanitizerModuleGuiBuilder.java │ │ ├── RFToolsTools.java │ │ ├── ScreenConfiguration.java │ │ ├── ScreenModule.java │ │ ├── ScreenModuleRegistry.java │ │ ├── blocks │ │ │ ├── CreativeScreenTileEntity.java │ │ │ ├── ScreenBlock.java │ │ │ ├── ScreenContainer.java │ │ │ ├── ScreenControllerBlock.java │ │ │ ├── ScreenControllerTileEntity.java │ │ │ ├── ScreenHitBlock.java │ │ │ ├── ScreenHitTileEntity.java │ │ │ └── ScreenTileEntity.java │ │ ├── client │ │ │ ├── FullBrightTextType.java │ │ │ ├── GuiScreen.java │ │ │ ├── GuiScreenController.java │ │ │ ├── GuiTabletScreen.java │ │ │ └── ScreenRenderer.java │ │ ├── data │ │ │ ├── ModuleDataBoolean.java │ │ │ ├── ModuleDataInteger.java │ │ │ └── ModuleDataString.java │ │ ├── items │ │ │ ├── ScreenLinkItem.java │ │ │ └── modules │ │ │ │ ├── ButtonModuleItem.java │ │ │ │ ├── ClockModuleItem.java │ │ │ │ ├── ComputerModuleItem.java │ │ │ │ ├── CounterModuleItem.java │ │ │ │ ├── CounterPlusModuleItem.java │ │ │ │ ├── ElevatorButtonModuleItem.java │ │ │ │ ├── EnergyModuleItem.java │ │ │ │ ├── EnergyPlusModuleItem.java │ │ │ │ ├── FluidModuleItem.java │ │ │ │ ├── FluidPlusModuleItem.java │ │ │ │ ├── InventoryModuleItem.java │ │ │ │ ├── InventoryPlusModuleItem.java │ │ │ │ ├── MachineInformationModuleItem.java │ │ │ │ ├── RedstoneModuleItem.java │ │ │ │ └── TextModuleItem.java │ │ ├── modules │ │ │ ├── ButtonScreenModule.java │ │ │ ├── ClockScreenModule.java │ │ │ ├── ComputerScreenModule.java │ │ │ ├── CounterPlusScreenModule.java │ │ │ ├── CounterScreenModule.java │ │ │ ├── ElevatorButtonScreenModule.java │ │ │ ├── EnergyBarScreenModule.java │ │ │ ├── EnergyPlusBarScreenModule.java │ │ │ ├── FluidBarScreenModule.java │ │ │ ├── FluidPlusBarScreenModule.java │ │ │ ├── ItemStackPlusScreenModule.java │ │ │ ├── ItemStackScreenModule.java │ │ │ ├── MachineInformationScreenModule.java │ │ │ ├── RedstoneScreenModule.java │ │ │ ├── ScreenDataType.java │ │ │ ├── ScreenModuleHelper.java │ │ │ └── TextScreenModule.java │ │ ├── modulesclient │ │ │ ├── ButtonClientScreenModule.java │ │ │ ├── ClockClientScreenModule.java │ │ │ ├── ComputerClientScreenModule.java │ │ │ ├── CounterClientScreenModule.java │ │ │ ├── CounterPlusClientScreenModule.java │ │ │ ├── ElevatorButtonClientScreenModule.java │ │ │ ├── EnergyBarClientScreenModule.java │ │ │ ├── EnergyPlusBarClientScreenModule.java │ │ │ ├── FluidBarClientScreenModule.java │ │ │ ├── FluidPlusBarClientScreenModule.java │ │ │ ├── ItemStackClientScreenModule.java │ │ │ ├── ItemStackPlusClientScreenModule.java │ │ │ ├── MachineInformationClientScreenModule.java │ │ │ ├── RedstoneClientScreenModule.java │ │ │ ├── TextClientScreenModule.java │ │ │ └── helper │ │ │ │ ├── ClientScreenModuleHelper.java │ │ │ │ ├── ScreenLevelHelper.java │ │ │ │ └── ScreenModuleGuiBuilder.java │ │ └── network │ │ │ ├── PacketGetScreenData.java │ │ │ ├── PacketModuleUpdate.java │ │ │ ├── PacketReturnRfInRange.java │ │ │ └── PacketReturnScreenData.java │ ├── spawner │ │ ├── SpawnerConfiguration.java │ │ ├── SpawnerModule.java │ │ ├── blocks │ │ │ ├── MatterBeamerBlock.java │ │ │ ├── MatterBeamerTileEntity.java │ │ │ └── SpawnerTileEntity.java │ │ ├── client │ │ │ ├── GuiMatterBeamer.java │ │ │ ├── GuiSpawner.java │ │ │ └── MatterBeamerRenderer.java │ │ ├── items │ │ │ └── SyringeItem.java │ │ └── recipes │ │ │ ├── SpawnerRecipe.java │ │ │ ├── SpawnerRecipeBuilder.java │ │ │ ├── SpawnerRecipeSerializer.java │ │ │ ├── SpawnerRecipeType.java │ │ │ └── SpawnerRecipes.java │ ├── tank │ │ ├── TankConfiguration.java │ │ ├── TankModule.java │ │ ├── blocks │ │ │ └── TankTE.java │ │ └── client │ │ │ ├── GuiTank.java │ │ │ ├── TankBakedModel.java │ │ │ └── TankModelLoader.java │ └── teleporter │ │ ├── ClientCommandHandler.java │ │ ├── PorterTools.java │ │ ├── TeleportConfiguration.java │ │ ├── TeleportationTools.java │ │ ├── TeleporterModule.java │ │ ├── blocks │ │ ├── DestinationAnalyzerBlock.java │ │ ├── DialingDeviceBlock.java │ │ ├── DialingDeviceTileEntity.java │ │ ├── MatterBoosterBlock.java │ │ ├── MatterReceiverBlock.java │ │ ├── MatterReceiverTileEntity.java │ │ ├── MatterTransmitterBlock.java │ │ ├── MatterTransmitterTileEntity.java │ │ ├── SimpleDialerBlock.java │ │ ├── SimpleDialerItemBlock.java │ │ └── SimpleDialerTileEntity.java │ │ ├── client │ │ ├── BeamRenderer.java │ │ ├── GuiAdvancedPorter.java │ │ ├── GuiDialingDevice.java │ │ ├── GuiMatterReceiver.java │ │ ├── GuiMatterTransmitter.java │ │ └── GuiTeleportProbe.java │ │ ├── commands │ │ ├── CmdCleanupReceivers.java │ │ └── CmdListReceivers.java │ │ ├── data │ │ ├── TeleportDestination.java │ │ ├── TeleportDestinationClientInfo.java │ │ ├── TeleportDestinations.java │ │ └── TransmitterInfo.java │ │ ├── items │ │ ├── porter │ │ │ ├── AdvancedChargedPorterItem.java │ │ │ └── ChargedPorterItem.java │ │ └── teleportprobe │ │ │ └── TeleportProbeItem.java │ │ └── network │ │ ├── PacketAllReceiversReady.java │ │ ├── PacketGetAllReceivers.java │ │ └── PacketTargetsReady.java │ ├── playerprops │ ├── BuffProperties.java │ ├── FavoriteDestinationsProperties.java │ ├── PacketSendBuffsToClient.java │ ├── PlayerBuff.java │ ├── PlayerExtendedProperties.java │ ├── PropertiesDispatcher.java │ └── SendBuffsToClientHelper.java │ └── setup │ ├── ClientSetup.java │ ├── CommandHandler.java │ ├── Config.java │ ├── ForgeEventHandlers.java │ ├── ModSetup.java │ ├── ModSounds.java │ ├── RFToolsUtilityMessages.java │ └── Registration.java └── resources ├── META-INF ├── accesstransformer.cfg └── mods.toml ├── assets └── rftoolsutility │ ├── blockstates │ └── tank.json │ ├── font │ ├── ubuntu.json │ └── ubuntu.ttf │ ├── gui │ ├── analog.gui │ ├── counter.gui │ ├── crafter.gui │ ├── environmental.gui │ ├── invchecker.gui │ ├── redstone_receiver.gui │ ├── redstone_transmitter.gui │ ├── sensor.gui │ ├── sequencer.gui │ ├── tank.gui │ ├── threelogic.gui │ └── timer.gui │ ├── lang │ └── en_us.json │ ├── models │ ├── block │ │ └── tank.json │ └── item │ │ ├── advanced_charged_porter.json │ │ ├── advanced_charged_porter0.json │ │ ├── advanced_charged_porter1.json │ │ ├── advanced_charged_porter2.json │ │ ├── advanced_charged_porter3.json │ │ ├── advanced_charged_porter4.json │ │ ├── advanced_charged_porter5.json │ │ ├── advanced_charged_porter6.json │ │ ├── advanced_charged_porter7.json │ │ ├── advanced_charged_porter8.json │ │ ├── button_module.json │ │ ├── charged_porter.json │ │ ├── charged_porter0.json │ │ ├── charged_porter1.json │ │ ├── charged_porter2.json │ │ ├── charged_porter3.json │ │ ├── charged_porter4.json │ │ ├── charged_porter5.json │ │ ├── charged_porter6.json │ │ ├── charged_porter7.json │ │ ├── charged_porter8.json │ │ ├── clock_module.json │ │ ├── computer_module.json │ │ ├── counter_module.json │ │ ├── counterplus_module.json │ │ ├── elevator_button_module.json │ │ ├── energy_module.json │ │ ├── energyplus_module.json │ │ ├── fluid_module.json │ │ ├── fluidplus_module.json │ │ ├── inventory_module.json │ │ ├── inventoryplus_module.json │ │ ├── machineinformation_module.json │ │ ├── redstone_information.json │ │ ├── redstone_module.json │ │ ├── screen_link.json │ │ ├── storage_control_module.json │ │ ├── syringe.json │ │ ├── syringe0.json │ │ ├── syringe1.json │ │ ├── syringe2.json │ │ ├── syringe3.json │ │ ├── syringe4.json │ │ ├── syringe5.json │ │ ├── tablet_redstone.json │ │ ├── tablet_screen.json │ │ ├── teleport_probe.json │ │ └── text_module.json │ ├── sounds.json │ ├── sounds │ ├── elevator_loop.ogg │ ├── elevator_start.ogg │ ├── elevator_stop.ogg │ ├── scan.ogg │ ├── teleport_error.ogg │ └── teleport_whoosh.ogg │ └── textures │ ├── block │ ├── creative_screenframe_icon.png │ ├── logic │ │ ├── machineanalogtop.png │ │ ├── machinecountertop.png │ │ ├── machineinvchecker.png │ │ ├── machinelogictop.png │ │ ├── machineoutput.png │ │ ├── machineoutput_0.png │ │ ├── machineoutput_0.png.mcmeta │ │ ├── machineoutput_1.png │ │ ├── machineoutput_1.png.mcmeta │ │ ├── machineoutput_2.png │ │ ├── machineoutput_2.png.mcmeta │ │ ├── machineoutput_3.png │ │ ├── machineoutput_3.png.mcmeta │ │ ├── machineoutput_4.png │ │ ├── machineoutput_4.png.mcmeta │ │ ├── machineoutput_5.png │ │ ├── machineoutput_5.png.mcmeta │ │ ├── machineoutput_6.png │ │ ├── machineoutput_6.png.mcmeta │ │ ├── machineoutput_7.png │ │ ├── machineoutput_7.png.mcmeta │ │ ├── machineoutput_8.png │ │ ├── machineoutput_8.png.mcmeta │ │ ├── machineoutput_9.png │ │ ├── machineoutput_9.png.mcmeta │ │ ├── machineoutput_a.png │ │ ├── machineoutput_a.png.mcmeta │ │ ├── machineoutput_b.png │ │ ├── machineoutput_b.png.mcmeta │ │ ├── machineoutput_c.png │ │ ├── machineoutput_c.png.mcmeta │ │ ├── machineoutput_d.png │ │ ├── machineoutput_d.png.mcmeta │ │ ├── machineoutput_e.png │ │ ├── machineoutput_e.png.mcmeta │ │ ├── machineoutput_f.png │ │ ├── machineoutput_f.png.mcmeta │ │ ├── machineredstonereceiver.png │ │ ├── machineredstonetransmitter.png │ │ ├── machinesensor.png │ │ ├── machinesequencertop.png │ │ ├── machinetimertop.png │ │ └── machinewiretop.png │ ├── machinebeamer.png │ ├── machinebeameroff.png │ ├── machinecrafter1.png │ ├── machinecrafter2.png │ ├── machinecrafter3.png │ ├── machinedestinationanalyzer.png │ ├── machinedialingdevice.png │ ├── machineenvironmentalcontroller.png │ ├── machinematterbooster.png │ ├── machinereceiver.png │ ├── machinereceiver.png.mcmeta │ ├── machinescreencontroller.png │ ├── machinesimpledialer.png │ ├── machinespawner.png │ ├── machinespawner.png.mcmeta │ ├── machineteleporter.png │ ├── machineteleporter.png.mcmeta │ ├── machineteleporterunknown.png │ ├── machineteleporterunknown.png.mcmeta │ ├── machineteleporterwarn.png │ ├── machineteleporterwarn.png.mcmeta │ ├── machinetransmitter.png │ ├── machinetransmitter.png.mcmeta │ ├── screenframe_icon.png │ ├── tank0.png │ ├── tank1.png │ ├── tank2.png │ ├── tank3.png │ ├── tank4.png │ ├── tank5.png │ ├── tank6.png │ ├── tank7.png │ └── tank8.png │ ├── effects │ ├── blueglow.png │ ├── floatingsphere.png │ ├── redglow.png │ └── yellowglow.png │ ├── gui │ ├── analog.png │ ├── crafter.png │ ├── environmentalcontroller.png │ ├── invchecker.png │ ├── matterbeamer.png │ ├── redstone_information.png │ ├── screen.png │ ├── screencontroller.png │ ├── sensor.png │ ├── spawner.png │ ├── tank.png │ └── threelogic.png │ ├── item │ ├── advchargedporteriteml0.png │ ├── advchargedporteriteml1.png │ ├── advchargedporteriteml2.png │ ├── advchargedporteriteml3.png │ ├── advchargedporteriteml4.png │ ├── advchargedporteriteml5.png │ ├── advchargedporteriteml6.png │ ├── advchargedporteriteml7.png │ ├── advchargedporteriteml8.png │ ├── chargedporteriteml0.png │ ├── chargedporteriteml1.png │ ├── chargedporteriteml2.png │ ├── chargedporteriteml3.png │ ├── chargedporteriteml4.png │ ├── chargedporteriteml5.png │ ├── chargedporteriteml6.png │ ├── chargedporteriteml7.png │ ├── chargedporteriteml8.png │ ├── envmodules │ │ ├── blindnessmoduleitem.png │ │ ├── featherfallingmoduleitem.png │ │ ├── featherfallingplusmoduleitem.png │ │ ├── flightmoduleitem.png │ │ ├── glowingmoduleitem.png │ │ ├── hastemoduleitem.png │ │ ├── hasteplusmoduleitem.png │ │ ├── luckmoduleitem.png │ │ ├── moduletemplate.png │ │ ├── moduletemplateplus.png │ │ ├── nightvisionmoduleitem.png │ │ ├── noteleportmoduleitem.png │ │ ├── peacefulmoduleitem.png │ │ ├── poisonmoduleitem.png │ │ ├── regenerationmoduleitem.png │ │ ├── regenerationplusmoduleitem.png │ │ ├── saturationmoduleitem.png │ │ ├── saturationplusmoduleitem.png │ │ ├── slownessmoduleitem.png │ │ ├── speedmoduleitem.png │ │ ├── speedplusmoduleitem.png │ │ ├── waterbreathingmoduleitem.png │ │ └── weaknessmoduleitem.png │ ├── modules │ │ ├── buttonmoduleitem.png │ │ ├── clockmoduleitem.png │ │ ├── computermoduleitem.png │ │ ├── countermoduleitem.png │ │ ├── counterplusmoduleitem.png │ │ ├── elevatorbuttonmoduleitem.png │ │ ├── energymoduleitem.png │ │ ├── energyplusmoduleitem.png │ │ ├── fluidmoduleitem.png │ │ ├── fluidplusmoduleitem.png │ │ ├── inventorymoduleitem.png │ │ ├── inventoryplusmoduleitem.png │ │ ├── machineinformationmoduleitem.png │ │ ├── redstonemoduleitem.png │ │ └── textmoduleitem.png │ ├── redstone_information.png │ ├── screen_link.png │ ├── syringeitem0.png │ ├── syringeitem1.png │ ├── syringeitem2.png │ ├── syringeitem3.png │ ├── syringeitem4.png │ ├── syringeitem5.png │ ├── tablet_redstone.png │ ├── tablet_screen.png │ └── teleportprobeitem.png │ └── manual │ └── env_controller_gui.png ├── data └── rftoolsutility │ ├── patchouli_books │ └── manual │ │ ├── book.json │ │ └── en_us │ │ ├── categories │ │ ├── category_rftoolsutility.json │ │ ├── category_rftoolsutility_logic.json │ │ └── category_rftoolsutility_machines.json │ │ ├── entries │ │ ├── logic │ │ │ ├── analog.json │ │ │ ├── counter.json │ │ │ ├── digit.json │ │ │ ├── invchecker.json │ │ │ ├── logic.json │ │ │ ├── redstone_information.json │ │ │ ├── redstone_receiver.json │ │ │ ├── redstone_transmitter.json │ │ │ ├── sensor.json │ │ │ ├── sequencer.json │ │ │ ├── timer.json │ │ │ └── wire.json │ │ └── machines │ │ │ ├── crafter.json │ │ │ ├── dialing_device.json │ │ │ ├── environmental.json │ │ │ ├── matter_receiver.json │ │ │ ├── matter_transmitter.json │ │ │ ├── screen.json │ │ │ ├── screen_controller.json │ │ │ ├── screen_link.json │ │ │ └── tank.json │ │ └── templates │ │ └── placeholder.txt │ └── tags │ └── items │ └── living │ ├── averageyield.json │ ├── highyield.json │ ├── living.json │ └── lowyield.json └── pack.mcmeta /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | build* -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # RFToolsUtility 2 | Everything from RFTools that doesn't fit in its own mod 3 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | modname=RFToolsUtility 2 | version=1.16-3.1.16 3 | curse_type=release 4 | projectId=342466 5 | github_project=McJtyMods/RFToolsPower 6 | 7 | minecraft_version=1.16.5 8 | forge_version=36.2.19 9 | 10 | jei_version=1.16.4:7.6.1.65 11 | patchouli_version=1.16.4-53.2 12 | rftoolsbase_version=1.16-2.1.4-21 13 | waila_version=1.8.23-B38_1.12 14 | top_version=1.16:1.16-3.0.8-16 15 | mcjtylib_version=1.16-5.1.7.35 16 | redstoneflux_version=1.12-2.0.0.1:universal 17 | tesla_version=1.12.2:1.0.63 18 | intwheel_version=1.12-1.2.7 19 | oc_version=MC1.12.1-1.7.+:api 20 | 21 | org.gradle.jvmargs=-Xmx5G 22 | org.gradle.daemon=false 23 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Jan 06 19:01:39 CET 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip 7 | -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/blockstates/environmental_controller.json: -------------------------------------------------------------------------------- 1 | { 2 | "multipart": [ 3 | { 4 | "apply": { 5 | "model": "rftoolsutility:block/environmental_controller" 6 | } 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/blockstates/matter_beamer.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "lit=false": { 4 | "model": "rftoolsutility:block/matter_beamer_off" 5 | }, 6 | "lit=true": { 7 | "model": "rftoolsutility:block/matter_beamer_on" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/blockstates/matter_receiver.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "rftoolsutility:block/matter_receiver" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/blockstates/matter_transmitter.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "rftoolsutility:block/matter_transmitter" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/block/crafter1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube", 3 | "textures": { 4 | "down": "rftoolsbase:block/base/machinebottom", 5 | "up": "rftoolsbase:block/base/machinetop", 6 | "north": "rftoolsutility:block/machinecrafter1", 7 | "south": "rftoolsbase:block/base/machineside", 8 | "east": "rftoolsbase:block/base/machineside", 9 | "west": "rftoolsbase:block/base/machineside", 10 | "particle": "rftoolsutility:block/machinecrafter1" 11 | } 12 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/block/crafter2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube", 3 | "textures": { 4 | "down": "rftoolsbase:block/base/machinebottom", 5 | "up": "rftoolsbase:block/base/machinetop", 6 | "north": "rftoolsutility:block/machinecrafter2", 7 | "south": "rftoolsbase:block/base/machineside", 8 | "east": "rftoolsbase:block/base/machineside", 9 | "west": "rftoolsbase:block/base/machineside", 10 | "particle": "rftoolsutility:block/machinecrafter2" 11 | } 12 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/block/crafter3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube", 3 | "textures": { 4 | "down": "rftoolsbase:block/base/machinebottom", 5 | "up": "rftoolsbase:block/base/machinetop", 6 | "north": "rftoolsutility:block/machinecrafter3", 7 | "south": "rftoolsbase:block/base/machineside", 8 | "east": "rftoolsbase:block/base/machineside", 9 | "west": "rftoolsbase:block/base/machineside", 10 | "particle": "rftoolsutility:block/machinecrafter3" 11 | } 12 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/block/destination_analyzer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube", 3 | "textures": { 4 | "down": "rftoolsbase:block/base/machinebottom", 5 | "up": "rftoolsbase:block/base/machinetop", 6 | "north": "rftoolsutility:block/machinedestinationanalyzer", 7 | "south": "rftoolsbase:block/base/machineside", 8 | "east": "rftoolsbase:block/base/machineside", 9 | "west": "rftoolsbase:block/base/machineside", 10 | "particle": "rftoolsutility:block/machinedestinationanalyzer" 11 | } 12 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/block/dialing_device.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube", 3 | "textures": { 4 | "down": "rftoolsbase:block/base/machinebottom", 5 | "up": "rftoolsbase:block/base/machinetop", 6 | "north": "rftoolsutility:block/machinedialingdevice", 7 | "south": "rftoolsbase:block/base/machineside", 8 | "east": "rftoolsbase:block/base/machineside", 9 | "west": "rftoolsbase:block/base/machineside", 10 | "particle": "rftoolsutility:block/machinedialingdevice" 11 | } 12 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/block/matter_beamer_off.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "rftoolsutility:block/machinebeameroff" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/block/matter_beamer_on.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "rftoolsutility:block/machinebeamer" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/block/matter_booster.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube", 3 | "textures": { 4 | "down": "rftoolsbase:block/base/machinebottom", 5 | "up": "rftoolsbase:block/base/machinetop", 6 | "north": "rftoolsutility:block/machinematterbooster", 7 | "south": "rftoolsbase:block/base/machineside", 8 | "east": "rftoolsbase:block/base/machineside", 9 | "west": "rftoolsbase:block/base/machineside", 10 | "particle": "rftoolsutility:block/machinematterbooster" 11 | } 12 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/block/matter_receiver.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube", 3 | "textures": { 4 | "down": "rftoolsbase:block/base/machinebottom", 5 | "up": "rftoolsutility:block/machinereceiver", 6 | "north": "rftoolsbase:block/base/machineside", 7 | "south": "rftoolsbase:block/base/machineside", 8 | "east": "rftoolsbase:block/base/machineside", 9 | "west": "rftoolsbase:block/base/machineside", 10 | "particle": "rftoolsutility:block/machinereceiver" 11 | } 12 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/block/matter_transmitter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube", 3 | "textures": { 4 | "down": "rftoolsbase:block/base/machinebottom", 5 | "up": "rftoolsutility:block/machinetransmitter", 6 | "north": "rftoolsbase:block/base/machineside", 7 | "south": "rftoolsbase:block/base/machineside", 8 | "east": "rftoolsbase:block/base/machineside", 9 | "west": "rftoolsbase:block/base/machineside", 10 | "particle": "rftoolsutility:block/machinetransmitter" 11 | } 12 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/block/screen_controller.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube", 3 | "textures": { 4 | "down": "rftoolsbase:block/base/machinebottom", 5 | "up": "rftoolsbase:block/base/machinetop", 6 | "north": "rftoolsutility:block/machinescreencontroller", 7 | "south": "rftoolsbase:block/base/machineside", 8 | "east": "rftoolsbase:block/base/machineside", 9 | "west": "rftoolsbase:block/base/machineside", 10 | "particle": "rftoolsutility:block/machinescreencontroller" 11 | } 12 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/block/spawner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube", 3 | "textures": { 4 | "down": "rftoolsbase:block/base/machinebottom", 5 | "up": "rftoolsbase:block/base/machinetop", 6 | "north": "rftoolsutility:block/machinespawner", 7 | "south": "rftoolsbase:block/base/machineside", 8 | "east": "rftoolsbase:block/base/machineside", 9 | "west": "rftoolsbase:block/base/machineside", 10 | "particle": "rftoolsutility:block/machinespawner" 11 | } 12 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/block/tank_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube", 3 | "textures": { 4 | "down": "rftoolsbase:block/base/machinebottom", 5 | "up": "rftoolsbase:block/base/machinetop", 6 | "north": "rftoolsutility:block/tank0", 7 | "south": "rftoolsbase:block/base/machineside", 8 | "east": "rftoolsbase:block/base/machineside", 9 | "west": "rftoolsbase:block/base/machineside", 10 | "particle": "rftoolsutility:block/tank0" 11 | } 12 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/analog.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "rftoolsutility:block/analog_0" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/blindness_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/envmodules/blindnessmoduleitem" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/counter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "rftoolsutility:block/counter_0" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/crafter1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "rftoolsutility:block/crafter1" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/crafter2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "rftoolsutility:block/crafter2" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/crafter3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "rftoolsutility:block/crafter3" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/creative_screen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "rftoolsutility:block/creative_screen" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/destination_analyzer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "rftoolsutility:block/destination_analyzer" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/dialing_device.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "rftoolsutility:block/dialing_device" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/digit.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "rftoolsutility:block/digit_0" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/environmental_controller.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "rftoolsutility:block/environmental_controller" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/featherfalling_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/envmodules/featherfallingmoduleitem" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/featherfallingplus_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/envmodules/featherfallingplusmoduleitem" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/flight_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/envmodules/flightmoduleitem" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/glowing_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/envmodules/glowingmoduleitem" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/haste_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/envmodules/hastemoduleitem" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/hasteplus_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/envmodules/hasteplusmoduleitem" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/invchecker.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "rftoolsutility:block/invchecker_0" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/logic.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "rftoolsutility:block/logic_0" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/luck_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/envmodules/luckmoduleitem" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/matter_beamer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "rftoolsutility:block/matter_beamer_on" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/matter_booster.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "rftoolsutility:block/matter_booster" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/matter_receiver.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "rftoolsutility:block/matter_receiver" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/matter_transmitter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "rftoolsutility:block/matter_transmitter" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/module_template.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/envmodules/moduletemplate" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/moduleplus_template.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/envmodules/moduletemplateplus" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/nightvision_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/envmodules/nightvisionmoduleitem" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/noteleport_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/envmodules/noteleportmoduleitem" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/peaceful_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/envmodules/peacefulmoduleitem" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/poison_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/envmodules/poisonmoduleitem" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/redstone_receiver.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "rftoolsutility:block/redstone_receiver_0" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/redstone_transmitter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "rftoolsutility:block/redstone_transmitter_0" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/regeneration_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/envmodules/regenerationmoduleitem" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/regenerationplus_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/envmodules/regenerationplusmoduleitem" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/saturation_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/envmodules/saturationmoduleitem" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/saturationplus_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/envmodules/saturationplusmoduleitem" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/screen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "rftoolsutility:block/screen" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/screen_controller.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "rftoolsutility:block/screen_controller" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/sensor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "rftoolsutility:block/sensor_0" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/sequencer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "rftoolsutility:block/sequencer_0" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/simple_dialer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "rftoolsutility:block/simple_dialer_0" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/slowness_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/envmodules/slownessmoduleitem" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/spawner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "rftoolsutility:block/spawner" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/speed_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/envmodules/speedmoduleitem" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/speedplus_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/envmodules/speedplusmoduleitem" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/tank.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "rftoolsutility:block/tank_inventory" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/timer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "rftoolsutility:block/timer_0" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/waterbreathing_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/envmodules/waterbreathingmoduleitem" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/weakness_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/envmodules/weaknessmoduleitem" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/rftoolsutility/models/item/wire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "rftoolsutility:block/wire_0" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/loot_tables/blocks/digit.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "digit", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "rftoolsutility:digit" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/loot_tables/blocks/wire.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "wire", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "rftoolsutility:wire" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/advanced_charged_porter.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "mcjtylib:copy_nbt", 3 | "pattern": [ 4 | "RdR", 5 | "dMd", 6 | "RdR" 7 | ], 8 | "key": { 9 | "M": { 10 | "item": "rftoolsutility:charged_porter" 11 | }, 12 | "R": { 13 | "item": "minecraft:redstone_block" 14 | }, 15 | "d": { 16 | "item": "minecraft:diamond" 17 | } 18 | }, 19 | "result": { 20 | "item": "rftoolsutility:advanced_charged_porter" 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/analog.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "rAC" 5 | ], 6 | "key": { 7 | "C": { 8 | "item": "minecraft:comparator" 9 | }, 10 | "A": { 11 | "item": "rftoolsbase:machine_base" 12 | }, 13 | "r": { 14 | "item": "minecraft:redstone" 15 | } 16 | }, 17 | "result": { 18 | "item": "rftoolsutility:analog" 19 | } 20 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/blindness_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:syringe", 3 | "pattern": [ 4 | "ZSZ", 5 | "ZPZ", 6 | "ZZZ" 7 | ], 8 | "key": { 9 | "P": { 10 | "item": "rftoolsutility:moduleplus_template" 11 | }, 12 | "S": { 13 | "item": "rftoolsutility:syringe" 14 | }, 15 | "Z": { 16 | "tag": "forge:dyes/black" 17 | } 18 | }, 19 | "mob": "minecraft:squid", 20 | "syringe": 1, 21 | "result": { 22 | "item": "rftoolsutility:blindness_module" 23 | } 24 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/button_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | " X ", 5 | "rir", 6 | " Z " 7 | ], 8 | "key": { 9 | "X": { 10 | "item": "minecraft:stone_button" 11 | }, 12 | "r": { 13 | "item": "minecraft:redstone" 14 | }, 15 | "i": { 16 | "tag": "forge:ingots/iron" 17 | }, 18 | "Z": { 19 | "tag": "forge:dyes/black" 20 | } 21 | }, 22 | "result": { 23 | "item": "rftoolsutility:button_module" 24 | } 25 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/charged_porter.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | " o ", 5 | "oRo", 6 | "ioi" 7 | ], 8 | "key": { 9 | "R": { 10 | "item": "minecraft:redstone_block" 11 | }, 12 | "i": { 13 | "tag": "forge:ingots/iron" 14 | }, 15 | "o": { 16 | "tag": "forge:ender_pearls" 17 | } 18 | }, 19 | "result": { 20 | "item": "rftoolsutility:charged_porter" 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/clock_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | " X ", 5 | "rir", 6 | " Z " 7 | ], 8 | "key": { 9 | "X": { 10 | "item": "minecraft:clock" 11 | }, 12 | "r": { 13 | "item": "minecraft:redstone" 14 | }, 15 | "i": { 16 | "tag": "forge:ingots/iron" 17 | }, 18 | "Z": { 19 | "tag": "forge:dyes/black" 20 | } 21 | }, 22 | "result": { 23 | "item": "rftoolsutility:clock_module" 24 | } 25 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/counter.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "gCg", 5 | "TAT", 6 | "rTr" 7 | ], 8 | "key": { 9 | "C": { 10 | "item": "minecraft:clock" 11 | }, 12 | "g": { 13 | "item": "minecraft:gold_nugget" 14 | }, 15 | "A": { 16 | "item": "rftoolsbase:machine_base" 17 | }, 18 | "r": { 19 | "item": "minecraft:redstone" 20 | }, 21 | "T": { 22 | "item": "minecraft:redstone_torch" 23 | } 24 | }, 25 | "result": { 26 | "item": "rftoolsutility:counter" 27 | } 28 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/crafter1.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | " T ", 5 | "CFC", 6 | " T " 7 | ], 8 | "key": { 9 | "C": { 10 | "item": "minecraft:crafting_table" 11 | }, 12 | "T": { 13 | "item": "minecraft:redstone_torch" 14 | }, 15 | "F": { 16 | "item": "rftoolsbase:machine_frame" 17 | } 18 | }, 19 | "result": { 20 | "item": "rftoolsutility:crafter1" 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/crafter2.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "mcjtylib:copy_nbt", 3 | "pattern": [ 4 | " T ", 5 | "CMC", 6 | " T " 7 | ], 8 | "key": { 9 | "C": { 10 | "item": "minecraft:crafting_table" 11 | }, 12 | "M": { 13 | "item": "rftoolsutility:crafter1" 14 | }, 15 | "T": { 16 | "item": "minecraft:redstone_torch" 17 | } 18 | }, 19 | "result": { 20 | "item": "rftoolsutility:crafter2" 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/crafter3.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "mcjtylib:copy_nbt", 3 | "pattern": [ 4 | " T ", 5 | "CMC", 6 | " T " 7 | ], 8 | "key": { 9 | "C": { 10 | "item": "minecraft:crafting_table" 11 | }, 12 | "M": { 13 | "item": "rftoolsutility:crafter2" 14 | }, 15 | "T": { 16 | "item": "minecraft:redstone_torch" 17 | } 18 | }, 19 | "result": { 20 | "item": "rftoolsutility:crafter3" 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/destination_analyzer.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "ror", 5 | "CFf", 6 | "qrq" 7 | ], 8 | "key": { 9 | "q": { 10 | "item": "minecraft:quartz" 11 | }, 12 | "C": { 13 | "item": "minecraft:comparator" 14 | }, 15 | "f": { 16 | "item": "minecraft:repeater" 17 | }, 18 | "r": { 19 | "item": "minecraft:redstone" 20 | }, 21 | "F": { 22 | "item": "rftoolsbase:machine_frame" 23 | }, 24 | "o": { 25 | "tag": "forge:ender_pearls" 26 | } 27 | }, 28 | "result": { 29 | "item": "rftoolsutility:destination_analyzer" 30 | } 31 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/dialing_device.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "rrr", 5 | "TFT", 6 | "rrr" 7 | ], 8 | "key": { 9 | "r": { 10 | "item": "minecraft:redstone" 11 | }, 12 | "T": { 13 | "item": "minecraft:redstone_torch" 14 | }, 15 | "F": { 16 | "item": "rftoolsbase:machine_frame" 17 | } 18 | }, 19 | "result": { 20 | "item": "rftoolsutility:dialing_device" 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/digit.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "PPP", 5 | "rAr", 6 | "PPP" 7 | ], 8 | "key": { 9 | "P": { 10 | "tag": "forge:glass_panes" 11 | }, 12 | "A": { 13 | "item": "rftoolsbase:machine_base" 14 | }, 15 | "r": { 16 | "item": "minecraft:redstone" 17 | } 18 | }, 19 | "result": { 20 | "item": "rftoolsutility:digit" 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/energy_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | " r ", 5 | "rir", 6 | " Z " 7 | ], 8 | "key": { 9 | "r": { 10 | "item": "minecraft:redstone" 11 | }, 12 | "i": { 13 | "tag": "forge:ingots/iron" 14 | }, 15 | "Z": { 16 | "tag": "forge:dyes/black" 17 | } 18 | }, 19 | "result": { 20 | "item": "rftoolsutility:energy_module" 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/energyplus_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | " o ", 5 | "zMz", 6 | " o " 7 | ], 8 | "key": { 9 | "z": { 10 | "tag": "forge:ingots/gold" 11 | }, 12 | "M": { 13 | "item": "rftoolsutility:energy_module" 14 | }, 15 | "o": { 16 | "tag": "forge:ender_pearls" 17 | } 18 | }, 19 | "result": { 20 | "item": "rftoolsutility:energyplus_module" 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/featherfalling_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:syringe", 3 | "pattern": [ 4 | "fSf", 5 | "fPf", 6 | "fff" 7 | ], 8 | "key": { 9 | "P": { 10 | "item": "rftoolsutility:module_template" 11 | }, 12 | "f": { 13 | "item": "minecraft:feather" 14 | }, 15 | "S": { 16 | "item": "rftoolsutility:syringe" 17 | } 18 | }, 19 | "mob": "minecraft:chicken", 20 | "syringe": 1, 21 | "result": { 22 | "item": "rftoolsutility:featherfalling_module" 23 | } 24 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/featherfallingplus_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "fXf", 5 | "EPE", 6 | "fEf" 7 | ], 8 | "key": { 9 | "P": { 10 | "item": "rftoolsutility:moduleplus_template" 11 | }, 12 | "X": { 13 | "item": "rftoolsutility:featherfalling_module" 14 | }, 15 | "f": { 16 | "item": "minecraft:feather" 17 | }, 18 | "E": { 19 | "item": "rftoolsbase:infused_diamond" 20 | } 21 | }, 22 | "result": { 23 | "item": "rftoolsutility:featherfallingplus_module" 24 | } 25 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/flight_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:syringe", 3 | "pattern": [ 4 | "fSf", 5 | "fPf", 6 | "fEf" 7 | ], 8 | "key": { 9 | "P": { 10 | "item": "rftoolsutility:moduleplus_template" 11 | }, 12 | "f": { 13 | "item": "minecraft:ghast_tear" 14 | }, 15 | "E": { 16 | "item": "rftoolsbase:infused_enderpearl" 17 | }, 18 | "S": { 19 | "item": "rftoolsutility:syringe" 20 | } 21 | }, 22 | "mob": "minecraft:ghast", 23 | "syringe": 1, 24 | "result": { 25 | "item": "rftoolsutility:flight_module" 26 | } 27 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/fluid_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | " X ", 5 | "rir", 6 | " Z " 7 | ], 8 | "key": { 9 | "X": { 10 | "item": "minecraft:bucket" 11 | }, 12 | "r": { 13 | "item": "minecraft:redstone" 14 | }, 15 | "i": { 16 | "tag": "forge:ingots/iron" 17 | }, 18 | "Z": { 19 | "tag": "forge:dyes/black" 20 | } 21 | }, 22 | "result": { 23 | "item": "rftoolsutility:fluid_module" 24 | } 25 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/fluidplus_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | " o ", 5 | "zMz", 6 | " o " 7 | ], 8 | "key": { 9 | "z": { 10 | "tag": "forge:ingots/gold" 11 | }, 12 | "M": { 13 | "item": "rftoolsutility:fluid_module" 14 | }, 15 | "o": { 16 | "tag": "forge:ender_pearls" 17 | } 18 | }, 19 | "result": { 20 | "item": "rftoolsutility:fluidplus_module" 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/glowing_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:syringe", 3 | "pattern": [ 4 | "fSf", 5 | "fPf", 6 | "fff" 7 | ], 8 | "key": { 9 | "P": { 10 | "item": "rftoolsutility:module_template" 11 | }, 12 | "f": { 13 | "item": "minecraft:glowstone" 14 | }, 15 | "S": { 16 | "item": "rftoolsutility:syringe" 17 | } 18 | }, 19 | "mob": "minecraft:creeper", 20 | "syringe": 1, 21 | "result": { 22 | "item": "rftoolsutility:glowing_module" 23 | } 24 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/haste_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:syringe", 3 | "pattern": [ 4 | "fSf", 5 | "fPf", 6 | "fff" 7 | ], 8 | "key": { 9 | "P": { 10 | "item": "rftoolsutility:module_template" 11 | }, 12 | "f": { 13 | "item": "minecraft:redstone" 14 | }, 15 | "S": { 16 | "item": "rftoolsutility:syringe" 17 | } 18 | }, 19 | "mob": "minecraft:pillager", 20 | "syringe": 1, 21 | "result": { 22 | "item": "rftoolsutility:haste_module" 23 | } 24 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/hasteplus_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "fXf", 5 | "EPE", 6 | "fEf" 7 | ], 8 | "key": { 9 | "P": { 10 | "item": "rftoolsutility:moduleplus_template" 11 | }, 12 | "X": { 13 | "item": "rftoolsutility:haste_module" 14 | }, 15 | "f": { 16 | "item": "minecraft:redstone" 17 | }, 18 | "E": { 19 | "item": "rftoolsbase:infused_diamond" 20 | } 21 | }, 22 | "result": { 23 | "item": "rftoolsutility:hasteplus_module" 24 | } 25 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/invchecker.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | " P ", 5 | "rAr", 6 | " C " 7 | ], 8 | "key": { 9 | "P": { 10 | "item": "minecraft:comparator" 11 | }, 12 | "C": { 13 | "tag": "forge:chests" 14 | }, 15 | "A": { 16 | "item": "rftoolsbase:machine_base" 17 | }, 18 | "r": { 19 | "item": "minecraft:redstone" 20 | } 21 | }, 22 | "result": { 23 | "item": "rftoolsutility:invchecker" 24 | } 25 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/inventory_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | " X ", 5 | "rir", 6 | " Z " 7 | ], 8 | "key": { 9 | "X": { 10 | "tag": "forge:chests" 11 | }, 12 | "r": { 13 | "item": "minecraft:redstone" 14 | }, 15 | "i": { 16 | "tag": "forge:ingots/iron" 17 | }, 18 | "Z": { 19 | "tag": "forge:dyes/black" 20 | } 21 | }, 22 | "result": { 23 | "item": "rftoolsutility:inventory_module" 24 | } 25 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/inventoryplus_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | " o ", 5 | "zMz", 6 | " o " 7 | ], 8 | "key": { 9 | "z": { 10 | "tag": "forge:ingots/gold" 11 | }, 12 | "M": { 13 | "item": "rftoolsutility:inventory_module" 14 | }, 15 | "o": { 16 | "tag": "forge:ender_pearls" 17 | } 18 | }, 19 | "result": { 20 | "item": "rftoolsutility:inventoryplus_module" 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/logic.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "rCr", 5 | "CAC", 6 | "rCr" 7 | ], 8 | "key": { 9 | "C": { 10 | "item": "minecraft:comparator" 11 | }, 12 | "A": { 13 | "item": "rftoolsbase:machine_base" 14 | }, 15 | "r": { 16 | "item": "minecraft:redstone" 17 | } 18 | }, 19 | "result": { 20 | "item": "rftoolsutility:logic" 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/luck_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:syringe", 3 | "pattern": [ 4 | "fSf", 5 | "fPf", 6 | "fff" 7 | ], 8 | "key": { 9 | "P": { 10 | "item": "rftoolsutility:module_template" 11 | }, 12 | "f": { 13 | "item": "minecraft:quartz" 14 | }, 15 | "S": { 16 | "item": "rftoolsutility:syringe" 17 | } 18 | }, 19 | "mob": "minecraft:cat", 20 | "syringe": 1, 21 | "result": { 22 | "item": "rftoolsutility:luck_module" 23 | } 24 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/machineinformation_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | " X ", 5 | "rir", 6 | " Z " 7 | ], 8 | "key": { 9 | "X": { 10 | "item": "minecraft:furnace" 11 | }, 12 | "r": { 13 | "item": "minecraft:redstone" 14 | }, 15 | "i": { 16 | "tag": "forge:ingots/iron" 17 | }, 18 | "Z": { 19 | "tag": "forge:dyes/black" 20 | } 21 | }, 22 | "result": { 23 | "item": "rftoolsutility:machineinformation_module" 24 | } 25 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/matter_beamer.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "RzR", 5 | "zFz", 6 | "RzR" 7 | ], 8 | "key": { 9 | "z": { 10 | "item": "minecraft:glowstone" 11 | }, 12 | "R": { 13 | "item": "minecraft:redstone_block" 14 | }, 15 | "F": { 16 | "item": "rftoolsbase:machine_frame" 17 | } 18 | }, 19 | "result": { 20 | "item": "rftoolsutility:matter_beamer" 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/matter_booster.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | " R ", 5 | "RFR", 6 | " R " 7 | ], 8 | "key": { 9 | "R": { 10 | "item": "minecraft:redstone_block" 11 | }, 12 | "F": { 13 | "item": "rftoolsbase:machine_frame" 14 | } 15 | }, 16 | "result": { 17 | "item": "rftoolsutility:matter_booster" 18 | } 19 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/matter_receiver.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "iii", 5 | "rFr", 6 | "ooo" 7 | ], 8 | "key": { 9 | "r": { 10 | "item": "minecraft:redstone" 11 | }, 12 | "F": { 13 | "item": "rftoolsbase:machine_frame" 14 | }, 15 | "i": { 16 | "tag": "forge:ingots/iron" 17 | }, 18 | "o": { 19 | "tag": "forge:ender_pearls" 20 | } 21 | }, 22 | "result": { 23 | "item": "rftoolsutility:matter_receiver" 24 | } 25 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/matter_transmitter.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "ooo", 5 | "rFr", 6 | "iii" 7 | ], 8 | "key": { 9 | "r": { 10 | "item": "minecraft:redstone" 11 | }, 12 | "F": { 13 | "item": "rftoolsbase:machine_frame" 14 | }, 15 | "i": { 16 | "tag": "forge:ingots/iron" 17 | }, 18 | "o": { 19 | "tag": "forge:ender_pearls" 20 | } 21 | }, 22 | "result": { 23 | "item": "rftoolsutility:matter_transmitter" 24 | } 25 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_bat.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_bat", 4 | "power": 100, 5 | "entity": "minecraft:bat", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:feathers" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 10.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_bee.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_bee", 4 | "power": 1000, 5 | "entity": "minecraft:bee", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "item": "minecraft:honey_block" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.5, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 30.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_blaze.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_blaze", 4 | "power": 1000, 5 | "entity": "minecraft:blaze", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:rods/blaze" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.5, 14 | "ingredient": { 15 | "item": "minecraft:netherrack" 16 | } 17 | }, 18 | "item3": { 19 | "amount": 30.0, 20 | "living": true 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_cat.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_cat", 4 | "power": 800, 5 | "entity": "minecraft:cat", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "minecraft:fishes" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 1.0, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 20.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_cave_spider.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_cave_spider", 4 | "power": 500, 5 | "entity": "minecraft:cave_spider", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:string" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 10.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_chicken.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_chicken", 4 | "power": 500, 5 | "entity": "minecraft:chicken", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:feathers" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 15.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_cod.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_cod", 4 | "power": 1000, 5 | "entity": "minecraft:cod", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "minecraft:fishes" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 20.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_cow.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_cow", 4 | "power": 800, 5 | "entity": "minecraft:cow", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:leather" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 20.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_creeper.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_creeper", 4 | "power": 800, 5 | "entity": "minecraft:creeper", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:gunpowder" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.5, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 20.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_dolphin.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_dolphin", 4 | "power": 1500, 5 | "entity": "minecraft:dolphin", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "minecraft:fishes" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 20.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_donkey.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_donkey", 4 | "power": 1000, 5 | "entity": "minecraft:donkey", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:leather" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.5, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 30.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_drowned.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_drowned", 4 | "power": 800, 5 | "entity": "minecraft:drowned", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "item": "minecraft:rotten_flesh" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 90.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_ender_dragon.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_ender_dragon", 4 | "power": 100000, 5 | "entity": "minecraft:ender_dragon", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "item": "minecraft:experience_bottle" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 100.0, 14 | "ingredient": { 15 | "item": "minecraft:end_stone" 16 | } 17 | }, 18 | "item3": { 19 | "amount": 200.0, 20 | "living": true 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_enderman.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_enderman", 4 | "power": 2000, 5 | "entity": "minecraft:enderman", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:ender_pearls" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.5, 14 | "ingredient": { 15 | "item": "minecraft:end_stone" 16 | } 17 | }, 18 | "item3": { 19 | "amount": 40.0, 20 | "living": true 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_endermite.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_endermite", 4 | "power": 400, 5 | "entity": "minecraft:endermite", 6 | "item1": { 7 | "amount": 0.05, 8 | "ingredient": { 9 | "tag": "forge:ender_pearls" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": { 15 | "item": "minecraft:end_stone" 16 | } 17 | }, 18 | "item3": { 19 | "amount": 10.0, 20 | "living": true 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_evoker.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_evoker", 4 | "power": 2000, 5 | "entity": "minecraft:evoker", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:gems/emerald" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 20.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_fox.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_fox", 4 | "power": 800, 5 | "entity": "minecraft:fox", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:bones" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 1.0, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 20.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_ghast.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_ghast", 4 | "power": 2000, 5 | "entity": "minecraft:ghast", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "item": "minecraft:ghast_tear" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 1.0, 14 | "ingredient": { 15 | "item": "minecraft:netherrack" 16 | } 17 | }, 18 | "item3": { 19 | "amount": 50.0, 20 | "living": true 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_giant.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_giant", 4 | "power": 1500, 5 | "entity": "minecraft:giant", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "item": "minecraft:rotten_flesh" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 20.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_guardian.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_guardian", 4 | "power": 1000, 5 | "entity": "minecraft:guardian", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "item": "minecraft:prismarine_shard" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 30.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_hoglin.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_hoglin", 4 | "power": 1500, 5 | "entity": "minecraft:hoglin", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:leather" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": { 15 | "item": "minecraft:netherrack" 16 | } 17 | }, 18 | "item3": { 19 | "amount": 70.0, 20 | "living": true 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_horse.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_horse", 4 | "power": 1000, 5 | "entity": "minecraft:horse", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:leather" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.5, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 30.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_husk.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_husk", 4 | "power": 800, 5 | "entity": "minecraft:husk", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "item": "minecraft:rotten_flesh" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 20.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_illusioner.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_illusioner", 4 | "power": 2000, 5 | "entity": "minecraft:illusioner", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:gems/emerald" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 20.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_llama.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_llama", 4 | "power": 1000, 5 | "entity": "minecraft:llama", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:leather" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.5, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 30.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_magma_cube.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_magma_cube", 4 | "power": 600, 5 | "entity": "minecraft:magma_cube", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "item": "minecraft:magma_cream" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": { 15 | "item": "minecraft:netherrack" 16 | } 17 | }, 18 | "item3": { 19 | "amount": 10.0, 20 | "living": true 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_mooshroom.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_mooshroom", 4 | "power": 800, 5 | "entity": "minecraft:mooshroom", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:leather" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 1.0, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 20.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_mule.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_mule", 4 | "power": 1000, 5 | "entity": "minecraft:mule", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:leather" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.5, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 30.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_ocelot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_ocelot", 4 | "power": 800, 5 | "entity": "minecraft:ocelot", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "minecraft:fishes" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 1.0, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 20.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_panda.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_panda", 4 | "power": 1000, 5 | "entity": "minecraft:panda", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "item": "minecraft:bamboo" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.5, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 30.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_parrot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_parrot", 4 | "power": 800, 5 | "entity": "minecraft:parrot", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:feathers" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 15.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_phantom.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_phantom", 4 | "power": 1000, 5 | "entity": "minecraft:phantom", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "item": "minecraft:phantom_membrane" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 20.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_pig.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_pig", 4 | "power": 800, 5 | "entity": "minecraft:pig", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:leather" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 20.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_piglin.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_piglin", 4 | "power": 1200, 5 | "entity": "minecraft:piglin", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:nuggets/gold" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.5, 14 | "ingredient": { 15 | "item": "minecraft:netherrack" 16 | } 17 | }, 18 | "item3": { 19 | "amount": 20.0, 20 | "living": true 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_piglin_brute.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_piglin_brute", 4 | "power": 1400, 5 | "entity": "minecraft:piglin_brute", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:nuggets/gold" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.5, 14 | "ingredient": { 15 | "item": "minecraft:netherrack" 16 | } 17 | }, 18 | "item3": { 19 | "amount": 30.0, 20 | "living": true 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_pillager.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_pillager", 4 | "power": 1000, 5 | "entity": "minecraft:pillager", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:gems/emerald" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 20.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_polar_bear.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_polar_bear", 4 | "power": 1500, 5 | "entity": "minecraft:polar_bear", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "minecraft:fishes" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 20.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_pufferfish.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_pufferfish", 4 | "power": 1000, 5 | "entity": "minecraft:pufferfish", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "minecraft:fishes" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 20.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_rabbit.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_rabbit", 4 | "power": 300, 5 | "entity": "minecraft:rabbit", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "item": "minecraft:rabbit_stew" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 10.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_ravager.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_ravager", 4 | "power": 4000, 5 | "entity": "minecraft:ravager", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "item": "minecraft:saddle" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 60.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_salmon.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_salmon", 4 | "power": 1000, 5 | "entity": "minecraft:salmon", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "minecraft:fishes" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 20.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_sheep.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_sheep", 4 | "power": 800, 5 | "entity": "minecraft:sheep", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "minecraft:wool" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 20.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_shulker.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_shulker", 4 | "power": 600, 5 | "entity": "minecraft:shulker", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:ender_pearls" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": { 15 | "item": "minecraft:end_stone" 16 | } 17 | }, 18 | "item3": { 19 | "amount": 20.0, 20 | "living": true 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_silverfish.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_silverfish", 4 | "power": 400, 5 | "entity": "minecraft:silverfish", 6 | "item1": { 7 | "amount": 0.05, 8 | "ingredient": { 9 | "tag": "forge:ingots/iron" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 10.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_skeleton.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_skeleton", 4 | "power": 800, 5 | "entity": "minecraft:skeleton", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:bones" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.5, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 20.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_skeleton_horse.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_skeleton_horse", 4 | "power": 1000, 5 | "entity": "minecraft:skeleton_horse", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:bones" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.5, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 30.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_slime.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_slime", 4 | "power": 600, 5 | "entity": "minecraft:slime", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:slimeballs" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.5, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 15.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_snow_golem.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_snow_golem", 4 | "power": 600, 5 | "entity": "minecraft:snow_golem", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "item": "minecraft:snowball" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 1.0, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 15.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_spider.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_spider", 4 | "power": 500, 5 | "entity": "minecraft:spider", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "item": "minecraft:string" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 15.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_squid.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_squid", 4 | "power": 500, 5 | "entity": "minecraft:squid", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "item": "minecraft:ink_sac" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.5, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 10.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_stray.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_stray", 4 | "power": 800, 5 | "entity": "minecraft:stray", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:bones" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.5, 14 | "ingredient": { 15 | "item": "minecraft:netherrack" 16 | } 17 | }, 18 | "item3": { 19 | "amount": 20.0, 20 | "living": true 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_strider.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_strider", 4 | "power": 800, 5 | "entity": "minecraft:strider", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:nuggets/gold" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.5, 14 | "ingredient": { 15 | "item": "minecraft:netherrack" 16 | } 17 | }, 18 | "item3": { 19 | "amount": 20.0, 20 | "living": true 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_trader_llama.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_trader_llama", 4 | "power": 1200, 5 | "entity": "minecraft:trader_llama", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:leather" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.5, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 30.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_tropical_fish.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_tropical_fish", 4 | "power": 1000, 5 | "entity": "minecraft:tropical_fish", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "minecraft:fishes" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 20.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_turtle.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_turtle", 4 | "power": 1500, 5 | "entity": "minecraft:turtle", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "item": "minecraft:seagrass" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 20.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_vex.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_vex", 4 | "power": 1000, 5 | "entity": "minecraft:vex", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "item": "minecraft:iron_sword" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 20.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_villager.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_villager", 4 | "power": 2000, 5 | "entity": "minecraft:villager", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "item": "minecraft:book" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 5.0, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 30.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_vindicator.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_vindicator", 4 | "power": 1000, 5 | "entity": "minecraft:vindicator", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:gems/emerald" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 20.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_witch.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_witch", 4 | "power": 1200, 5 | "entity": "minecraft:witch", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "item": "minecraft:glass_bottle" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 1.0, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 30.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_wither.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_wither", 4 | "power": 20000, 5 | "entity": "minecraft:wither", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "item": "minecraft:nether_star" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.5, 14 | "ingredient": { 15 | "item": "minecraft:soul_sand" 16 | } 17 | }, 18 | "item3": { 19 | "amount": 100.0, 20 | "living": true 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_wither_skeleton.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_wither_skeleton", 4 | "power": 1500, 5 | "entity": "minecraft:wither_skeleton", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:bones" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.5, 14 | "ingredient": { 15 | "item": "minecraft:netherrack" 16 | } 17 | }, 18 | "item3": { 19 | "amount": 30.0, 20 | "living": true 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_wolf.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_wolf", 4 | "power": 800, 5 | "entity": "minecraft:wolf", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:bones" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.5, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 20.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_zoglin.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_zoglin", 4 | "power": 1500, 5 | "entity": "minecraft:zoglin", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:leather" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": { 15 | "item": "minecraft:netherrack" 16 | } 17 | }, 18 | "item3": { 19 | "amount": 70.0, 20 | "living": true 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_zombie.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_zombie", 4 | "power": 800, 5 | "entity": "minecraft:zombie", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "item": "minecraft:rotten_flesh" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.2, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 20.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_zombie_horse.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_zombie_horse", 4 | "power": 1000, 5 | "entity": "minecraft:zombie_horse", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "item": "minecraft:rotten_flesh" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.5, 14 | "ingredient": [ 15 | { 16 | "item": "minecraft:dirt" 17 | }, 18 | { 19 | "item": "minecraft:gravel" 20 | }, 21 | { 22 | "item": "minecraft:sand" 23 | } 24 | ] 25 | }, 26 | "item3": { 27 | "amount": 30.0, 28 | "living": true 29 | } 30 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/minecraft_zombified_piglin.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:spawner", 3 | "id": "rftoolsutility:minecraft_zombified_piglin", 4 | "power": 1200, 5 | "entity": "minecraft:zombified_piglin", 6 | "item1": { 7 | "amount": 0.1, 8 | "ingredient": { 9 | "tag": "forge:nuggets/gold" 10 | } 11 | }, 12 | "item2": { 13 | "amount": 0.5, 14 | "ingredient": { 15 | "item": "minecraft:netherrack" 16 | } 17 | }, 18 | "item3": { 19 | "amount": 20.0, 20 | "living": true 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/module_template.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "sis", 5 | "iXi", 6 | "sis" 7 | ], 8 | "key": { 9 | "X": { 10 | "item": "rftoolsbase:infused_diamond" 11 | }, 12 | "s": { 13 | "item": "rftoolsbase:dimensionalshard" 14 | }, 15 | "i": { 16 | "tag": "forge:ingots/iron" 17 | } 18 | }, 19 | "result": { 20 | "item": "rftoolsutility:module_template" 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/moduleplus_template.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "EXE", 5 | "XPX", 6 | "EXE" 7 | ], 8 | "key": { 9 | "P": { 10 | "item": "rftoolsutility:module_template" 11 | }, 12 | "X": { 13 | "item": "rftoolsbase:infused_diamond" 14 | }, 15 | "E": { 16 | "item": "rftoolsbase:infused_enderpearl" 17 | } 18 | }, 19 | "result": { 20 | "item": "rftoolsutility:moduleplus_template" 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/nightvision_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:syringe", 3 | "pattern": [ 4 | "fSf", 5 | "fPf", 6 | "fff" 7 | ], 8 | "key": { 9 | "P": { 10 | "item": "rftoolsutility:module_template" 11 | }, 12 | "f": { 13 | "item": "minecraft:glowstone" 14 | }, 15 | "S": { 16 | "item": "rftoolsutility:syringe" 17 | } 18 | }, 19 | "mob": "minecraft:drowned", 20 | "syringe": 1, 21 | "result": { 22 | "item": "rftoolsutility:nightvision_module" 23 | } 24 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/noteleport_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:syringe", 3 | "pattern": [ 4 | "fSf", 5 | "fPf", 6 | "fff" 7 | ], 8 | "key": { 9 | "P": { 10 | "item": "rftoolsutility:moduleplus_template" 11 | }, 12 | "f": { 13 | "item": "minecraft:ender_pearl" 14 | }, 15 | "S": { 16 | "item": "rftoolsutility:syringe" 17 | } 18 | }, 19 | "mob": "minecraft:enderman", 20 | "syringe": 1, 21 | "result": { 22 | "item": "rftoolsutility:noteleport_module" 23 | } 24 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/peaceful_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:syringe", 3 | "pattern": [ 4 | "fSf", 5 | "EPE", 6 | "fEf" 7 | ], 8 | "key": { 9 | "P": { 10 | "item": "rftoolsutility:moduleplus_template" 11 | }, 12 | "f": { 13 | "item": "minecraft:iron_block" 14 | }, 15 | "E": { 16 | "item": "rftoolsbase:infused_enderpearl" 17 | }, 18 | "S": { 19 | "item": "rftoolsutility:syringe" 20 | } 21 | }, 22 | "mob": "minecraft:iron_golem", 23 | "syringe": 1, 24 | "result": { 25 | "item": "rftoolsutility:peaceful_module" 26 | } 27 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/poison_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:syringe", 3 | "pattern": [ 4 | "fSf", 5 | "fPf", 6 | "fff" 7 | ], 8 | "key": { 9 | "P": { 10 | "item": "rftoolsutility:module_template" 11 | }, 12 | "f": { 13 | "item": "minecraft:poisonous_potato" 14 | }, 15 | "S": { 16 | "item": "rftoolsutility:syringe" 17 | } 18 | }, 19 | "mob": "minecraft:cave_spider", 20 | "syringe": 1, 21 | "result": { 22 | "item": "rftoolsutility:poison_module" 23 | } 24 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/redstone_information.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "ror", 5 | "rRr", 6 | "rrr" 7 | ], 8 | "key": { 9 | "r": { 10 | "item": "minecraft:redstone" 11 | }, 12 | "R": { 13 | "item": "minecraft:redstone_block" 14 | }, 15 | "o": { 16 | "tag": "forge:ender_pearls" 17 | } 18 | }, 19 | "result": { 20 | "item": "rftoolsutility:redstone_information" 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/redstone_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | " X ", 5 | "rir", 6 | " Z " 7 | ], 8 | "key": { 9 | "X": { 10 | "item": "minecraft:repeater" 11 | }, 12 | "r": { 13 | "item": "minecraft:redstone" 14 | }, 15 | "i": { 16 | "tag": "forge:ingots/iron" 17 | }, 18 | "Z": { 19 | "tag": "forge:dyes/black" 20 | } 21 | }, 22 | "result": { 23 | "item": "rftoolsutility:redstone_module" 24 | } 25 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/redstone_receiver.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "ror", 5 | "CAC", 6 | "rRr" 7 | ], 8 | "key": { 9 | "C": { 10 | "item": "minecraft:comparator" 11 | }, 12 | "A": { 13 | "item": "rftoolsbase:machine_base" 14 | }, 15 | "r": { 16 | "item": "minecraft:redstone" 17 | }, 18 | "R": { 19 | "item": "minecraft:redstone_block" 20 | }, 21 | "o": { 22 | "tag": "forge:ender_pearls" 23 | } 24 | }, 25 | "result": { 26 | "item": "rftoolsutility:redstone_receiver" 27 | } 28 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/redstone_transmitter.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "ror", 5 | "TAT", 6 | "rRr" 7 | ], 8 | "key": { 9 | "A": { 10 | "item": "rftoolsbase:machine_base" 11 | }, 12 | "r": { 13 | "item": "minecraft:redstone" 14 | }, 15 | "R": { 16 | "item": "minecraft:redstone_block" 17 | }, 18 | "T": { 19 | "item": "minecraft:redstone_torch" 20 | }, 21 | "o": { 22 | "tag": "forge:ender_pearls" 23 | } 24 | }, 25 | "result": { 26 | "item": "rftoolsutility:redstone_transmitter" 27 | } 28 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/regeneration_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:syringe", 3 | "pattern": [ 4 | "fSf", 5 | "fPf", 6 | "fff" 7 | ], 8 | "key": { 9 | "P": { 10 | "item": "rftoolsutility:module_template" 11 | }, 12 | "f": { 13 | "item": "minecraft:golden_apple" 14 | }, 15 | "S": { 16 | "item": "rftoolsutility:syringe" 17 | } 18 | }, 19 | "mob": "minecraft:witch", 20 | "syringe": 1, 21 | "result": { 22 | "item": "rftoolsutility:regeneration_module" 23 | } 24 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/regenerationplus_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "fXf", 5 | "EPE", 6 | "fEf" 7 | ], 8 | "key": { 9 | "P": { 10 | "item": "rftoolsutility:moduleplus_template" 11 | }, 12 | "X": { 13 | "item": "rftoolsutility:regeneration_module" 14 | }, 15 | "f": { 16 | "item": "minecraft:golden_apple" 17 | }, 18 | "E": { 19 | "item": "rftoolsbase:infused_diamond" 20 | } 21 | }, 22 | "result": { 23 | "item": "rftoolsutility:regenerationplus_module" 24 | } 25 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/saturation_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:syringe", 3 | "pattern": [ 4 | "fSf", 5 | "fPf", 6 | "fff" 7 | ], 8 | "key": { 9 | "P": { 10 | "item": "rftoolsutility:module_template" 11 | }, 12 | "f": { 13 | "item": "minecraft:rotten_flesh" 14 | }, 15 | "S": { 16 | "item": "rftoolsutility:syringe" 17 | } 18 | }, 19 | "mob": "minecraft:zombie", 20 | "syringe": 1, 21 | "result": { 22 | "item": "rftoolsutility:saturation_module" 23 | } 24 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/saturationplus_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "fXf", 5 | "EPE", 6 | "fEf" 7 | ], 8 | "key": { 9 | "P": { 10 | "item": "rftoolsutility:moduleplus_template" 11 | }, 12 | "X": { 13 | "item": "rftoolsutility:saturation_module" 14 | }, 15 | "f": { 16 | "item": "minecraft:rotten_flesh" 17 | }, 18 | "E": { 19 | "item": "rftoolsbase:infused_diamond" 20 | } 21 | }, 22 | "result": { 23 | "item": "rftoolsutility:saturationplus_module" 24 | } 25 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/screen.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "GGG", 5 | "GAG", 6 | "iii" 7 | ], 8 | "key": { 9 | "A": { 10 | "item": "rftoolsbase:machine_base" 11 | }, 12 | "G": { 13 | "tag": "forge:glass" 14 | }, 15 | "i": { 16 | "tag": "forge:ingots/iron" 17 | } 18 | }, 19 | "result": { 20 | "item": "rftoolsutility:screen" 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/screen_controller.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "ror", 5 | "GFG", 6 | "rGr" 7 | ], 8 | "key": { 9 | "r": { 10 | "item": "minecraft:redstone" 11 | }, 12 | "F": { 13 | "item": "rftoolsbase:machine_frame" 14 | }, 15 | "G": { 16 | "tag": "forge:glass" 17 | }, 18 | "o": { 19 | "tag": "forge:ender_pearls" 20 | } 21 | }, 22 | "result": { 23 | "item": "rftoolsutility:screen_controller" 24 | } 25 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/screen_link.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "ror", 5 | "PPP", 6 | "rrr" 7 | ], 8 | "key": { 9 | "P": { 10 | "tag": "forge:glass_panes" 11 | }, 12 | "r": { 13 | "item": "minecraft:redstone" 14 | }, 15 | "o": { 16 | "tag": "forge:ender_pearls" 17 | } 18 | }, 19 | "result": { 20 | "item": "rftoolsutility:screen_link" 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/sensor.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "xCx", 5 | "rAr", 6 | "xCx" 7 | ], 8 | "key": { 9 | "C": { 10 | "item": "minecraft:comparator" 11 | }, 12 | "x": { 13 | "tag": "forge:gems/quartz" 14 | }, 15 | "A": { 16 | "item": "rftoolsbase:machine_base" 17 | }, 18 | "r": { 19 | "item": "minecraft:redstone" 20 | } 21 | }, 22 | "result": { 23 | "item": "rftoolsutility:sensor" 24 | } 25 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/sequencer.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "rTr", 5 | "TAT", 6 | "rTr" 7 | ], 8 | "key": { 9 | "A": { 10 | "item": "rftoolsbase:machine_base" 11 | }, 12 | "r": { 13 | "item": "minecraft:redstone" 14 | }, 15 | "T": { 16 | "item": "minecraft:redstone_torch" 17 | } 18 | }, 19 | "result": { 20 | "item": "rftoolsutility:sequencer" 21 | } 22 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/simple_dialer.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "rRr", 5 | "TAT", 6 | "rRr" 7 | ], 8 | "key": { 9 | "A": { 10 | "item": "rftoolsbase:machine_base" 11 | }, 12 | "r": { 13 | "item": "minecraft:redstone" 14 | }, 15 | "R": { 16 | "item": "minecraft:redstone_block" 17 | }, 18 | "T": { 19 | "item": "minecraft:redstone_torch" 20 | } 21 | }, 22 | "result": { 23 | "item": "rftoolsutility:simple_dialer" 24 | } 25 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/slowness_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:syringe", 3 | "pattern": [ 4 | "fSf", 5 | "fPf", 6 | "fff" 7 | ], 8 | "key": { 9 | "P": { 10 | "item": "rftoolsutility:module_template" 11 | }, 12 | "f": { 13 | "item": "minecraft:string" 14 | }, 15 | "S": { 16 | "item": "rftoolsutility:syringe" 17 | } 18 | }, 19 | "mob": "minecraft:turtle", 20 | "syringe": 1, 21 | "result": { 22 | "item": "rftoolsutility:slowness_module" 23 | } 24 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/spawner.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "rzr", 5 | "oFX", 6 | "rPr" 7 | ], 8 | "key": { 9 | "z": { 10 | "item": "minecraft:rotten_flesh" 11 | }, 12 | "P": { 13 | "tag": "forge:bones" 14 | }, 15 | "X": { 16 | "tag": "forge:rods/blaze" 17 | }, 18 | "r": { 19 | "item": "minecraft:redstone" 20 | }, 21 | "F": { 22 | "item": "rftoolsbase:machine_frame" 23 | }, 24 | "o": { 25 | "tag": "forge:ender_pearls" 26 | } 27 | }, 28 | "result": { 29 | "item": "rftoolsutility:spawner" 30 | } 31 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/speed_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:syringe", 3 | "pattern": [ 4 | "fSf", 5 | "fPf", 6 | "fff" 7 | ], 8 | "key": { 9 | "P": { 10 | "item": "rftoolsutility:module_template" 11 | }, 12 | "f": { 13 | "item": "minecraft:powered_rail" 14 | }, 15 | "S": { 16 | "item": "rftoolsutility:syringe" 17 | } 18 | }, 19 | "mob": "minecraft:wolf", 20 | "syringe": 1, 21 | "result": { 22 | "item": "rftoolsutility:speed_module" 23 | } 24 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/speedplus_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "fXf", 5 | "EPE", 6 | "fEf" 7 | ], 8 | "key": { 9 | "P": { 10 | "item": "rftoolsutility:moduleplus_template" 11 | }, 12 | "X": { 13 | "item": "rftoolsutility:speed_module" 14 | }, 15 | "f": { 16 | "item": "minecraft:powered_rail" 17 | }, 18 | "E": { 19 | "item": "rftoolsbase:infused_enderpearl" 20 | } 21 | }, 22 | "result": { 23 | "item": "rftoolsutility:speedplus_module" 24 | } 25 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/syringe.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "i ", 5 | " i ", 6 | " z" 7 | ], 8 | "key": { 9 | "z": { 10 | "item": "minecraft:glass_bottle" 11 | }, 12 | "i": { 13 | "tag": "forge:ingots/iron" 14 | } 15 | }, 16 | "result": { 17 | "item": "rftoolsutility:syringe" 18 | } 19 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/tank.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "GGG", 5 | "bFb", 6 | "iii" 7 | ], 8 | "key": { 9 | "b": { 10 | "item": "minecraft:bucket" 11 | }, 12 | "F": { 13 | "item": "rftoolsbase:machine_frame" 14 | }, 15 | "G": { 16 | "tag": "forge:glass" 17 | }, 18 | "i": { 19 | "tag": "forge:ingots/iron" 20 | } 21 | }, 22 | "result": { 23 | "item": "rftoolsutility:tank" 24 | } 25 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/text_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | " p ", 5 | "rir", 6 | " Z " 7 | ], 8 | "key": { 9 | "p": { 10 | "item": "minecraft:paper" 11 | }, 12 | "r": { 13 | "item": "minecraft:redstone" 14 | }, 15 | "i": { 16 | "tag": "forge:ingots/iron" 17 | }, 18 | "Z": { 19 | "tag": "forge:dyes/black" 20 | } 21 | }, 22 | "result": { 23 | "item": "rftoolsutility:text_module" 24 | } 25 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/timer.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "rCr", 5 | "TAT", 6 | "rTr" 7 | ], 8 | "key": { 9 | "C": { 10 | "item": "minecraft:clock" 11 | }, 12 | "A": { 13 | "item": "rftoolsbase:machine_base" 14 | }, 15 | "r": { 16 | "item": "minecraft:redstone" 17 | }, 18 | "T": { 19 | "item": "minecraft:redstone_torch" 20 | } 21 | }, 22 | "result": { 23 | "item": "rftoolsutility:timer" 24 | } 25 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/waterbreathing_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:syringe", 3 | "pattern": [ 4 | "fSf", 5 | "EPE", 6 | "fEf" 7 | ], 8 | "key": { 9 | "P": { 10 | "item": "rftoolsutility:moduleplus_template" 11 | }, 12 | "f": { 13 | "item": "minecraft:prismarine_shard" 14 | }, 15 | "E": { 16 | "item": "rftoolsbase:infused_enderpearl" 17 | }, 18 | "S": { 19 | "item": "rftoolsutility:syringe" 20 | } 21 | }, 22 | "mob": "minecraft:guardian", 23 | "syringe": 1, 24 | "result": { 25 | "item": "rftoolsutility:waterbreathing_module" 26 | } 27 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/weakness_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "rftoolsutility:syringe", 3 | "pattern": [ 4 | "fSf", 5 | "fPf", 6 | "fff" 7 | ], 8 | "key": { 9 | "P": { 10 | "item": "rftoolsutility:module_template" 11 | }, 12 | "f": { 13 | "item": "minecraft:cactus" 14 | }, 15 | "S": { 16 | "item": "rftoolsutility:syringe" 17 | } 18 | }, 19 | "mob": "minecraft:piglin", 20 | "syringe": 1, 21 | "result": { 22 | "item": "rftoolsutility:weakness_module" 23 | } 24 | } -------------------------------------------------------------------------------- /src/generated/resources/data/rftoolsutility/recipes/wire.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "rAr" 5 | ], 6 | "key": { 7 | "A": { 8 | "item": "rftoolsbase:machine_base" 9 | }, 10 | "r": { 11 | "item": "minecraft:redstone" 12 | } 13 | }, 14 | "result": { 15 | "item": "rftoolsutility:wire" 16 | } 17 | } -------------------------------------------------------------------------------- /src/main/java/mcjty/rftoolsutility/modules/crafter/blocks/CrafterBlockTileEntity1.java: -------------------------------------------------------------------------------- 1 | package mcjty.rftoolsutility.modules.crafter.blocks; 2 | 3 | import static mcjty.rftoolsutility.modules.crafter.CrafterModule.TYPE_CRAFTER1; 4 | 5 | public class CrafterBlockTileEntity1 extends CrafterBaseTE { 6 | 7 | public CrafterBlockTileEntity1() { 8 | super(TYPE_CRAFTER1.get(), 2); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/main/java/mcjty/rftoolsutility/modules/crafter/blocks/CrafterBlockTileEntity2.java: -------------------------------------------------------------------------------- 1 | package mcjty.rftoolsutility.modules.crafter.blocks; 2 | 3 | import static mcjty.rftoolsutility.modules.crafter.CrafterModule.TYPE_CRAFTER2; 4 | 5 | public class CrafterBlockTileEntity2 extends CrafterBaseTE { 6 | 7 | public CrafterBlockTileEntity2() { 8 | super(TYPE_CRAFTER2.get(), 4); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/main/java/mcjty/rftoolsutility/modules/crafter/blocks/CrafterBlockTileEntity3.java: -------------------------------------------------------------------------------- 1 | package mcjty.rftoolsutility.modules.crafter.blocks; 2 | 3 | import static mcjty.rftoolsutility.modules.crafter.CrafterModule.TYPE_CRAFTER3; 4 | 5 | public class CrafterBlockTileEntity3 extends CrafterBaseTE { 6 | 7 | public CrafterBlockTileEntity3() { 8 | super(TYPE_CRAFTER3.get(), 8); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/main/java/mcjty/rftoolsutility/modules/crafter/data/CraftMode.java: -------------------------------------------------------------------------------- 1 | package mcjty.rftoolsutility.modules.crafter.data; 2 | 3 | import mcjty.lib.varia.NamedEnum; 4 | 5 | public enum CraftMode implements NamedEnum { 6 | EXT("Ext"), 7 | INT("Int"), 8 | EXTC("ExtC"); 9 | 10 | private final String description; 11 | 12 | CraftMode(String description) { 13 | this.description = description; 14 | } 15 | 16 | 17 | @Override 18 | public String getName() { 19 | return description; 20 | } 21 | 22 | @Override 23 | public String[] getDescription() { 24 | return new String[]{description}; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/main/java/mcjty/rftoolsutility/modules/crafter/data/KeepMode.java: -------------------------------------------------------------------------------- 1 | package mcjty.rftoolsutility.modules.crafter.data; 2 | 3 | import mcjty.lib.varia.NamedEnum; 4 | 5 | public enum KeepMode implements NamedEnum { 6 | ALL("All"), 7 | KEEP("Keep"); 8 | 9 | private final String description; 10 | 11 | KeepMode(String description) { 12 | this.description = description; 13 | } 14 | 15 | 16 | @Override 17 | public String getName() { 18 | return description; 19 | } 20 | 21 | @Override 22 | public String[] getDescription() { 23 | return new String[]{description}; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/main/java/mcjty/rftoolsutility/modules/crafter/data/SpeedMode.java: -------------------------------------------------------------------------------- 1 | package mcjty.rftoolsutility.modules.crafter.data; 2 | 3 | import mcjty.lib.varia.NamedEnum; 4 | 5 | public enum SpeedMode implements NamedEnum { 6 | SLOW("Slow"), 7 | FAST("Fast"); 8 | 9 | private final String description; 10 | 11 | SpeedMode(String description) { 12 | this.description = description; 13 | } 14 | 15 | 16 | @Override 17 | public String getName() { 18 | return description; 19 | } 20 | 21 | @Override 22 | public String[] getDescription() { 23 | return new String[]{description}; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/main/java/mcjty/rftoolsutility/modules/environmental/EnvModuleProvider.java: -------------------------------------------------------------------------------- 1 | package mcjty.rftoolsutility.modules.environmental; 2 | 3 | import mcjty.rftoolsutility.modules.environmental.modules.EnvironmentModule; 4 | 5 | import java.util.function.Supplier; 6 | 7 | public interface EnvModuleProvider { 8 | 9 | Supplier getServerEnvironmentModule(); 10 | 11 | String getName(); 12 | } 13 | -------------------------------------------------------------------------------- /src/main/java/mcjty/rftoolsutility/modules/environmental/recipes/SyringeRecipeType.java: -------------------------------------------------------------------------------- 1 | package mcjty.rftoolsutility.modules.environmental.recipes; 2 | 3 | import net.minecraft.item.crafting.IRecipeType; 4 | import net.minecraft.util.registry.Registry; 5 | 6 | import static mcjty.rftoolsutility.modules.environmental.EnvironmentalModule.SYRINGE_RECIPE_TYPE_ID; 7 | 8 | public class SyringeRecipeType implements IRecipeType { 9 | 10 | public void register() { 11 | Registry.register(Registry.RECIPE_TYPE, SYRINGE_RECIPE_TYPE_ID, this); 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /src/main/java/mcjty/rftoolsutility/modules/logic/blocks/InvCheckerDamageMode.java: -------------------------------------------------------------------------------- 1 | package mcjty.rftoolsutility.modules.logic.blocks; 2 | 3 | import mcjty.lib.varia.NamedEnum; 4 | 5 | public enum InvCheckerDamageMode implements NamedEnum { 6 | DMG_MATCH("Match"), 7 | DMG_IGNORE("Ignore"); 8 | 9 | private final String name; 10 | 11 | InvCheckerDamageMode(String name) { 12 | this.name = name; 13 | } 14 | 15 | @Override 16 | public String getName() { 17 | return name; 18 | } 19 | 20 | @Override 21 | public String[] getDescription() { 22 | return new String[] { name }; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/main/java/mcjty/rftoolsutility/modules/screen/IModuleGuiChanged.java: -------------------------------------------------------------------------------- 1 | package mcjty.rftoolsutility.modules.screen; 2 | 3 | public interface IModuleGuiChanged { 4 | void updateData(); 5 | } 6 | -------------------------------------------------------------------------------- /src/main/java/mcjty/rftoolsutility/modules/screen/modulesclient/ItemStackPlusClientScreenModule.java: -------------------------------------------------------------------------------- 1 | package mcjty.rftoolsutility.modules.screen.modulesclient; 2 | 3 | import net.minecraft.world.World; 4 | 5 | public class ItemStackPlusClientScreenModule extends ItemStackClientScreenModule { 6 | @Override 7 | public void mouseClick(World world, int x, int y, boolean clicked) { 8 | 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/main/java/mcjty/rftoolsutility/modules/spawner/recipes/SpawnerRecipeType.java: -------------------------------------------------------------------------------- 1 | package mcjty.rftoolsutility.modules.spawner.recipes; 2 | 3 | import net.minecraft.item.crafting.IRecipeType; 4 | import net.minecraft.util.registry.Registry; 5 | 6 | import static mcjty.rftoolsutility.modules.spawner.SpawnerModule.SPAWNER_RECIPE_TYPE_ID; 7 | 8 | public class SpawnerRecipeType implements IRecipeType { 9 | 10 | public void register() { 11 | Registry.register(Registry.RECIPE_TYPE, SPAWNER_RECIPE_TYPE_ID, this); 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /src/main/java/mcjty/rftoolsutility/playerprops/PlayerBuff.java: -------------------------------------------------------------------------------- 1 | package mcjty.rftoolsutility.playerprops; 2 | 3 | public enum PlayerBuff { 4 | BUFF_FEATHERFALLING, 5 | BUFF_FEATHERFALLINGPLUS, 6 | BUFF_HASTE, 7 | BUFF_HASTEPLUS, 8 | BUFF_REGENERATION, 9 | BUFF_REGENERATIONPLUS, 10 | BUFF_SATURATION, 11 | BUFF_SATURATIONPLUS, 12 | BUFF_SPEED, 13 | BUFF_SPEEDPLUS, 14 | BUFF_FLIGHT, 15 | BUFF_PEACEFUL, 16 | BUFF_WATERBREATHING, 17 | BUFF_NIGHTVISION, 18 | BUFF_BLINDNESS, 19 | BUFF_WEAKNESS, 20 | BUFF_POISON, 21 | BUFF_SLOWNESS, 22 | BUFF_GLOWING, 23 | BUFF_LUCK, 24 | BUFF_NOTELEPORT, 25 | } 26 | -------------------------------------------------------------------------------- /src/main/java/mcjty/rftoolsutility/playerprops/SendBuffsToClientHelper.java: -------------------------------------------------------------------------------- 1 | package mcjty.rftoolsutility.playerprops; 2 | 3 | import mcjty.rftoolsutility.client.RenderGameOverlayEventHandler; 4 | 5 | import java.util.ArrayList; 6 | 7 | public class SendBuffsToClientHelper { 8 | 9 | public static void setBuffs(PacketSendBuffsToClient buffs) { 10 | RenderGameOverlayEventHandler.buffs = new ArrayList<>(buffs.getBuffs()); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/blockstates/tank.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "rftoolsutility:block/tank" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/font/ubuntu.json: -------------------------------------------------------------------------------- 1 | { 2 | "providers": [ 3 | { 4 | "type": "ttf", 5 | "file": "rftoolsutility:ubuntu.ttf", 6 | "size": 24 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/font/ubuntu.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/font/ubuntu.ttf -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/gui/counter.gui: -------------------------------------------------------------------------------- 1 | window { 2 | size(200,30) 3 | 4 | bind('counter','counter') 5 | bind('current','current') 6 | 7 | panel('','vertical') { 8 | bgthickness(2) 9 | panel('','horizontal') { 10 | label('','Counter:') 11 | integerfield('counter') { 12 | channel('counter') 13 | tooltips('Set the counter in pulses') 14 | } 15 | label('','Current:') 16 | integerfield('current') { 17 | channel('current') 18 | tooltips('Set the current value','(fires when it reaches counter)') 19 | } 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/gui/redstone_receiver.gui: -------------------------------------------------------------------------------- 1 | window { 2 | size(168,44) 3 | 4 | action('reset','reset') 5 | bind('analog','analog') 6 | 7 | panel('','vertical') { 8 | bgthickness(2) 9 | togglebutton('analog','Analog mode') { 10 | channel('analog') 11 | desired(160,16) 12 | tooltips('Output the same power','level as the input, instead','of always 15 or 0') 13 | check(true) 14 | } 15 | button('reset','Reset Channel') { 16 | channel('reset') 17 | desired(160,16) 18 | tooltips('Reset the channel') 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/gui/redstone_transmitter.gui: -------------------------------------------------------------------------------- 1 | window { 2 | size(168,44) 3 | 4 | action('reset','reset') 5 | 6 | panel('','vertical') { 7 | bgthickness(2) 8 | textfield('name') { 9 | channel('name') 10 | desired(160,16) 11 | tooltips('Optional name of this', 'redstone channel') 12 | } 13 | button('reset','Reset Channel') { 14 | channel('reset') 15 | desired(160,16) 16 | tooltips('Reset the channel') 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/gui/tank.gui: -------------------------------------------------------------------------------- 1 | window { 2 | size(180,152) 3 | 4 | panel('','positional') { 5 | bg1('rftoolsutility:textures/gui/tank.png') 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/gui/timer.gui: -------------------------------------------------------------------------------- 1 | window { 2 | size(168,48) 3 | 4 | bind('delay','delay') 5 | bind('pauses','pauses') 6 | 7 | panel('','vertical') { 8 | bgthickness(2) 9 | panel('','horizontal') { 10 | label('','Delay:') 11 | integerfield('delay') { 12 | channel('delay') 13 | tooltips('Set the delay in ticks','(20 ticks is one second)') 14 | } 15 | } 16 | togglebutton('pauses','Pause while redstone active') { 17 | channel('pauses') 18 | desired(-1,16) 19 | check(true) 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/block/tank.json: -------------------------------------------------------------------------------- 1 | { 2 | "loader": "rftoolsutility:tankloader" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/advanced_charged_porter0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/advchargedporteriteml0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/advanced_charged_porter1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/advchargedporteriteml1" 5 | }} 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/advanced_charged_porter2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/advchargedporteriteml2" 5 | }} 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/advanced_charged_porter3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/advchargedporteriteml3" 5 | }} 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/advanced_charged_porter4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/advchargedporteriteml4" 5 | }} 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/advanced_charged_porter5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/advchargedporteriteml5" 5 | }} 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/advanced_charged_porter6.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/advchargedporteriteml6" 5 | }} 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/advanced_charged_porter7.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/advchargedporteriteml7" 5 | }} 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/advanced_charged_porter8.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/advchargedporteriteml8" 5 | }} 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/button_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/modules/buttonmoduleitem" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/charged_porter0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/chargedporteriteml0" 5 | }} 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/charged_porter1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/chargedporteriteml1" 5 | }} 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/charged_porter2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/chargedporteriteml2" 5 | }} 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/charged_porter3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/chargedporteriteml3" 5 | }} 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/charged_porter4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/chargedporteriteml4" 5 | }} 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/charged_porter5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/chargedporteriteml5" 5 | }} 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/charged_porter6.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/chargedporteriteml6" 5 | }} 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/charged_porter7.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/chargedporteriteml7" 5 | }} 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/charged_porter8.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/chargedporteriteml8" 5 | }} 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/clock_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/modules/clockmoduleitem" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/computer_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/modules/computermoduleitem" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/counter_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/modules/countermoduleitem" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/counterplus_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/modules/counterplusmoduleitem" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/elevator_button_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/modules/elevatorbuttonmoduleitem" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/energy_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/modules/energymoduleitem" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/energyplus_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/modules/energyplusmoduleitem" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/fluid_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/modules/fluidmoduleitem" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/fluidplus_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/modules/fluidplusmoduleitem" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/inventory_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/modules/inventorymoduleitem" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/inventoryplus_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/modules/inventoryplusmoduleitem" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/machineinformation_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/modules/machineinformationmoduleitem" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/redstone_information.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/redstone_information" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/redstone_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/modules/redstonemoduleitem" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/screen_link.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/screen_link" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/storage_control_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/modules/storagecontrolmoduleitem" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/syringe0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/syringeitem0" 5 | }} 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/syringe1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/syringeitem1" 5 | }} 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/syringe2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/syringeitem2" 5 | }} 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/syringe3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/syringeitem3" 5 | }} 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/syringe4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/syringeitem4" 5 | }} 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/syringe5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/syringeitem5" 5 | }} 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/tablet_redstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/tablet_redstone" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/tablet_screen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/tablet_screen" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/teleport_probe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/teleportprobeitem" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/models/item/text_module.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "rftoolsutility:item/modules/textmoduleitem" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/sounds.json: -------------------------------------------------------------------------------- 1 | { 2 | "teleport_whoosh" : {"category": "block", "sounds": ["rftoolsutility:teleport_whoosh"]}, 3 | "teleport_error" : {"category": "block", "sounds": ["rftoolsutility:teleport_error"]}, 4 | "elevator_start" : {"category": "block", "sounds": ["rftoolsutility:elevator_start"]}, 5 | "elevator_loop" : {"category": "block", "sounds": ["rftoolsutility:elevator_loop"]}, 6 | "elevator_stop" : {"category": "block", "sounds": ["rftoolsutility:elevator_stop"]}, 7 | "scan" : {"category": "block", "sounds": ["rftoolsutility:scan"]} 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/sounds/elevator_loop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/sounds/elevator_loop.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/sounds/elevator_start.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/sounds/elevator_start.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/sounds/elevator_stop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/sounds/elevator_stop.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/sounds/scan.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/sounds/scan.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/sounds/teleport_error.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/sounds/teleport_error.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/sounds/teleport_whoosh.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/sounds/teleport_whoosh.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/creative_screenframe_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/creative_screenframe_icon.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineanalogtop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/logic/machineanalogtop.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machinecountertop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/logic/machinecountertop.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineinvchecker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/logic/machineinvchecker.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machinelogictop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/logic/machinelogictop.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_0.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 5 4 | }, 5 | "ctm":{ 6 | "ctm_version": 1, 7 | "layer":"CUTOUT", 8 | "extra": { 9 | "light": 15 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_1.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 5 4 | }, 5 | "ctm":{ 6 | "ctm_version": 1, 7 | "layer":"CUTOUT", 8 | "extra": { 9 | "light": 15 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_2.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 5 4 | }, 5 | "ctm":{ 6 | "ctm_version": 1, 7 | "layer":"CUTOUT", 8 | "extra": { 9 | "light": 15 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_3.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 5 4 | }, 5 | "ctm":{ 6 | "ctm_version": 1, 7 | "layer":"CUTOUT", 8 | "extra": { 9 | "light": 15 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_4.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 5 4 | }, 5 | "ctm":{ 6 | "ctm_version": 1, 7 | "layer":"CUTOUT", 8 | "extra": { 9 | "light": 15 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_5.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_5.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 5 4 | }, 5 | "ctm":{ 6 | "ctm_version": 1, 7 | "layer":"CUTOUT", 8 | "extra": { 9 | "light": 15 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_6.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_6.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 5 4 | }, 5 | "ctm":{ 6 | "ctm_version": 1, 7 | "layer":"CUTOUT", 8 | "extra": { 9 | "light": 15 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_7.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_7.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 5 4 | }, 5 | "ctm":{ 6 | "ctm_version": 1, 7 | "layer":"CUTOUT", 8 | "extra": { 9 | "light": 15 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_8.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_8.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 5 4 | }, 5 | "ctm":{ 6 | "ctm_version": 1, 7 | "layer":"CUTOUT", 8 | "extra": { 9 | "light": 15 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_9.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_9.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 5 4 | }, 5 | "ctm":{ 6 | "ctm_version": 1, 7 | "layer":"CUTOUT", 8 | "extra": { 9 | "light": 15 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_a.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_a.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 5 4 | }, 5 | "ctm":{ 6 | "ctm_version": 1, 7 | "layer":"CUTOUT", 8 | "extra": { 9 | "light": 15 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_b.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_b.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 5 4 | }, 5 | "ctm":{ 6 | "ctm_version": 1, 7 | "layer":"CUTOUT", 8 | "extra": { 9 | "light": 15 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_c.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_c.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 5 4 | }, 5 | "ctm":{ 6 | "ctm_version": 1, 7 | "layer":"CUTOUT", 8 | "extra": { 9 | "light": 15 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_d.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_d.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 5 4 | }, 5 | "ctm":{ 6 | "ctm_version": 1, 7 | "layer":"CUTOUT", 8 | "extra": { 9 | "light": 15 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_e.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_e.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 5 4 | }, 5 | "ctm":{ 6 | "ctm_version": 1, 7 | "layer":"CUTOUT", 8 | "extra": { 9 | "light": 15 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_f.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineoutput_f.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 5 4 | }, 5 | "ctm":{ 6 | "ctm_version": 1, 7 | "layer":"CUTOUT", 8 | "extra": { 9 | "light": 15 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineredstonereceiver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/logic/machineredstonereceiver.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machineredstonetransmitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/logic/machineredstonetransmitter.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machinesensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/logic/machinesensor.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machinesequencertop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/logic/machinesequencertop.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machinetimertop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/logic/machinetimertop.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/logic/machinewiretop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/logic/machinewiretop.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/machinebeamer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/machinebeamer.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/machinebeameroff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/machinebeameroff.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/machinecrafter1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/machinecrafter1.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/machinecrafter2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/machinecrafter2.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/machinecrafter3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/machinecrafter3.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/machinedestinationanalyzer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/machinedestinationanalyzer.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/machinedialingdevice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/machinedialingdevice.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/machineenvironmentalcontroller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/machineenvironmentalcontroller.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/machinematterbooster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/machinematterbooster.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/machinereceiver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/machinereceiver.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/machinereceiver.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 3 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/machinescreencontroller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/machinescreencontroller.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/machinesimpledialer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/machinesimpledialer.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/machinespawner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/machinespawner.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/machinespawner.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 3 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/machineteleporter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/machineteleporter.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/machineteleporter.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 3 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/machineteleporterunknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/machineteleporterunknown.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/machineteleporterunknown.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 3 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/machineteleporterwarn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/machineteleporterwarn.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/machineteleporterwarn.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 3 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/machinetransmitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/machinetransmitter.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/machinetransmitter.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 3 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/screenframe_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/screenframe_icon.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/tank0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/tank0.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/tank1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/tank1.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/tank2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/tank2.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/tank3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/tank3.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/tank4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/tank4.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/tank5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/tank5.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/tank6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/tank6.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/tank7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/tank7.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/block/tank8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/block/tank8.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/effects/blueglow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/effects/blueglow.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/effects/floatingsphere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/effects/floatingsphere.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/effects/redglow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/effects/redglow.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/effects/yellowglow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/effects/yellowglow.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/gui/analog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/gui/analog.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/gui/crafter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/gui/crafter.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/gui/environmentalcontroller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/gui/environmentalcontroller.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/gui/invchecker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/gui/invchecker.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/gui/matterbeamer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/gui/matterbeamer.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/gui/redstone_information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/gui/redstone_information.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/gui/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/gui/screen.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/gui/screencontroller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/gui/screencontroller.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/gui/sensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/gui/sensor.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/gui/spawner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/gui/spawner.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/gui/tank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/gui/tank.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/gui/threelogic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/gui/threelogic.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/advchargedporteriteml0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/advchargedporteriteml0.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/advchargedporteriteml1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/advchargedporteriteml1.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/advchargedporteriteml2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/advchargedporteriteml2.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/advchargedporteriteml3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/advchargedporteriteml3.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/advchargedporteriteml4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/advchargedporteriteml4.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/advchargedporteriteml5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/advchargedporteriteml5.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/advchargedporteriteml6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/advchargedporteriteml6.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/advchargedporteriteml7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/advchargedporteriteml7.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/advchargedporteriteml8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/advchargedporteriteml8.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/chargedporteriteml0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/chargedporteriteml0.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/chargedporteriteml1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/chargedporteriteml1.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/chargedporteriteml2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/chargedporteriteml2.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/chargedporteriteml3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/chargedporteriteml3.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/chargedporteriteml4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/chargedporteriteml4.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/chargedporteriteml5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/chargedporteriteml5.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/chargedporteriteml6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/chargedporteriteml6.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/chargedporteriteml7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/chargedporteriteml7.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/chargedporteriteml8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/chargedporteriteml8.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/envmodules/blindnessmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/envmodules/blindnessmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/envmodules/featherfallingmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/envmodules/featherfallingmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/envmodules/featherfallingplusmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/envmodules/featherfallingplusmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/envmodules/flightmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/envmodules/flightmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/envmodules/glowingmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/envmodules/glowingmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/envmodules/hastemoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/envmodules/hastemoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/envmodules/hasteplusmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/envmodules/hasteplusmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/envmodules/luckmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/envmodules/luckmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/envmodules/moduletemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/envmodules/moduletemplate.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/envmodules/moduletemplateplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/envmodules/moduletemplateplus.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/envmodules/nightvisionmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/envmodules/nightvisionmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/envmodules/noteleportmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/envmodules/noteleportmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/envmodules/peacefulmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/envmodules/peacefulmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/envmodules/poisonmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/envmodules/poisonmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/envmodules/regenerationmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/envmodules/regenerationmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/envmodules/regenerationplusmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/envmodules/regenerationplusmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/envmodules/saturationmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/envmodules/saturationmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/envmodules/saturationplusmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/envmodules/saturationplusmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/envmodules/slownessmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/envmodules/slownessmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/envmodules/speedmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/envmodules/speedmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/envmodules/speedplusmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/envmodules/speedplusmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/envmodules/waterbreathingmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/envmodules/waterbreathingmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/envmodules/weaknessmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/envmodules/weaknessmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/modules/buttonmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/modules/buttonmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/modules/clockmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/modules/clockmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/modules/computermoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/modules/computermoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/modules/countermoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/modules/countermoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/modules/counterplusmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/modules/counterplusmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/modules/elevatorbuttonmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/modules/elevatorbuttonmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/modules/energymoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/modules/energymoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/modules/energyplusmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/modules/energyplusmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/modules/fluidmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/modules/fluidmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/modules/fluidplusmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/modules/fluidplusmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/modules/inventorymoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/modules/inventorymoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/modules/inventoryplusmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/modules/inventoryplusmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/modules/machineinformationmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/modules/machineinformationmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/modules/redstonemoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/modules/redstonemoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/modules/textmoduleitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/modules/textmoduleitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/redstone_information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/redstone_information.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/screen_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/screen_link.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/syringeitem0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/syringeitem0.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/syringeitem1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/syringeitem1.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/syringeitem2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/syringeitem2.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/syringeitem3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/syringeitem3.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/syringeitem4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/syringeitem4.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/syringeitem5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/syringeitem5.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/tablet_redstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/tablet_redstone.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/tablet_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/tablet_screen.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/item/teleportprobeitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/item/teleportprobeitem.png -------------------------------------------------------------------------------- /src/main/resources/assets/rftoolsutility/textures/manual/env_controller_gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/assets/rftoolsutility/textures/manual/env_controller_gui.png -------------------------------------------------------------------------------- /src/main/resources/data/rftoolsutility/patchouli_books/manual/book.json: -------------------------------------------------------------------------------- 1 | { 2 | "extend": "rftoolsbase:manual" 3 | } -------------------------------------------------------------------------------- /src/main/resources/data/rftoolsutility/patchouli_books/manual/en_us/categories/category_rftoolsutility.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "RFTools Utility", 3 | "description": "RFTools Utility is a mod containing various useful blocks and tools", 4 | "icon": "rftoolsutility:crafter3" 5 | } -------------------------------------------------------------------------------- /src/main/resources/data/rftoolsutility/patchouli_books/manual/en_us/categories/category_rftoolsutility_logic.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Logic Blocks", 3 | "description": "Logic Blocks are all about producing redstone signals and reacting to them", 4 | "parent": "rftoolsutility:category_rftoolsutility", 5 | "icon": "rftoolsutility:sequencer", 6 | "sortnum": 30 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/rftoolsutility/patchouli_books/manual/en_us/categories/category_rftoolsutility_machines.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Machines", 3 | "description": "All the machines in this mod", 4 | "parent": "rftoolsutility:category_rftoolsutility", 5 | "icon": "rftoolsutility:crafter3", 6 | "sortnum": 30 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/rftoolsutility/patchouli_books/manual/en_us/entries/logic/digit.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Digit", 3 | "icon": "rftoolsutility:digit", 4 | "category": "rftoolsutility:category_rftoolsutility_logic", 5 | "pages": [ 6 | { 7 | "type": "text", 8 | "text": "This block simply displays a number from 0 to F (hexadecimal) corresponding to the strength of the input signal." 9 | }, 10 | { 11 | "type": "crafting", 12 | "heading": "Digit", 13 | "recipe": "rftoolsutility:digit" 14 | } 15 | ] 16 | } -------------------------------------------------------------------------------- /src/main/resources/data/rftoolsutility/patchouli_books/manual/en_us/entries/logic/redstone_information.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Redstone Information", 3 | "icon": "rftoolsutility:redstone_information", 4 | "category": "rftoolsutility:category_rftoolsutility_logic", 5 | "pages": [ 6 | { 7 | "type": "text", 8 | "text": "This item can store several redstone channels ($(5)right click$() on a $(l:rftoolsutility:logic/redstone_transmitter)Redstone Transmitter$(/l) or $(l:rftoolsutility:logic/redstone_receiver)Redstone Receiver$(/l) to add the channel). You can then put it in a $(l:rftoolsbase:tools/tablet)Tablet$(/l) which allows you to examine and change redstone signals from anywhere" 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /src/main/resources/data/rftoolsutility/patchouli_books/manual/en_us/entries/logic/sensor.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Sensor", 3 | "icon": "rftoolsutility:sensor", 4 | "category": "rftoolsutility:category_rftoolsutility_logic", 5 | "pages": [ 6 | { 7 | "type": "text", 8 | "text": "The sensor can detect various things directly in front of its input (either 1 block, 3 blocks or 5 blocks). It can detect blocks being placed, crop growth level, number of entities and so on" 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /src/main/resources/data/rftoolsutility/patchouli_books/manual/en_us/entries/machines/matter_transmitter.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Matter Transmitter", 3 | "icon": "rftoolsutility:matter_transmitter", 4 | "category": "rftoolsutility:category_rftoolsutility_machines", 5 | "pages": [ 6 | { 7 | "type": "text", 8 | "text": "The Matter Transmitter is a device that can teleport players to any other $(l:rftoolsutility:machines/matter_receiver)Matter Receiver$(/l). Use the $(l:rftoolsutility:machines/dialing_device)Dialing Device$(/l) to dial a matter transmitter to a receiver.$(br2)$(5)Infusing$() this machine causes reduced power consumption and increased teleportation speed" 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /src/main/resources/data/rftoolsutility/patchouli_books/manual/en_us/entries/machines/screen_controller.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "The Screen Controller", 3 | "icon": "rftoolsutility:screen_controller", 4 | "category": "rftoolsutility:category_rftoolsutility_machines", 5 | "pages": [ 6 | { 7 | "type": "text", 8 | "text": "With the Screen Controller you can power nearby $(l:rftoolsutility:machines/screen)screens$(/l). Using the 'Scan' button in the GUI you can connect to all screens in a 32x32x32 radius.$(br2)$(5)Infusing$() this machine will increase this range" 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /src/main/resources/data/rftoolsutility/patchouli_books/manual/en_us/entries/machines/screen_link.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Screen Link", 3 | "icon": "rftoolsutility:screen_link", 4 | "category": "rftoolsutility:category_rftoolsutility_machines", 5 | "pages": [ 6 | { 7 | "type": "text", 8 | "text": "Using $(5)right click$() you can link this item to a $(l:rftoolsutility:machines/screen)Screen$(/l) and after that place it in a $(l:tools/tablet)Tablet$(/l). This allows you to look at the Screen from anywhere (provided the Screen is chunkloaded)" 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /src/main/resources/data/rftoolsutility/patchouli_books/manual/en_us/entries/machines/tank.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "The Tank", 3 | "icon": "rftoolsutility:tank", 4 | "category": "rftoolsutility:category_rftoolsutility_machines", 5 | "pages": [ 6 | { 7 | "type": "text", 8 | "text": "A container for liquids that can (by default) hold up to 32 buckets. It's possible to restrict the type of liquids by placing a bucket with the specific liquid in the filter slot" 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /src/main/resources/data/rftoolsutility/patchouli_books/manual/en_us/templates/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McJtyMods/RFToolsUtility/a37b889f45d19b40e451acf6e13593d64f6546bc/src/main/resources/data/rftoolsutility/patchouli_books/manual/en_us/templates/placeholder.txt -------------------------------------------------------------------------------- /src/main/resources/data/rftoolsutility/tags/items/living/averageyield.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:melon", 5 | "minecraft:sugar_cane", 6 | "minecraft:chorus_flower", 7 | "minecraft:pumpkin", 8 | "minecraft:cocoa_beans", 9 | "minecraft:apple", 10 | "minecraft:rabbit_foot" 11 | ] 12 | } -------------------------------------------------------------------------------- /src/main/resources/data/rftoolsutility/tags/items/living/highyield.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#forge:crops", 5 | "#minecraft:fishes", 6 | "minecraft:beef", 7 | "minecraft:porkchop", 8 | "minecraft:mutton", 9 | "minecraft:chicken", 10 | "minecraft:rabbit", 11 | "minecraft:chorus_fruit" 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/rftoolsutility/tags/items/living/living.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#rftoolsutility:living/lowyield", 5 | "#rftoolsutility:living/averageyield", 6 | "#rftoolsutility:living/highyield" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/rftoolsutility/tags/items/living/lowyield.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#minecraft:leaves", 5 | "#minecraft:saplings", 6 | "#minecraft:flowers", 7 | "#forge:mushrooms", 8 | "#forge:seeds", 9 | "minecraft:cactus", 10 | "minecraft:vine", 11 | "minecraft:lily_pad", 12 | "minecraft:rabbit_hide" 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 6, 4 | "description": "Resources used for RFTools Utility" 5 | } 6 | } 7 | --------------------------------------------------------------------------------