├── .factorypath ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report_fabric.md │ ├── bug_report_forge.md │ ├── bug_report_neoforge │ └── suggestion.md └── workflows │ └── gradle.yml ├── .gitignore ├── .vs ├── VSWorkspaceState.json ├── createaddition │ └── v16 │ │ └── .suo └── slnx.sqlite ├── 2021-05-16_CC&A.png ├── COMPUTERCRAFT.md ├── COMPUTERCRAFT_zh-CN.md ├── LICENSE ├── README.md ├── alpha_items.png ├── build.bat ├── build.gradle ├── cca_20230412a.png ├── createaddition_items.png ├── createaddition_items_20220401a.png ├── crowdin.yml ├── eclipse.bat ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── runClient.bat ├── settings.gradle └── src └── main ├── java └── com │ └── mrh0 │ └── createaddition │ ├── CreateAddition.java │ ├── blocks │ ├── alternator │ │ ├── AlternatorBlock.java │ │ ├── AlternatorBlockEntity.java │ │ └── AlternatorRenderer.java │ ├── barbed_wire │ │ └── BarbedWireBlock.java │ ├── cake │ │ └── CACakeBlock.java │ ├── centrifugal_governor │ │ └── CentrifugalGovernor.java │ ├── connector │ │ ├── ConnectorType.java │ │ ├── LargeConnectorBlock.java │ │ ├── LargeConnectorBlockEntity.java │ │ ├── SmallConnectorBlock.java │ │ ├── SmallConnectorBlockEntity.java │ │ ├── SmallLightConnectorBlock.java │ │ ├── SmallLightConnectorBlockEntity.java │ │ └── base │ │ │ ├── AbstractConnectorBlock.java │ │ │ ├── AbstractConnectorBlockEntity.java │ │ │ ├── ConnectorMode.java │ │ │ ├── ConnectorRenderer.java │ │ │ └── ConnectorVariant.java │ ├── creative_energy │ │ ├── CreativeEnergyBlock.java │ │ └── CreativeEnergyBlockEntity.java │ ├── crops │ │ └── HarmfulPlantBlock.java │ ├── digital_adapter │ │ ├── DigitalAdapterBlock.java │ │ ├── DigitalAdapterBlockEntity.java │ │ ├── DigitalAdapterBlockItem.java │ │ ├── DigitalAdapterDisplaySource.java │ │ └── ISpeedControllerAdapter.java │ ├── electric_motor │ │ ├── ElectricMotorBlock.java │ │ ├── ElectricMotorBlockEntity.java │ │ └── ElectricMotorRenderer.java │ ├── energy_meter │ │ ├── EnergyMeterBlock.java │ │ ├── EnergyMeterBlockEntity.java │ │ └── EnergyMeterRenderer.java │ ├── liquid_blaze_burner │ │ ├── LiquidBlazeBurnerBlock.java │ │ ├── LiquidBlazeBurnerBlockEntity.java │ │ └── LiquidBlazeBurnerRenderer.java │ ├── modular_accumulator │ │ ├── CAConnectivityHandler.java │ │ ├── ModularAccumulatorBlock.java │ │ ├── ModularAccumulatorBlockEntity.java │ │ ├── ModularAccumulatorBlockItem.java │ │ ├── ModularAccumulatorCTBehaviour.java │ │ ├── ModularAccumulatorDisplaySource.java │ │ ├── ModularAccumulatorMovement.java │ │ └── ModularAccumulatorRenderer.java │ ├── portable_energy_interface │ │ ├── PEIActorVisual.java │ │ ├── PortableEnergyInterfaceBlock.java │ │ ├── PortableEnergyInterfaceBlockEntity.java │ │ ├── PortableEnergyInterfaceMovement.java │ │ ├── PortableEnergyInterfaceRenderer.java │ │ ├── PortableEnergyInterfaceVisual.java │ │ └── PortableEnergyManager.java │ ├── redstone_relay │ │ ├── RedstoneRelayBlock.java │ │ ├── RedstoneRelayBlockEntity.java │ │ └── RedstoneRelayRenderer.java │ ├── rolling_mill │ │ ├── RollingMillBlock.java │ │ ├── RollingMillBlockEntity.java │ │ ├── RollingMillRenderer.java │ │ └── RollingMillVisual.java │ ├── sprinkler │ │ └── SprinklerBlock.java │ └── tesla_coil │ │ ├── TeslaCoilBeltCallbacks.java │ │ ├── TeslaCoilBlock.java │ │ └── TeslaCoilBlockEntity.java │ ├── commands │ └── CCApiCommand.java │ ├── compat │ ├── computercraft │ │ ├── DigitalAdapterPeripheral.java │ │ ├── ElectricMotorPeripheral.java │ │ ├── Helpers.java │ │ ├── ModularAccumulatorPeripheral.java │ │ ├── Peripherals.java │ │ ├── PortableEnergyInterfacePeripheral.java │ │ └── RedstoneRelayPeripheral.java │ ├── forge │ │ └── ForgeEnergyDisplaySource.java │ └── jei │ │ ├── AnimatedRollingMill.java │ │ ├── AnimatedTeslaCoil.java │ │ ├── CARecipeCategory.java │ │ ├── ChargingCategory.java │ │ ├── CreateAdditionJEI.java │ │ ├── LiquidBurningCategory.java │ │ ├── RollingMillAssemblySubCategory.java │ │ └── RollingMillCategory.java │ ├── config │ ├── Config.java │ └── ServerConfig.java │ ├── debug │ ├── CADebugger.java │ └── IDebugDrawer.java │ ├── effect │ └── ShockingEffect.java │ ├── energy │ ├── BaseElectricBlockEntity.java │ ├── CreativeEnergyStorage.java │ ├── IEnergyProvider.java │ ├── IMultiTileEnergyContainer.java │ ├── IWireNode.java │ ├── InternalEnergyStorage.java │ ├── LocalNode.java │ ├── NodeMovementBehaviour.java │ ├── NodeRotation.java │ ├── WireConnectResult.java │ ├── WireType.java │ └── network │ │ ├── EnergyNetwork.java │ │ └── EnergyNetworkManager.java │ ├── event │ ├── ClientEventHandler.java │ ├── GameEvents.java │ └── ResourceReloadListener.java │ ├── index │ ├── CAAdvancements.java │ ├── CAArmInteractions.java │ ├── CABlockEntities.java │ ├── CABlocks.java │ ├── CACreativeModeTabs.java │ ├── CADamageTypes.java │ ├── CADisplaySources.java │ ├── CAEffects.java │ ├── CAEntities.java │ ├── CAFluids.java │ ├── CAItemProperties.java │ ├── CAItems.java │ ├── CAPartials.java │ ├── CAPonders.java │ ├── CARecipes.java │ ├── CASounds.java │ └── CASpriteShifts.java │ ├── item │ ├── BiomassPellet.java │ ├── BiomassPelletBlock.java │ ├── BrassAmulet.java │ ├── CADebuggerItem.java │ ├── DiamondGritSandpaper.java │ ├── ElectrumAmulet.java │ └── WireSpool.java │ ├── mixin │ ├── BlockMovementChecksMixin.java │ ├── ContraptionMixin.java │ └── SpeedControllerTileEntityMixin.java │ ├── network │ ├── ConsProdSyncPacket.java │ ├── EnergyNetworkPacket.java │ ├── IObserveTileEntity.java │ └── ObservePacket.java │ ├── ponder │ ├── CAPonderPlugin.java │ └── PonderScenes.java │ ├── recipe │ ├── CARecipeSerializer.java │ ├── FluidRecipeWrapper.java │ ├── charging │ │ ├── ChargingRecipe.java │ │ └── ChargingRecipeSerializer.java │ ├── conditions │ │ └── HasFluidTagCondition.java │ ├── liquid_burning │ │ ├── LiquidBurningRecipe.java │ │ └── LiquidBurningRecipeSerializer.java │ └── rolling │ │ ├── RollingMillRecipeParams.java │ │ ├── RollingRecipe.java │ │ ├── RollingRecipeInfo.java │ │ ├── RollingRecipeProcessingFactory.java │ │ ├── RollingRecipeSerializer.java │ │ └── SequencedAssemblyRollingRecipeSerializer.java │ ├── rendering │ ├── CARenderType.java │ └── WireNodeRenderer.java │ ├── shapes │ └── CAShapes.java │ ├── sound │ ├── CAContinuousSound.java │ ├── CASoundScape.java │ └── CASoundScapes.java │ ├── trains │ └── schedule │ │ ├── CASchedule.java │ │ └── condition │ │ └── EnergyThresholdCondition.java │ └── util │ ├── ClientMinecraftWrapper.java │ ├── IComparatorOverride.java │ └── Util.java └── resources ├── META-INF ├── createaddition.png └── mods.toml ├── assets ├── createaddition │ ├── blockstates │ │ ├── accumulator.json │ │ ├── alternator.json │ │ ├── barbed_wire.json │ │ ├── bioethanol.json │ │ ├── biomass_pellet_block.json │ │ ├── chocolate_cake.json │ │ ├── connector.json │ │ ├── connector_old.json │ │ ├── copper_wire_casing.json │ │ ├── creative_energy.json │ │ ├── digital_adapter.json │ │ ├── electric_motor.json │ │ ├── electrum_block.json │ │ ├── honey_cake.json │ │ ├── large_connector.json │ │ ├── liquid_blaze_burner.json │ │ ├── modular_accumulator.json │ │ ├── portable_energy_interface.json │ │ ├── redstone_relay.json │ │ ├── rolling_mill.json │ │ ├── seed_oil.json │ │ ├── small_light_connector.json │ │ └── tesla_coil.json │ ├── lang │ │ ├── de_de.json │ │ ├── en_us.json │ │ ├── es_ar.json │ │ ├── es_es.json │ │ ├── es_mx.json │ │ ├── fr_fr.json │ │ ├── it_it.json │ │ ├── ja_jp.json │ │ ├── ko_kr.json │ │ ├── pl_pl.json │ │ ├── pt_br.json │ │ ├── pt_pt.json │ │ ├── py │ │ │ └── lang_validator.py │ │ ├── ru_ru.json │ │ ├── sv_se.json │ │ ├── tr_tr.json │ │ ├── uk_ua.json │ │ ├── zh_cn.json │ │ └── zh_tw.json │ ├── models │ │ ├── block │ │ │ ├── accumulator │ │ │ │ └── block.json │ │ │ ├── alternator │ │ │ │ ├── block.json │ │ │ │ ├── block_old.json │ │ │ │ ├── item.json │ │ │ │ └── item_old.json │ │ │ ├── barbed_wire │ │ │ │ └── block.json │ │ │ ├── bioethanol │ │ │ │ └── block.json │ │ │ ├── biomass_pellet_block │ │ │ │ └── block.json │ │ │ ├── brass_electric_motor.json │ │ │ ├── chocolate_cake │ │ │ │ ├── cake.json │ │ │ │ ├── slice1.json │ │ │ │ ├── slice2.json │ │ │ │ ├── slice3.json │ │ │ │ ├── slice4.json │ │ │ │ ├── slice5.json │ │ │ │ └── slice6.json │ │ │ ├── connector │ │ │ │ ├── girder_base.json │ │ │ │ ├── large │ │ │ │ │ ├── none.json │ │ │ │ │ ├── passive.json │ │ │ │ │ ├── pull.json │ │ │ │ │ └── push.json │ │ │ │ ├── small │ │ │ │ │ ├── block.json │ │ │ │ │ ├── none.json │ │ │ │ │ ├── passive.json │ │ │ │ │ ├── pull.json │ │ │ │ │ └── push.json │ │ │ │ ├── small_light.json │ │ │ │ └── small_light │ │ │ │ │ ├── none.json │ │ │ │ │ ├── none_off.json │ │ │ │ │ ├── passive.json │ │ │ │ │ ├── passive_off.json │ │ │ │ │ ├── pull.json │ │ │ │ │ ├── pull_off.json │ │ │ │ │ ├── push.json │ │ │ │ │ └── push_off.json │ │ │ ├── copper_wire_casing │ │ │ │ └── block.json │ │ │ ├── creative_energy │ │ │ │ └── block.json │ │ │ ├── digital_adapter │ │ │ │ └── block.json │ │ │ ├── electric_motor.json │ │ │ ├── electric_motor │ │ │ │ ├── block.json │ │ │ │ ├── block_old.json │ │ │ │ ├── item.json │ │ │ │ └── item_old.json │ │ │ ├── electrum_block │ │ │ │ └── block.json │ │ │ ├── honey_cake │ │ │ │ ├── cake.json │ │ │ │ ├── slice1.json │ │ │ │ ├── slice2.json │ │ │ │ ├── slice3.json │ │ │ │ ├── slice4.json │ │ │ │ ├── slice5.json │ │ │ │ └── slice6.json │ │ │ ├── modular_accumulator │ │ │ │ ├── block_bottom.json │ │ │ │ ├── block_middle.json │ │ │ │ ├── block_single.json │ │ │ │ ├── block_top.json │ │ │ │ ├── dial.json │ │ │ │ └── guage.json │ │ │ ├── portable_energy_interface │ │ │ │ ├── block.json │ │ │ │ ├── block_middle.json │ │ │ │ ├── block_middle_powered.json │ │ │ │ ├── block_top.json │ │ │ │ └── item.json │ │ │ ├── redstone_connector │ │ │ │ ├── redstone_connector_input_off.json │ │ │ │ ├── redstone_connector_input_on.json │ │ │ │ ├── redstone_connector_off.json │ │ │ │ ├── redstone_connector_on.json │ │ │ │ ├── redstone_connector_output_off.json │ │ │ │ └── redstone_connector_output_on.json │ │ │ ├── redstone_relay │ │ │ │ ├── redstone_relay_off.json │ │ │ │ └── redstone_relay_on.json │ │ │ ├── rolling_mill │ │ │ │ ├── block-old.json │ │ │ │ ├── block.json │ │ │ │ └── item.json │ │ │ ├── seed_oil │ │ │ │ └── block.json │ │ │ └── tesla_coil │ │ │ │ ├── block.json │ │ │ │ └── powered.json │ │ ├── entity │ │ │ └── liquid_hat.json │ │ └── item │ │ │ ├── accumulator.json │ │ │ ├── alternator.json │ │ │ ├── barbed_wire.json │ │ │ ├── bioethanol_bucket.json │ │ │ ├── biomass.json │ │ │ ├── biomass_pellet.json │ │ │ ├── biomass_pellet_block.json │ │ │ ├── brass_rod.json │ │ │ ├── cake_base.json │ │ │ ├── cake_base_baked.json │ │ │ ├── capacitor.json │ │ │ ├── chocolate_cake.json │ │ │ ├── connector.json │ │ │ ├── copper_rod.json │ │ │ ├── copper_spool.json │ │ │ ├── copper_wire.json │ │ │ ├── creative_energy.json │ │ │ ├── diamond_grit.json │ │ │ ├── diamond_grit_sandpaper.json │ │ │ ├── digital_adapter.json │ │ │ ├── electric_motor.json │ │ │ ├── electrum_amulet.json │ │ │ ├── electrum_block.json │ │ │ ├── electrum_ingot.json │ │ │ ├── electrum_nugget.json │ │ │ ├── electrum_rod.json │ │ │ ├── electrum_sheet.json │ │ │ ├── electrum_spool.json │ │ │ ├── electrum_wire.json │ │ │ ├── festive_spool.json │ │ │ ├── furnace_burner.json │ │ │ ├── gold_rod.json │ │ │ ├── gold_spool.json │ │ │ ├── gold_wire.json │ │ │ ├── hammer │ │ │ └── overcharged_hammer_shine.json │ │ │ ├── heater.json │ │ │ ├── honey_cake.json │ │ │ ├── iron_rod.json │ │ │ ├── iron_spool.json.disabled │ │ │ ├── iron_wire.json │ │ │ ├── large_connector.json │ │ │ ├── modular_accumulator.json │ │ │ ├── multimeter.json │ │ │ ├── overcharged_alloy.json │ │ │ ├── overcharged_casing.json │ │ │ ├── overcharged_hammer.json │ │ │ ├── overcharged_hammer │ │ │ └── shine.json │ │ │ ├── portable_energy_interface.json │ │ │ ├── redstone_relay.json │ │ │ ├── rolling_mill.json │ │ │ ├── seed_oil_bucket.json │ │ │ ├── small_light_connector.json │ │ │ ├── spool.json │ │ │ ├── straw.json │ │ │ ├── tesla_coil.json │ │ │ └── zinc_sheet.json │ ├── ponder │ │ ├── accumulator.nbt │ │ ├── alternator.nbt │ │ ├── automate_rolling_mill.nbt │ │ ├── cc_electric_motor.nbt │ │ ├── electric_motor.nbt │ │ ├── liquid_blaze_burner.nbt │ │ ├── pei_redstone.nbt │ │ ├── pei_transfer.nbt │ │ ├── rolling_mill.nbt │ │ ├── tesla_coil.nbt │ │ └── tesla_coil_hurt.nbt │ ├── sounds.json │ ├── sounds │ │ ├── electric_charge.ogg │ │ ├── electric_motor_buzz.ogg │ │ ├── little_zap_1.ogg │ │ ├── little_zap_2.ogg │ │ ├── little_zap_3.ogg │ │ ├── loud_zap_1.ogg │ │ ├── loud_zap_2.ogg │ │ ├── loud_zap_3.ogg │ │ └── tesla_coil.ogg │ └── textures │ │ ├── block │ │ ├── accumulator │ │ │ ├── accumulator.png │ │ │ └── accumulator_old.png │ │ ├── alternator │ │ │ ├── alternator.png │ │ │ ├── alternator_old.png │ │ │ └── coil.png │ │ ├── barbed_wire │ │ │ └── block.png │ │ ├── biomass_pellet_block │ │ │ ├── bottom.png │ │ │ ├── side.png │ │ │ └── top.png │ │ ├── charger │ │ │ └── charger.png │ │ ├── chocolate_cake │ │ │ ├── bottom.png │ │ │ ├── inner.png │ │ │ ├── side.png │ │ │ └── top.png │ │ ├── connector │ │ │ ├── bulb.png │ │ │ ├── bulb_off.png │ │ │ ├── bulb_old_lit.png │ │ │ ├── connector.png │ │ │ ├── connector_gold.png │ │ │ ├── copper_none.png │ │ │ ├── copper_passive.png │ │ │ ├── copper_pull.png │ │ │ ├── copper_push.png │ │ │ ├── gold_none.png │ │ │ ├── large_none.png │ │ │ ├── large_pull.png │ │ │ └── large_push.png │ │ ├── copper_wire_casing │ │ │ ├── block.png │ │ │ └── block_connected.png │ │ ├── crude_burner │ │ │ ├── front.png │ │ │ ├── front_on.png │ │ │ ├── front_on.png.mcmeta │ │ │ └── side.png │ │ ├── digital_adapter │ │ │ └── block.png │ │ ├── electric_motor │ │ │ ├── brass_electric_motor.png │ │ │ ├── brass_electric_motor_back.png │ │ │ ├── brass_electric_motor_old.png │ │ │ ├── brass_motor.png │ │ │ └── brass_motor_sides.png │ │ ├── electrum_block │ │ │ └── block.png │ │ ├── furnace_burner │ │ │ ├── front.png │ │ │ └── front_on.png │ │ ├── heater │ │ │ └── heater.png │ │ ├── honey_cake │ │ │ ├── bottom.png │ │ │ ├── inner.png │ │ │ ├── side.png │ │ │ └── top.png │ │ ├── modular_accumulator │ │ │ ├── block.png │ │ │ ├── block_connected.png │ │ │ ├── block_connected_dev.png │ │ │ ├── block_connected_old.png │ │ │ ├── block_connected_old2.png │ │ │ ├── block_connected_variant1.png │ │ │ ├── block_connected_variant2.png │ │ │ ├── block_top.png │ │ │ ├── block_top_connected.png │ │ │ ├── block_top_connected_old.png │ │ │ ├── gauge.png │ │ │ └── gauge_old.png │ │ ├── overcharged_casing │ │ │ ├── overcharged_casing.png │ │ │ └── overcharged_casing_connected.png │ │ ├── portable_energy_interface │ │ │ └── block.png │ │ ├── redstone_connector │ │ │ ├── redstone_connector_base_off.png │ │ │ ├── redstone_connector_base_on.png │ │ │ ├── redstone_connector_off.png │ │ │ └── redstone_connector_on.png │ │ ├── redstone_relay │ │ │ ├── redstone_relay.png │ │ │ ├── redstone_relay_stone.png │ │ │ └── redstone_relay_stone_on.png │ │ ├── rolling_mill │ │ │ └── andesite_casing_short.png │ │ └── tesla_coil │ │ │ ├── lightning.png │ │ │ ├── lightning.png.mcmeta │ │ │ ├── lightning_new.png │ │ │ ├── lightning_new.png.mcmeta │ │ │ ├── tesla_coil.png │ │ │ └── tesla_coil_old.png │ │ ├── entity │ │ ├── liquid_hat.png │ │ ├── overcharged_hammer.png │ │ ├── overcharged_hammer_old.png │ │ ├── overcharged_hammer_shine.png │ │ ├── soda_can.png │ │ └── soda_can_old.png │ │ ├── fluid │ │ ├── bioethanol_flow.png │ │ ├── bioethanol_flow.png.mcmeta │ │ ├── bioethanol_still.png │ │ ├── bioethanol_still.png.mcmeta │ │ ├── seed_oil_flow.png │ │ ├── seed_oil_flow.png.mcmeta │ │ ├── seed_oil_still.png │ │ └── seed_oil_still.png.mcmeta │ │ ├── item │ │ ├── bioethanol_bucket.png │ │ ├── biomass.png │ │ ├── biomass_pellet.png │ │ ├── brass_rod.png │ │ ├── cake_base.png │ │ ├── cake_base_baked.png │ │ ├── capacitor.png │ │ ├── chocolate_cake.png │ │ ├── connector.png │ │ ├── connector_gold.png │ │ ├── connector_old.png │ │ ├── copper_rod.png │ │ ├── copper_spool.png │ │ ├── copper_wire.png │ │ ├── diamond_grit.png │ │ ├── diamond_grit_sandpaper.png │ │ ├── electrum_amulet.png │ │ ├── electrum_ingot.png │ │ ├── electrum_nugget.png │ │ ├── electrum_rod.png │ │ ├── electrum_sheet.png │ │ ├── electrum_spool.png │ │ ├── electrum_wire.png │ │ ├── festive_spool.png │ │ ├── gold_rod.png │ │ ├── gold_spool.png │ │ ├── gold_wire.png │ │ ├── honey_cake.png │ │ ├── iron_rod.png │ │ ├── iron_spool.png │ │ ├── iron_wire.png │ │ ├── large_connector.png │ │ ├── multimeter.png │ │ ├── overcharged_alloy.png │ │ ├── overcharged_capacitor.png │ │ ├── overcharged_hammer.png │ │ ├── seed_oil_bucket.png │ │ ├── small_light_connector.png │ │ ├── spool.png │ │ ├── straw.png │ │ └── zinc_sheet.png │ │ └── mob_effect │ │ └── shocking.png └── minecraft │ └── atlases │ └── blocks.json ├── createaddition.mixins.json ├── data ├── create │ ├── recipes │ │ └── crushing │ │ │ ├── ochrum.json │ │ │ ├── ochrum_recycling.json │ │ │ ├── tuff.json │ │ │ └── tuff_recycling.json │ └── tags │ │ ├── blocks │ │ ├── fan_processing_catalysts │ │ │ └── blasting.json │ │ └── fan_transparent.json │ │ └── items │ │ ├── sandpaper.json │ │ └── upright_on_belt.json ├── createaddition │ ├── create │ │ └── potato_projectile │ │ │ └── type │ │ │ ├── chocolate_cake.json │ │ │ └── honey_cake.json │ ├── damage_type │ │ ├── barbed_wire.json │ │ └── tesla_coil.json │ ├── loot_tables │ │ └── blocks │ │ │ ├── alternator.json │ │ │ ├── barbed_wire.json │ │ │ ├── biomass_pellet_block.json │ │ │ ├── connector.json │ │ │ ├── creative_energy.json │ │ │ ├── digital_adapter.json │ │ │ ├── electric_motor.json │ │ │ ├── large_connector.json │ │ │ ├── liquid_blaze_burner.json │ │ │ ├── modular_accumulator.json │ │ │ ├── portable_energy_interface.json │ │ │ ├── redstone_relay.json │ │ │ ├── rolling_mill.json │ │ │ ├── small_light_connector.json │ │ │ └── tesla_coil.json │ ├── recipes │ │ ├── charging │ │ │ ├── channeling.json │ │ │ ├── copper_block.json │ │ │ ├── copper_shingle_slab.json │ │ │ ├── copper_shingle_stairs.json │ │ │ ├── copper_shingles.json │ │ │ ├── cut_copper_block.json │ │ │ ├── cut_copper_slab.json │ │ │ ├── cut_copper_stairs.json │ │ │ ├── exposed_copper.json │ │ │ ├── exposed_copper_shingle_slab.json │ │ │ ├── exposed_copper_shingle_stairs.json │ │ │ ├── exposed_copper_shingles.json │ │ │ ├── exposed_cut_copper.json │ │ │ ├── exposed_cut_copper_slab.json │ │ │ ├── exposed_cut_copper_stairs.json │ │ │ ├── weathered_copper.json │ │ │ ├── weathered_copper_shingle_slab.json │ │ │ ├── weathered_copper_shingle_stairs.json │ │ │ ├── weathered_copper_shingles.json │ │ │ ├── weathered_cut_copper.json │ │ │ ├── weathered_cut_copper_slab.json │ │ │ └── weathered_cut_copper_stairs.json │ │ ├── compacting │ │ │ ├── biomass_pellet.json │ │ │ ├── cake_base.json │ │ │ └── seed_oil.json │ │ ├── compat │ │ │ ├── ae2 │ │ │ │ └── charged_certus_quartz.json │ │ │ ├── immersiveengineering │ │ │ │ ├── constantan.json │ │ │ │ ├── crushing │ │ │ │ │ ├── coal_coke.json │ │ │ │ │ ├── coke_block.json │ │ │ │ │ └── steel_ingot.json │ │ │ │ ├── fabric_sail.json │ │ │ │ ├── item_application │ │ │ │ │ ├── kiln_brick.json │ │ │ │ │ ├── leaded_concrete.json │ │ │ │ │ ├── light_engineering_block.json.disabled │ │ │ │ │ ├── redstone_engineering_block.json.disabled │ │ │ │ │ └── reinforced_blast_brick.json │ │ │ │ └── sphalerite.json │ │ │ ├── jeed │ │ │ │ └── shocking.json │ │ │ ├── mekanism │ │ │ │ ├── rose_quartz_enriching.json │ │ │ │ └── rose_quartz_metallurgic_infusing.json │ │ │ └── tconstruct │ │ │ │ ├── amethyst_bronze.json │ │ │ │ ├── blaze_blood.json │ │ │ │ ├── hepatizon.json │ │ │ │ ├── manyullyn.json │ │ │ │ ├── pig_iron.json │ │ │ │ ├── pig_iron_2.json │ │ │ │ ├── queens_slime.json │ │ │ │ ├── rose_gold.json │ │ │ │ ├── slimesteel.json │ │ │ │ └── tinkers_bronze.json │ │ ├── crafting │ │ │ ├── barbed_wire.json │ │ │ ├── biomass_pellet.json │ │ │ ├── biomass_pellet_block.json │ │ │ ├── capacitor_1.json │ │ │ ├── capacitor_2.json │ │ │ ├── copper_spool.json │ │ │ ├── diamond_grit_sandpaper.json │ │ │ ├── digital_adapter.json │ │ │ ├── electrum.json │ │ │ ├── electrum_amulet.json │ │ │ ├── electrum_block.json │ │ │ ├── electrum_ingot.json │ │ │ ├── electrum_nugget.json │ │ │ ├── electrum_spool.json │ │ │ ├── festive_spool.json │ │ │ ├── gold_spool.json │ │ │ ├── large_connector_electrum.json │ │ │ ├── large_connector_gold.json │ │ │ ├── modular_accumulator_electrum.json │ │ │ ├── modular_accumulator_gold.json │ │ │ ├── portable_energy_interface.json │ │ │ ├── redstone_relay.json │ │ │ ├── rolling_mill.json │ │ │ ├── small_connector_copper.json │ │ │ ├── small_light_connector.json │ │ │ └── spool.json │ │ ├── crushing │ │ │ └── diamond.json │ │ ├── filling │ │ │ ├── cake.json │ │ │ ├── chocolate_cake.json │ │ │ ├── honey_cake.json │ │ │ └── treated_wood_planks.json │ │ ├── liquid_burning │ │ │ ├── biodiesel.json │ │ │ ├── biofuel.json │ │ │ ├── compat │ │ │ │ └── thermal │ │ │ │ │ ├── heavy_oil.json │ │ │ │ │ ├── light_oil.json │ │ │ │ │ ├── refined_fuel.json │ │ │ │ │ └── tree_oil.json │ │ │ ├── creosote.json │ │ │ ├── crude_oil.json │ │ │ ├── diesel.json │ │ │ ├── ethanol.json │ │ │ ├── gasoline.json │ │ │ ├── lava.json │ │ │ └── plantoil.json │ │ ├── mechanical_crafting │ │ │ ├── alternator.json │ │ │ ├── electric_motor.json │ │ │ └── tesla_coil.json │ │ ├── mixing │ │ │ ├── bioethanol.json │ │ │ ├── biomass_from_crops.json │ │ │ ├── biomass_from_flowers.json │ │ │ ├── biomass_from_honeycomb.json │ │ │ ├── biomass_from_leaves.json │ │ │ ├── biomass_from_plant_foods.json │ │ │ ├── biomass_from_plants.json │ │ │ ├── biomass_from_saplings.json │ │ │ ├── biomass_from_sticks.json │ │ │ ├── electrum.json │ │ │ └── netherrack.json │ │ ├── pressing │ │ │ ├── aluminum_ingot.json │ │ │ ├── constantan_ingot.json │ │ │ ├── electrum_ingot.json │ │ │ ├── lead_ingot.json │ │ │ ├── nickel_ingot.json │ │ │ ├── silver_ingot.json │ │ │ ├── steel_ingot.json │ │ │ ├── uranium_ingot.json │ │ │ └── zinc_ingot.json │ │ ├── rolling │ │ │ ├── aluminum_ingot.json │ │ │ ├── aluminum_plate.json │ │ │ ├── brass_ingot.json │ │ │ ├── copper_ingot.json │ │ │ ├── copper_plate.json │ │ │ ├── electrum_ingot.json │ │ │ ├── electrum_plate.json │ │ │ ├── gold_ingot.json │ │ │ ├── gold_plate.json │ │ │ ├── iron_ingot.json │ │ │ ├── iron_plate.json │ │ │ ├── lead_plate.json │ │ │ ├── steel_ingot.json │ │ │ ├── steel_plate.json │ │ │ └── straw.json │ │ └── smoking │ │ │ └── cake_base_baked.json │ └── tags │ │ └── items │ │ ├── plant_foods.json │ │ ├── plants.json │ │ └── spools.json ├── forge │ └── tags │ │ ├── fluids │ │ ├── biofuel.json │ │ ├── creosote.json │ │ ├── crude_oil.json │ │ └── plantoil.json │ │ └── items │ │ ├── blocks │ │ └── electrum.json │ │ ├── dusts.json │ │ ├── dusts │ │ ├── diamond.json │ │ └── obsidian.json │ │ ├── fuels.json │ │ ├── fuels │ │ └── bio.json │ │ ├── ingots.json │ │ ├── ingots │ │ └── electrum.json │ │ ├── nuggets.json │ │ ├── nuggets │ │ └── electrum.json │ │ ├── plates.json │ │ ├── plates │ │ ├── electrum.json │ │ └── zinc.json │ │ ├── rods.json │ │ ├── rods │ │ ├── all_metal.json │ │ ├── brass.json │ │ ├── copper.json │ │ ├── electrum.json │ │ ├── gold.json │ │ └── iron.json │ │ ├── wires.json │ │ └── wires │ │ ├── all_metal.json │ │ ├── copper.json │ │ ├── electrum.json │ │ ├── gold.json │ │ └── iron.json └── minecraft │ └── tags │ ├── blocks │ └── mineable │ │ └── pickaxe.json │ ├── fluids │ └── water.json │ └── items │ └── beacon_payment_items.json └── pack.mcmeta /.factorypath: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Disable autocrlf on generated files, they always generate with LF 2 | # Add any extra files or paths here to make git stop saying they 3 | # are changed when only line endings change. 4 | src/generated/**/.cache/cache text eol=lf 5 | src/generated/**/*.json text eol=lf 6 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report_fabric.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Fabric Bug report 3 | about: Create bug template 4 | title: '' 5 | labels: bug, fabric 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 16 | **Additional context** 17 | - Mod version: 18 | - Fabric version: 19 | - Create version: 20 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report_forge.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Forge Bug report 3 | about: Create bug template 4 | title: '' 5 | labels: bug, forge 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 16 | **Additional context** 17 | - Mod version: 18 | - Forge version: 19 | - Create version: 20 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report_neoforge: -------------------------------------------------------------------------------- 1 | --- 2 | name: NeoForge Bug report 3 | about: Create bug template 4 | title: '' 5 | labels: bug, neoforge 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 16 | **Additional context** 17 | - Mod version: 18 | - NeoForge version: 19 | - Create version: 20 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggestion.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Suggestion 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: suggestion 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # eclipse 2 | bin 3 | *.launch 4 | .settings 5 | .metadata 6 | .classpath 7 | .project 8 | 9 | # idea 10 | out 11 | *.ipr 12 | *.iws 13 | *.iml 14 | .idea 15 | 16 | # gradle 17 | build 18 | .gradle 19 | 20 | # other 21 | eclipse 22 | run 23 | 24 | # Files from Forge MDK 25 | forge*changelog.txt 26 | server 27 | Minecraft 28 | changelog.txt 29 | CREDITS.txt 30 | /.apt_generated_tests/ 31 | -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- 1 | { 2 | "ExpandedNodes": [ 3 | "" 4 | ], 5 | "PreviewInSolutionExplorer": false 6 | } -------------------------------------------------------------------------------- /.vs/createaddition/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/.vs/createaddition/v16/.suo -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/.vs/slnx.sqlite -------------------------------------------------------------------------------- /2021-05-16_CC&A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/2021-05-16_CC&A.png -------------------------------------------------------------------------------- /alpha_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/alpha_items.png -------------------------------------------------------------------------------- /build.bat: -------------------------------------------------------------------------------- 1 | gradlew build 2 | pause -------------------------------------------------------------------------------- /cca_20230412a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/cca_20230412a.png -------------------------------------------------------------------------------- /createaddition_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/createaddition_items.png -------------------------------------------------------------------------------- /createaddition_items_20220401a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/createaddition_items_20220401a.png -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- 1 | files: 2 | - source: /src/main/resources/assets/createaddition/lang/en_us.json 3 | translation: /src/main/resources/assets/createaddition/lang/%locale_with_underscore%.json 4 | -------------------------------------------------------------------------------- /eclipse.bat: -------------------------------------------------------------------------------- 1 | gradlew eclipse -Dorg.gradle.java.home="C:/Program Files/Java/jdk1.8.0_191" -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | # Sets default memory used for gradle commands. Can be overridden by user or command line properties. 2 | # This is required to provide enough memory for the Minecraft decompilation process. 3 | org.gradle.jvmargs=-Xmx3G 4 | org.gradle.daemon=false 5 | 6 | minecraft_version = 1.20.1 7 | forge_version = 47.3.0 8 | 9 | mod_version = 1.3.1 10 | 11 | jei_minecraft_version = 1.20.1 12 | jei_version = 15.20.0.106 13 | 14 | create_version = 6.0.3-71 15 | ponder_version = 1.0.51 16 | flywheel_version = 1.0.1 17 | registrate_version = MC1.20-1.3.3 18 | 19 | forgegradle_version = 6.0.6 20 | mixingradle_version = 0.7-SNAPSHOT 21 | mixin_version = 0.8.5 22 | librarian_version = 1.+ 23 | parchment_version = 2023.06.26 24 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip 4 | networkTimeout=10000 5 | zipStoreBase=GRADLE_USER_HOME 6 | zipStorePath=wrapper/dists 7 | -------------------------------------------------------------------------------- /runClient.bat: -------------------------------------------------------------------------------- 1 | gradlew runClient 2 | pause -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | pluginManagement { 2 | repositories { 3 | gradlePluginPortal() 4 | maven { 5 | name = 'MinecraftForge' 6 | url = 'https://maven.minecraftforge.net/' 7 | } 8 | } 9 | } 10 | 11 | plugins { 12 | id 'org.gradle.toolchains.foojay-resolver-convention' version '0.5.0' 13 | } -------------------------------------------------------------------------------- /src/main/java/com/mrh0/createaddition/blocks/centrifugal_governor/CentrifugalGovernor.java: -------------------------------------------------------------------------------- 1 | package com.mrh0.createaddition.blocks.centrifugal_governor; 2 | 3 | public class CentrifugalGovernor { 4 | } 5 | -------------------------------------------------------------------------------- /src/main/java/com/mrh0/createaddition/blocks/connector/ConnectorType.java: -------------------------------------------------------------------------------- 1 | package com.mrh0.createaddition.blocks.connector; 2 | 3 | import com.mrh0.createaddition.config.Config; 4 | 5 | public enum ConnectorType { 6 | Small("small"), 7 | Large("large"); 8 | 9 | public final String name; 10 | 11 | ConnectorType(String name) { 12 | this.name = name; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/main/java/com/mrh0/createaddition/blocks/connector/base/ConnectorRenderer.java: -------------------------------------------------------------------------------- 1 | package com.mrh0.createaddition.blocks.connector.base; 2 | 3 | import com.mrh0.createaddition.rendering.WireNodeRenderer; 4 | 5 | import net.minecraft.client.renderer.blockentity.BlockEntityRendererProvider; 6 | 7 | 8 | public class ConnectorRenderer extends WireNodeRenderer { 9 | 10 | public ConnectorRenderer(BlockEntityRendererProvider.Context context) { 11 | super(context); 12 | } 13 | } 14 | 15 | -------------------------------------------------------------------------------- /src/main/java/com/mrh0/createaddition/blocks/digital_adapter/DigitalAdapterBlockItem.java: -------------------------------------------------------------------------------- 1 | package com.mrh0.createaddition.blocks.digital_adapter; 2 | 3 | import net.minecraft.world.item.BlockItem; 4 | import net.minecraft.world.level.block.Block; 5 | 6 | public class DigitalAdapterBlockItem extends BlockItem { 7 | public DigitalAdapterBlockItem(Block block, Properties props) { 8 | super(block, props); 9 | } 10 | 11 | // TODO: Implement this again 12 | /* 13 | @Override 14 | public void fillItemCategory(CreativeModeTab tab, NonNullList stacks) { 15 | if (tab == CreativeModeTab.TAB_SEARCH) { 16 | super.fillItemCategory(tab, stacks); 17 | } 18 | if(tab == ModGroup.MAIN && CreateAddition.CC_ACTIVE) { 19 | super.fillItemCategory(tab, stacks); 20 | } 21 | }*/ 22 | } 23 | -------------------------------------------------------------------------------- /src/main/java/com/mrh0/createaddition/blocks/digital_adapter/DigitalAdapterDisplaySource.java: -------------------------------------------------------------------------------- 1 | package com.mrh0.createaddition.blocks.digital_adapter; 2 | 3 | import com.simibubi.create.api.behaviour.display.DisplaySource; 4 | import com.simibubi.create.content.redstone.displayLink.DisplayLinkContext; 5 | import com.simibubi.create.content.redstone.displayLink.target.DisplayTargetStats; 6 | import net.minecraft.network.chat.MutableComponent; 7 | 8 | import java.util.List; 9 | 10 | public class DigitalAdapterDisplaySource extends DisplaySource { 11 | @Override 12 | public List provideText(DisplayLinkContext context, DisplayTargetStats stats) { 13 | if(context.getSourceBlockEntity() == null) return List.of(); 14 | if(context.getSourceBlockEntity() instanceof DigitalAdapterBlockEntity date) 15 | return date.textLines; 16 | return List.of(); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/main/java/com/mrh0/createaddition/blocks/digital_adapter/ISpeedControllerAdapter.java: -------------------------------------------------------------------------------- 1 | package com.mrh0.createaddition.blocks.digital_adapter; 2 | 3 | public interface ISpeedControllerAdapter { 4 | void setTargetSpeed(int speed); 5 | int getTargetSpeed(); 6 | } 7 | -------------------------------------------------------------------------------- /src/main/java/com/mrh0/createaddition/blocks/energy_meter/EnergyMeterRenderer.java: -------------------------------------------------------------------------------- 1 | /* 2 | package com.mrh0.createaddition.blocks.energy_meter; 3 | 4 | import com.mrh0.createaddition.rendering.WireNodeRenderer; 5 | import net.minecraft.client.renderer.blockentity.BlockEntityRendererProvider; 6 | 7 | public class EnergyMeterRenderer extends WireNodeRenderer { 8 | 9 | public EnergyMeterRenderer(BlockEntityRendererProvider.Context context) { 10 | super(context); 11 | } 12 | } 13 | 14 | */ -------------------------------------------------------------------------------- /src/main/java/com/mrh0/createaddition/blocks/redstone_relay/RedstoneRelayRenderer.java: -------------------------------------------------------------------------------- 1 | package com.mrh0.createaddition.blocks.redstone_relay; 2 | 3 | import com.mrh0.createaddition.rendering.WireNodeRenderer; 4 | 5 | import net.minecraft.client.renderer.blockentity.BlockEntityRendererProvider; 6 | 7 | public class RedstoneRelayRenderer extends WireNodeRenderer { 8 | 9 | public RedstoneRelayRenderer(BlockEntityRendererProvider.Context context) { 10 | super(context); 11 | } 12 | } 13 | 14 | -------------------------------------------------------------------------------- /src/main/java/com/mrh0/createaddition/blocks/sprinkler/SprinklerBlock.java: -------------------------------------------------------------------------------- 1 | package com.mrh0.createaddition.blocks.sprinkler; 2 | 3 | public class SprinklerBlock { 4 | } 5 | -------------------------------------------------------------------------------- /src/main/java/com/mrh0/createaddition/compat/computercraft/Helpers.java: -------------------------------------------------------------------------------- 1 | package com.mrh0.createaddition.compat.computercraft; 2 | 3 | import net.minecraft.core.Direction; 4 | 5 | public class Helpers { 6 | public static Direction nameToDir(String name) { 7 | return switch (name) { 8 | case "down", "bottom" -> Direction.DOWN; 9 | case "up", "top" -> Direction.UP; 10 | //case "north" -> Direction.NORTH; 11 | case "south" -> Direction.SOUTH; 12 | case "east" -> Direction.EAST; 13 | case "west" -> Direction.WEST; 14 | default -> Direction.NORTH; 15 | }; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/main/java/com/mrh0/createaddition/compat/jei/CARecipeCategory.java: -------------------------------------------------------------------------------- 1 | package com.mrh0.createaddition.compat.jei; 2 | 3 | import com.simibubi.create.compat.jei.category.CreateRecipeCategory; 4 | import net.minecraft.world.item.crafting.Recipe; 5 | 6 | public abstract class CARecipeCategory> extends CreateRecipeCategory { 7 | 8 | public CARecipeCategory(Info info) { 9 | super(info); 10 | } 11 | /* 12 | @Override 13 | public Component getTitle() { 14 | return new TranslatableComponent( CreateAddition.MODID + ".recipe." + name); 15 | } 16 | */ 17 | } 18 | -------------------------------------------------------------------------------- /src/main/java/com/mrh0/createaddition/config/ServerConfig.java: -------------------------------------------------------------------------------- 1 | package com.mrh0.createaddition.config; 2 | 3 | public class ServerConfig { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /src/main/java/com/mrh0/createaddition/debug/IDebugDrawer.java: -------------------------------------------------------------------------------- 1 | package com.mrh0.createaddition.debug; 2 | 3 | public interface IDebugDrawer { 4 | 5 | void drawDebug(); 6 | 7 | } 8 | -------------------------------------------------------------------------------- /src/main/java/com/mrh0/createaddition/effect/ShockingEffect.java: -------------------------------------------------------------------------------- 1 | package com.mrh0.createaddition.effect; 2 | 3 | import com.mrh0.createaddition.CreateAddition; 4 | 5 | import net.minecraft.resources.ResourceLocation; 6 | import net.minecraft.world.effect.MobEffect; 7 | import net.minecraft.world.effect.MobEffectCategory; 8 | 9 | 10 | public class ShockingEffect extends MobEffect { 11 | public ShockingEffect() { 12 | super(MobEffectCategory.HARMFUL, 15453236); 13 | //setRegistryName(new ResourceLocation(CreateAddition.MODID, "shocking")); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/main/java/com/mrh0/createaddition/energy/IEnergyProvider.java: -------------------------------------------------------------------------------- 1 | package com.mrh0.createaddition.energy; 2 | 3 | import net.minecraftforge.energy.IEnergyStorage; 4 | 5 | public interface IEnergyProvider { 6 | IEnergyStorage getEnergyStorage(); 7 | } 8 | -------------------------------------------------------------------------------- /src/main/java/com/mrh0/createaddition/energy/IMultiTileEnergyContainer.java: -------------------------------------------------------------------------------- 1 | package com.mrh0.createaddition.energy; 2 | 3 | import com.simibubi.create.foundation.blockEntity.IMultiBlockEntityContainer; 4 | 5 | public interface IMultiTileEnergyContainer extends IMultiBlockEntityContainer { } 6 | -------------------------------------------------------------------------------- /src/main/java/com/mrh0/createaddition/energy/NodeMovementBehaviour.java: -------------------------------------------------------------------------------- 1 | package com.mrh0.createaddition.energy; 2 | 3 | import com.simibubi.create.api.behaviour.movement.MovementBehaviour; 4 | import com.simibubi.create.content.contraptions.behaviour.MovementContext; 5 | 6 | public class NodeMovementBehaviour implements MovementBehaviour { 7 | 8 | @Override 9 | public void startMoving(MovementContext context) { 10 | // Mark this tileentity as a contraption. 11 | context.blockEntityData.putBoolean("contraption", true); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/main/java/com/mrh0/createaddition/event/ResourceReloadListener.java: -------------------------------------------------------------------------------- 1 | package com.mrh0.createaddition.event; 2 | 3 | import com.mrh0.createaddition.sound.CASoundScapes; 4 | import net.minecraft.server.packs.resources.ResourceManager; 5 | import net.minecraft.server.packs.resources.ResourceManagerReloadListener; 6 | 7 | public class ResourceReloadListener implements ResourceManagerReloadListener { 8 | @Override 9 | public void onResourceManagerReload(ResourceManager resourceManager) { 10 | CASoundScapes.invalidateAll(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/main/java/com/mrh0/createaddition/index/CAAdvancements.java: -------------------------------------------------------------------------------- 1 | package com.mrh0.createaddition.index; 2 | 3 | public class CAAdvancements { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /src/main/java/com/mrh0/createaddition/index/CAItemProperties.java: -------------------------------------------------------------------------------- 1 | package com.mrh0.createaddition.index; 2 | 3 | import com.mrh0.createaddition.CreateAddition; 4 | 5 | import net.minecraft.client.multiplayer.ClientLevel; 6 | import net.minecraft.client.renderer.item.ItemProperties; 7 | import net.minecraft.client.renderer.item.ItemPropertyFunction; 8 | import net.minecraft.resources.ResourceLocation; 9 | import net.minecraft.world.entity.LivingEntity; 10 | import net.minecraft.world.item.ItemStack; 11 | 12 | public class CAItemProperties { 13 | public static void register() { 14 | /*ItemProperties.register(CAItems.OVERCHARGED_HAMMER.get(), new ResourceLocation(CreateAddition.MODID, "charged"), new ItemPropertyFunction() { 15 | @Override 16 | public float call(ItemStack item, ClientLevel world, LivingEntity entity) { 17 | return 0; 18 | } 19 | });*/ 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/main/java/com/mrh0/createaddition/item/BiomassPellet.java: -------------------------------------------------------------------------------- 1 | package com.mrh0.createaddition.item; 2 | 3 | import net.minecraft.world.item.Item; 4 | import net.minecraft.world.item.ItemStack; 5 | import net.minecraft.world.item.crafting.RecipeType; 6 | 7 | public class BiomassPellet extends Item { 8 | 9 | public BiomassPellet(Properties props) { 10 | super(props); 11 | } 12 | 13 | @Override 14 | public int getBurnTime(ItemStack itemStack, RecipeType recipeType) { 15 | return 6400; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/main/java/com/mrh0/createaddition/item/BiomassPelletBlock.java: -------------------------------------------------------------------------------- 1 | package com.mrh0.createaddition.item; 2 | 3 | import com.mrh0.createaddition.index.CAItems; 4 | import net.minecraft.world.item.BlockItem; 5 | import net.minecraft.world.item.ItemStack; 6 | import net.minecraft.world.item.crafting.RecipeType; 7 | import net.minecraft.world.level.block.Block; 8 | 9 | public class BiomassPelletBlock extends BlockItem { 10 | 11 | public BiomassPelletBlock(Block pBlock, Properties pProperties) { 12 | super(pBlock, pProperties); 13 | } 14 | 15 | @Override 16 | public int getBurnTime(ItemStack itemStack, RecipeType recipeType) { 17 | return CAItems.BIOMASS_PELLET.get().getBurnTime(itemStack, recipeType) * 9; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/main/java/com/mrh0/createaddition/item/CADebuggerItem.java: -------------------------------------------------------------------------------- 1 | package com.mrh0.createaddition.item; 2 | 3 | import net.minecraft.world.InteractionResult; 4 | import net.minecraft.world.item.Item; 5 | import net.minecraft.world.item.context.UseOnContext; 6 | 7 | public class CADebuggerItem extends Item { 8 | 9 | public CADebuggerItem(Properties props) { 10 | super(props); 11 | } 12 | 13 | @Override 14 | public InteractionResult useOn(UseOnContext p_41427_) { 15 | return super.useOn(p_41427_); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/main/java/com/mrh0/createaddition/network/IObserveTileEntity.java: -------------------------------------------------------------------------------- 1 | package com.mrh0.createaddition.network; 2 | 3 | import net.minecraft.server.level.ServerPlayer; 4 | 5 | public interface IObserveTileEntity { 6 | public void onObserved(ServerPlayer player, ObservePacket pack); 7 | } 8 | -------------------------------------------------------------------------------- /src/main/java/com/mrh0/createaddition/trains/schedule/CASchedule.java: -------------------------------------------------------------------------------- 1 | package com.mrh0.createaddition.trains.schedule; 2 | 3 | import com.mrh0.createaddition.CreateAddition; 4 | import com.mrh0.createaddition.trains.schedule.condition.EnergyThresholdCondition; 5 | import com.simibubi.create.content.trains.schedule.Schedule; 6 | import com.simibubi.create.content.trains.schedule.condition.ScheduleWaitCondition; 7 | import net.createmod.catnip.data.Pair; 8 | 9 | import java.util.function.Supplier; 10 | 11 | public class CASchedule { 12 | static { 13 | registerCondition("energy_threshold", EnergyThresholdCondition::new); 14 | } 15 | 16 | private static void registerCondition(String name, Supplier factory) { 17 | Schedule.CONDITION_TYPES.add(Pair.of(CreateAddition.asResource(name), factory)); 18 | } 19 | 20 | public static void register() {} 21 | } 22 | -------------------------------------------------------------------------------- /src/main/java/com/mrh0/createaddition/util/ClientMinecraftWrapper.java: -------------------------------------------------------------------------------- 1 | package com.mrh0.createaddition.util; 2 | 3 | import net.minecraft.client.Minecraft; 4 | import net.minecraft.client.gui.Font; 5 | import net.minecraft.client.player.LocalPlayer; 6 | import net.minecraft.world.level.Level; 7 | 8 | public class ClientMinecraftWrapper { 9 | @SuppressWarnings("resource") 10 | public static Level getClientLevel() { 11 | return Minecraft.getInstance().level; 12 | } 13 | 14 | @SuppressWarnings("resource") 15 | public static Font getFont() { 16 | return Minecraft.getInstance().font; 17 | } 18 | 19 | public static LocalPlayer getPlayer() { 20 | return Minecraft.getInstance().player; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/main/java/com/mrh0/createaddition/util/IComparatorOverride.java: -------------------------------------------------------------------------------- 1 | package com.mrh0.createaddition.util; 2 | 3 | import net.minecraft.core.BlockPos; 4 | import net.minecraft.world.level.Level; 5 | import net.minecraft.world.level.block.entity.BlockEntity; 6 | 7 | public interface IComparatorOverride { 8 | public int getComparetorOverride(); 9 | 10 | public static int getComparetorOverride(Level worldIn, BlockPos pos) { 11 | BlockEntity te = worldIn.getBlockEntity(pos); 12 | if(te != null) { 13 | if(te instanceof IComparatorOverride) { 14 | return ((IComparatorOverride)te).getComparetorOverride(); 15 | } 16 | } 17 | return 5; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/createaddition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/META-INF/createaddition.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/blockstates/accumulator.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "facing=north": { 4 | "model": "createaddition:block/accumulator/block", 5 | "y": 90 6 | }, 7 | "facing=south": { 8 | "model": "createaddition:block/accumulator/block", 9 | "y": 270 10 | }, 11 | "facing=west": { 12 | "model": "createaddition:block/accumulator/block", 13 | "y": 0 14 | }, 15 | "facing=east": { 16 | "model": "createaddition:block/accumulator/block", 17 | "y": 180 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/blockstates/alternator.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "facing=down": { 4 | "model": "createaddition:block/alternator/block", 5 | "x": 270, "y": 90 6 | }, 7 | "facing=up": { 8 | "model": "createaddition:block/alternator/block", 9 | "x": 90, "y": 90 10 | }, 11 | "facing=north": { 12 | "model": "createaddition:block/alternator/block", 13 | "y": 180 14 | }, 15 | "facing=south": { 16 | "model": "createaddition:block/alternator/block", 17 | "y": 0 18 | }, 19 | "facing=west": { 20 | "model": "createaddition:block/alternator/block", 21 | "y": 90 22 | }, 23 | "facing=east": { 24 | "model": "createaddition:block/alternator/block", 25 | "y": 270 26 | } 27 | } 28 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/blockstates/bioethanol.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "createaddition:block/bioethanol/block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/blockstates/biomass_pellet_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "createaddition:block/biomass_pellet_block/block" } 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/blockstates/chocolate_cake.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "bites=0": { 4 | "model": "createaddition:block/chocolate_cake/cake" 5 | }, 6 | "bites=1": { 7 | "model": "createaddition:block/chocolate_cake/slice1" 8 | }, 9 | "bites=2": { 10 | "model": "createaddition:block/chocolate_cake/slice2" 11 | }, 12 | "bites=3": { 13 | "model": "createaddition:block/chocolate_cake/slice3" 14 | }, 15 | "bites=4": { 16 | "model": "createaddition:block/chocolate_cake/slice4" 17 | }, 18 | "bites=5": { 19 | "model": "createaddition:block/chocolate_cake/slice5" 20 | }, 21 | "bites=6": { 22 | "model": "createaddition:block/chocolate_cake/slice6" 23 | } 24 | } 25 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/blockstates/copper_wire_casing.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "createaddition:block/copper_wire_casing/block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/blockstates/creative_energy.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "createaddition:block/creative_energy/block" } 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/blockstates/digital_adapter.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "createaddition:block/digital_adapter/block" } 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/blockstates/electric_motor.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "facing=down": { 4 | "model": "createaddition:block/electric_motor/block", 5 | "x": 270, "y": 90 6 | }, 7 | "facing=up": { 8 | "model": "createaddition:block/electric_motor/block", 9 | "x": 90, "y": 90 10 | }, 11 | "facing=north": { 12 | "model": "createaddition:block/electric_motor/block", 13 | "y": 180 14 | }, 15 | "facing=south": { 16 | "model": "createaddition:block/electric_motor/block", 17 | "y": 0 18 | }, 19 | "facing=west": { 20 | "model": "createaddition:block/electric_motor/block", 21 | "y": 90 22 | }, 23 | "facing=east": { 24 | "model": "createaddition:block/electric_motor/block", 25 | "y": 270 26 | } 27 | } 28 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/blockstates/electrum_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "createaddition:block/electrum_block/block" } 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/blockstates/honey_cake.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "bites=0": { 4 | "model": "createaddition:block/honey_cake/cake" 5 | }, 6 | "bites=1": { 7 | "model": "createaddition:block/honey_cake/slice1" 8 | }, 9 | "bites=2": { 10 | "model": "createaddition:block/honey_cake/slice2" 11 | }, 12 | "bites=3": { 13 | "model": "createaddition:block/honey_cake/slice3" 14 | }, 15 | "bites=4": { 16 | "model": "createaddition:block/honey_cake/slice4" 17 | }, 18 | "bites=5": { 19 | "model": "createaddition:block/honey_cake/slice5" 20 | }, 21 | "bites=6": { 22 | "model": "createaddition:block/honey_cake/slice6" 23 | } 24 | } 25 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/blockstates/liquid_blaze_burner.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "create:block/blaze_burner/block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/blockstates/modular_accumulator.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "bottom=false,top=false": { 4 | "model": "createaddition:block/modular_accumulator/block_middle" 5 | }, 6 | "bottom=true,top=false": { 7 | "model": "createaddition:block/modular_accumulator/block_bottom" 8 | }, 9 | "bottom=false,top=true": { 10 | "model": "createaddition:block/modular_accumulator/block_top" 11 | }, 12 | "bottom=true,top=true": { 13 | "model": "createaddition:block/modular_accumulator/block_single" 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/blockstates/portable_energy_interface.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "facing=down": { 4 | "model": "createaddition:block/portable_energy_interface/block", 5 | "x": 180 6 | }, 7 | "facing=up": { 8 | "model": "createaddition:block/portable_energy_interface/block" 9 | }, 10 | "facing=north": { 11 | "model": "createaddition:block/portable_energy_interface/block", 12 | "x": 90 13 | }, 14 | "facing=south": { 15 | "model": "createaddition:block/portable_energy_interface/block", 16 | "x": 90, 17 | "y": 180 18 | }, 19 | "facing=west": { 20 | "model": "createaddition:block/portable_energy_interface/block", 21 | "x": 90, 22 | "y": 270 23 | }, 24 | "facing=east": { 25 | "model": "createaddition:block/portable_energy_interface/block", 26 | "x": 90, 27 | "y": 90 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/blockstates/rolling_mill.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "facing=north": { 4 | "model": "createaddition:block/rolling_mill/block", 5 | "y": 270 6 | }, 7 | "facing=south": { 8 | "model": "createaddition:block/rolling_mill/block", 9 | "y": 90 10 | }, 11 | "facing=west": { 12 | "model": "createaddition:block/rolling_mill/block", 13 | "y": 180 14 | }, 15 | "facing=east": { 16 | "model": "createaddition:block/rolling_mill/block", 17 | "y": 0 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/blockstates/seed_oil.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "createaddition:block/seed_oil/block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/block/bioethanol/block.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "createaddition:fluid/bioethanol_still" 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/block/biomass_pellet_block/block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "bottom": "createaddition:block/biomass_pellet_block/bottom", 5 | "top": "createaddition:block/biomass_pellet_block/top", 6 | "side": "createaddition:block/biomass_pellet_block/side", 7 | "particle": "createaddition:block/biomass_pellet_block/top" 8 | }, 9 | "elements": [ 10 | { 11 | "from": [0, 0, 0], 12 | "to": [16, 16, 16], 13 | "faces": { 14 | "down": {"texture": "#bottom", "cullface": "down"}, 15 | "up": {"texture": "#top", "cullface": "up"}, 16 | "north": {"texture": "#side", "cullface": "north"}, 17 | "east": {"texture": "#side", "cullface": "east"}, 18 | "south": {"texture": "#side", "cullface": "south"}, 19 | "west": {"texture": "#side", "cullface": "west"} 20 | } 21 | } 22 | ] 23 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/block/chocolate_cake/cake.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "createaddition:block/chocolate_cake/side", 4 | "bottom": "createaddition:block/chocolate_cake/bottom", 5 | "top": "createaddition:block/chocolate_cake/top", 6 | "side": "createaddition:block/chocolate_cake/side" 7 | }, 8 | "elements": [ 9 | { "from": [ 1, 0, 1 ], 10 | "to": [ 15, 8, 15 ], 11 | "faces": { 12 | "down": { "texture": "#bottom", "cullface": "down" }, 13 | "up": { "texture": "#top" }, 14 | "north": { "texture": "#side" }, 15 | "south": { "texture": "#side" }, 16 | "west": { "texture": "#side" }, 17 | "east": { "texture": "#side" } 18 | } 19 | } 20 | ] 21 | } 22 | -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/block/connector/small_light.json: -------------------------------------------------------------------------------- 1 | { 2 | "credit": "Made with Blockbench", 3 | "elements": [ 4 | { 5 | "from": [-0.5, -0.5, -0.5], 6 | "to": [0.5, 0.5, 0.5], 7 | "color": 6, 8 | "faces": { 9 | "north": {"uv": [0, 0, 1, 1], "texture": "#missing"}, 10 | "east": {"uv": [0, 0, 1, 1], "texture": "#missing"}, 11 | "south": {"uv": [0, 0, 1, 1], "texture": "#missing"}, 12 | "west": {"uv": [0, 0, 1, 1], "texture": "#missing"}, 13 | "up": {"uv": [0, 0, 1, 1], "texture": "#missing"}, 14 | "down": {"uv": [0, 0, 1, 1], "texture": "#missing"} 15 | } 16 | } 17 | ] 18 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/block/copper_wire_casing/block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "createaddition:block/copper_wire_casing/block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/block/digital_adapter/block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "createaddition:block/digital_adapter/block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/block/electrum_block/block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "createaddition:block/electrum_block/block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/block/honey_cake/cake.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "createaddition:block/honey_cake/side", 4 | "bottom": "createaddition:block/honey_cake/bottom", 5 | "top": "createaddition:block/honey_cake/top", 6 | "side": "createaddition:block/honey_cake/side" 7 | }, 8 | "elements": [ 9 | { "from": [ 1, 0, 1 ], 10 | "to": [ 15, 8, 15 ], 11 | "faces": { 12 | "down": { "texture": "#bottom", "cullface": "down" }, 13 | "up": { "texture": "#top" }, 14 | "north": { "texture": "#side" }, 15 | "south": { "texture": "#side" }, 16 | "west": { "texture": "#side" }, 17 | "east": { "texture": "#side" } 18 | } 19 | } 20 | ] 21 | } 22 | -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/block/honey_cake/slice1.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "createaddition:block/honey_cake/side", 4 | "bottom": "createaddition:block/honey_cake/bottom", 5 | "top": "createaddition:block/honey_cake/top", 6 | "side": "createaddition:block/honey_cake/side", 7 | "inside": "createaddition:block/honey_cake/inner" 8 | }, 9 | "elements": [ 10 | { "from": [ 3, 0, 1 ], 11 | "to": [ 15, 8, 15 ], 12 | "faces": { 13 | "down": { "texture": "#bottom", "cullface": "down" }, 14 | "up": { "texture": "#top" }, 15 | "north": { "texture": "#side" }, 16 | "south": { "texture": "#side" }, 17 | "west": { "texture": "#inside" }, 18 | "east": { "texture": "#side" } 19 | } 20 | } 21 | ] 22 | } 23 | -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/block/honey_cake/slice2.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "createaddition:block/honey_cake/side", 4 | "bottom": "createaddition:block/honey_cake/bottom", 5 | "top": "createaddition:block/honey_cake/top", 6 | "side": "createaddition:block/honey_cake/side", 7 | "inside": "createaddition:block/honey_cake/inner" 8 | }, 9 | "elements": [ 10 | { "from": [ 5, 0, 1 ], 11 | "to": [ 15, 8, 15 ], 12 | "faces": { 13 | "down": { "texture": "#bottom", "cullface": "down" }, 14 | "up": { "texture": "#top" }, 15 | "north": { "texture": "#side" }, 16 | "south": { "texture": "#side" }, 17 | "west": { "texture": "#inside" }, 18 | "east": { "texture": "#side" } 19 | } 20 | } 21 | ] 22 | } 23 | -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/block/honey_cake/slice3.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "createaddition:block/honey_cake/side", 4 | "bottom": "createaddition:block/honey_cake/bottom", 5 | "top": "createaddition:block/honey_cake/top", 6 | "side": "createaddition:block/honey_cake/side", 7 | "inside": "createaddition:block/honey_cake/inner" 8 | }, 9 | "elements": [ 10 | { "from": [ 7, 0, 1 ], 11 | "to": [ 15, 8, 15 ], 12 | "faces": { 13 | "down": { "texture": "#bottom", "cullface": "down" }, 14 | "up": { "texture": "#top" }, 15 | "north": { "texture": "#side" }, 16 | "south": { "texture": "#side" }, 17 | "west": { "texture": "#inside" }, 18 | "east": { "texture": "#side" } 19 | } 20 | } 21 | ] 22 | } 23 | -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/block/honey_cake/slice4.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "createaddition:block/honey_cake/side", 4 | "bottom": "createaddition:block/honey_cake/bottom", 5 | "top": "createaddition:block/honey_cake/top", 6 | "side": "createaddition:block/honey_cake/side", 7 | "inside": "createaddition:block/honey_cake/inner" 8 | }, 9 | "elements": [ 10 | { "from": [ 9, 0, 1 ], 11 | "to": [ 15, 8, 15 ], 12 | "faces": { 13 | "down": { "texture": "#bottom", "cullface": "down" }, 14 | "up": { "texture": "#top" }, 15 | "north": { "texture": "#side" }, 16 | "south": { "texture": "#side" }, 17 | "west": { "texture": "#inside" }, 18 | "east": { "texture": "#side" } 19 | } 20 | } 21 | ] 22 | } 23 | -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/block/honey_cake/slice5.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "createaddition:block/honey_cake/side", 4 | "bottom": "createaddition:block/honey_cake/bottom", 5 | "top": "createaddition:block/honey_cake/top", 6 | "side": "createaddition:block/honey_cake/side", 7 | "inside": "createaddition:block/honey_cake/inner" 8 | }, 9 | "elements": [ 10 | { "from": [ 11, 0, 1 ], 11 | "to": [ 15, 8, 15 ], 12 | "faces": { 13 | "down": { "texture": "#bottom", "cullface": "down" }, 14 | "up": { "texture": "#top" }, 15 | "north": { "texture": "#side" }, 16 | "south": { "texture": "#side" }, 17 | "west": { "texture": "#inside" }, 18 | "east": { "texture": "#side" } 19 | } 20 | } 21 | ] 22 | } 23 | -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/block/honey_cake/slice6.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "createaddition:block/honey_cake/side", 4 | "bottom": "createaddition:block/honey_cake/bottom", 5 | "top": "createaddition:block/honey_cake/top", 6 | "side": "createaddition:block/honey_cake/side", 7 | "inside": "createaddition:block/honey_cake/inner" 8 | }, 9 | "elements": [ 10 | { "from": [ 13, 0, 1 ], 11 | "to": [ 15, 8, 15 ], 12 | "faces": { 13 | "down": { "texture": "#bottom", "cullface": "down" }, 14 | "up": { "texture": "#top" }, 15 | "north": { "texture": "#side" }, 16 | "south": { "texture": "#side" }, 17 | "west": { "texture": "#inside" }, 18 | "east": { "texture": "#side" } 19 | } 20 | } 21 | ] 22 | } 23 | -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/block/modular_accumulator/dial.json: -------------------------------------------------------------------------------- 1 | { 2 | "credit": "Made with Blockbench", 3 | "textures": { 4 | "2": "createaddition:block/modular_accumulator/gauge" 5 | }, 6 | "elements": [ 7 | { 8 | "name": "GaugeDial", 9 | "from": [15.75, 5.5, 8], 10 | "to": [16.45, 6.5, 11.25], 11 | "rotation": {"angle": 0, "axis": "x", "origin": [16, 6, 8]}, 12 | "faces": { 13 | "north": {"uv": [4, 11, 5, 12], "rotation": 180, "texture": "#2"}, 14 | "east": {"uv": [2, 11, 5, 12], "rotation": 180, "texture": "#2"}, 15 | "south": {"uv": [4, 11, 5, 12], "rotation": 180, "texture": "#2"}, 16 | "west": {"uv": [2, 11, 5, 12], "rotation": 180, "texture": "#2"}, 17 | "up": {"uv": [2, 11, 5, 12], "rotation": 180, "texture": "#2"}, 18 | "down": {"uv": [2, 11, 5, 12], "rotation": 180, "texture": "#2"} 19 | } 20 | } 21 | ] 22 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/block/portable_energy_interface/block_middle.json: -------------------------------------------------------------------------------- 1 | { 2 | "credit": "Made with Blockbench", 3 | "textures": { 4 | "0": "createaddition:block/portable_energy_interface/block", 5 | "particle": "createaddition:block/portable_energy_interface/block" 6 | }, 7 | "elements": [ 8 | { 9 | "from": [2, 0, 2], 10 | "to": [14, 9, 14], 11 | "rotation": {"angle": 0, "axis": "y", "origin": [10, 8, 10]}, 12 | "faces": { 13 | "north": {"uv": [1, 3.5, 7, 8], "texture": "#0"}, 14 | "east": {"uv": [1, 3.5, 7, 8], "texture": "#0"}, 15 | "south": {"uv": [1, 3.5, 7, 8], "texture": "#0"}, 16 | "west": {"uv": [1, 3.5, 7, 8], "texture": "#0"}, 17 | "up": {"uv": [1.5, 3.5, 2, 4], "texture": "#0"} 18 | } 19 | } 20 | ], 21 | "groups": [ 22 | { 23 | "name": "Middle", 24 | "origin": [10, 22, 10], 25 | "children": [0] 26 | } 27 | ] 28 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/block/portable_energy_interface/block_middle_powered.json: -------------------------------------------------------------------------------- 1 | { 2 | "credit": "Made with Blockbench", 3 | "textures": { 4 | "0": "createaddition:block/portable_energy_interface/block", 5 | "particle": "createaddition:block/portable_energy_interface/block" 6 | }, 7 | "elements": [ 8 | { 9 | "from": [2, 0, 2], 10 | "to": [14, 9, 14], 11 | "rotation": {"angle": 0, "axis": "y", "origin": [10, 8, 10]}, 12 | "faces": { 13 | "north": {"uv": [9, 3.5, 15, 8], "texture": "#0"}, 14 | "east": {"uv": [9, 3.5, 15, 8], "texture": "#0"}, 15 | "south": {"uv": [9, 3.5, 15, 8], "texture": "#0"}, 16 | "west": {"uv": [9, 3.5, 15, 8], "texture": "#0"}, 17 | "up": {"uv": [1.5, 3.5, 2, 4], "texture": "#0"} 18 | } 19 | } 20 | ], 21 | "groups": [ 22 | { 23 | "name": "Middle", 24 | "origin": [10, 22, 10], 25 | "children": [0] 26 | } 27 | ] 28 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/block/seed_oil/block.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "createaddition:fluid/seed_oil_still" 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/barbed_wire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createaddition:block/barbed_wire/block" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/bioethanol_bucket.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/bioethanol_bucket" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/biomass.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/biomass" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/biomass_pellet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/biomass_pellet" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/brass_rod.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/brass_rod" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/cake_base.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/cake_base" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/cake_base_baked.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/cake_base_baked" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/capacitor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/capacitor" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/chocolate_cake.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/chocolate_cake" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/connector.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/connector" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/copper_rod.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/copper_rod" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/copper_spool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/copper_spool" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/copper_wire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/copper_wire" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/diamond_grit.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/diamond_grit" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/diamond_grit_sandpaper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/diamond_grit_sandpaper" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/electrum_amulet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/electrum_amulet" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/electrum_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/electrum_ingot" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/electrum_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/electrum_nugget" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/electrum_rod.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/electrum_rod" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/electrum_sheet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/electrum_sheet" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/electrum_spool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/electrum_spool" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/electrum_wire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/electrum_wire" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/festive_spool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/festive_spool" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/furnace_burner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createaddition:block/furnace_burner/block" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/gold_rod.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/gold_rod" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/gold_spool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/gold_spool" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/gold_wire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/gold_wire" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/honey_cake.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/honey_cake" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/iron_rod.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/iron_rod" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/iron_spool.json.disabled: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/iron_spool" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/iron_wire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/iron_wire" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/large_connector.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/large_connector" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/modular_accumulator.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createaddition:block/modular_accumulator/block_single" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/multimeter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/multimeter" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/overcharged_alloy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/overcharged_alloy" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/overcharged_hammer/shine.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "1": "minecraft:block/light_blue_stained_glass" 4 | }, 5 | "elements": [ 6 | { 7 | "name": "shine", 8 | "from": [3.5, 9.5, 1.5], 9 | "to": [12.5, 18.5, 14.5], 10 | "faces": { 11 | "north": {"uv": [3, 4, 15, 12], "texture": "#1"}, 12 | "east": {"uv": [3, 4, 15, 12], "texture": "#1"}, 13 | "south": {"uv": [3, 4, 15, 12], "texture": "#1"}, 14 | "west": {"uv": [3, 4, 15, 12], "texture": "#1"}, 15 | "up": {"uv": [3, 4, 15, 12], "rotation": 90, "texture": "#1"}, 16 | "down": {"uv": [3, 4, 15, 12], "rotation": 270, "texture": "#1"} 17 | } 18 | } 19 | ], 20 | "display": { 21 | "gui": { 22 | "rotation": [21, -157, 46], 23 | "translation": [-0.25, -0.5, 0], 24 | "scale": [0.7, 0.7, 0.7] 25 | } 26 | } 27 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/portable_energy_interface.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createaddition:block/portable_energy_interface/item" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/seed_oil_bucket.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/seed_oil_bucket" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/small_light_connector.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/small_light_connector" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/spool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/spool" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/straw.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/straw" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/models/item/zinc_sheet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0" : "createaddition:item/zinc_sheet" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/ponder/accumulator.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/ponder/accumulator.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/ponder/alternator.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/ponder/alternator.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/ponder/automate_rolling_mill.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/ponder/automate_rolling_mill.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/ponder/cc_electric_motor.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/ponder/cc_electric_motor.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/ponder/electric_motor.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/ponder/electric_motor.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/ponder/liquid_blaze_burner.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/ponder/liquid_blaze_burner.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/ponder/pei_redstone.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/ponder/pei_redstone.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/ponder/pei_transfer.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/ponder/pei_transfer.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/ponder/rolling_mill.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/ponder/rolling_mill.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/ponder/tesla_coil.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/ponder/tesla_coil.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/ponder/tesla_coil_hurt.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/ponder/tesla_coil_hurt.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/sounds.json: -------------------------------------------------------------------------------- 1 | { 2 | "electric_motor_buzz": { 3 | "sounds": [ 4 | "createaddition:electric_motor_buzz" 5 | ] 6 | }, 7 | "tesla_coil": { 8 | "sounds": [ 9 | "createaddition:tesla_coil" 10 | ] 11 | }, 12 | "electric_charge": { 13 | "sounds": [ 14 | "createaddition:electric_charge" 15 | ] 16 | }, 17 | "loud_zap": { 18 | "subtitle": "createaddition.subtitle.loud_zap", 19 | "sounds": [ 20 | "createaddition:loud_zap_1", 21 | "createaddition:loud_zap_2", 22 | "createaddition:loud_zap_3" 23 | ] 24 | }, 25 | "little_zap": { 26 | "subtitle": "createaddition.subtitle.little_zap", 27 | "sounds": [ 28 | "createaddition:little_zap_1", 29 | "createaddition:little_zap_2", 30 | "createaddition:little_zap_3" 31 | ] 32 | } 33 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/sounds/electric_charge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/sounds/electric_charge.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/sounds/electric_motor_buzz.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/sounds/electric_motor_buzz.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/sounds/little_zap_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/sounds/little_zap_1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/sounds/little_zap_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/sounds/little_zap_2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/sounds/little_zap_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/sounds/little_zap_3.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/sounds/loud_zap_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/sounds/loud_zap_1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/sounds/loud_zap_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/sounds/loud_zap_2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/sounds/loud_zap_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/sounds/loud_zap_3.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/sounds/tesla_coil.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/sounds/tesla_coil.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/accumulator/accumulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/accumulator/accumulator.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/accumulator/accumulator_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/accumulator/accumulator_old.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/alternator/alternator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/alternator/alternator.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/alternator/alternator_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/alternator/alternator_old.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/alternator/coil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/alternator/coil.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/barbed_wire/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/barbed_wire/block.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/biomass_pellet_block/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/biomass_pellet_block/bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/biomass_pellet_block/side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/biomass_pellet_block/side.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/biomass_pellet_block/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/biomass_pellet_block/top.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/charger/charger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/charger/charger.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/chocolate_cake/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/chocolate_cake/bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/chocolate_cake/inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/chocolate_cake/inner.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/chocolate_cake/side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/chocolate_cake/side.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/chocolate_cake/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/chocolate_cake/top.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/connector/bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/connector/bulb.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/connector/bulb_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/connector/bulb_off.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/connector/bulb_old_lit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/connector/bulb_old_lit.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/connector/connector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/connector/connector.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/connector/connector_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/connector/connector_gold.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/connector/copper_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/connector/copper_none.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/connector/copper_passive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/connector/copper_passive.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/connector/copper_pull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/connector/copper_pull.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/connector/copper_push.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/connector/copper_push.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/connector/gold_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/connector/gold_none.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/connector/large_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/connector/large_none.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/connector/large_pull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/connector/large_pull.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/connector/large_push.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/connector/large_push.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/copper_wire_casing/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/copper_wire_casing/block.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/copper_wire_casing/block_connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/copper_wire_casing/block_connected.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/crude_burner/front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/crude_burner/front.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/crude_burner/front_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/crude_burner/front_on.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/crude_burner/front_on.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "interpolate": true, 4 | "frametime": 10 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/crude_burner/side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/crude_burner/side.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/digital_adapter/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/digital_adapter/block.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/electric_motor/brass_electric_motor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/electric_motor/brass_electric_motor.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/electric_motor/brass_electric_motor_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/electric_motor/brass_electric_motor_back.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/electric_motor/brass_electric_motor_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/electric_motor/brass_electric_motor_old.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/electric_motor/brass_motor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/electric_motor/brass_motor.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/electric_motor/brass_motor_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/electric_motor/brass_motor_sides.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/electrum_block/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/electrum_block/block.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/furnace_burner/front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/furnace_burner/front.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/furnace_burner/front_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/furnace_burner/front_on.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/heater/heater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/heater/heater.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/honey_cake/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/honey_cake/bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/honey_cake/inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/honey_cake/inner.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/honey_cake/side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/honey_cake/side.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/honey_cake/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/honey_cake/top.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/modular_accumulator/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/modular_accumulator/block.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/modular_accumulator/block_connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/modular_accumulator/block_connected.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/modular_accumulator/block_connected_dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/modular_accumulator/block_connected_dev.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/modular_accumulator/block_connected_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/modular_accumulator/block_connected_old.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/modular_accumulator/block_connected_old2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/modular_accumulator/block_connected_old2.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/modular_accumulator/block_connected_variant1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/modular_accumulator/block_connected_variant1.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/modular_accumulator/block_connected_variant2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/modular_accumulator/block_connected_variant2.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/modular_accumulator/block_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/modular_accumulator/block_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/modular_accumulator/block_top_connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/modular_accumulator/block_top_connected.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/modular_accumulator/block_top_connected_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/modular_accumulator/block_top_connected_old.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/modular_accumulator/gauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/modular_accumulator/gauge.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/modular_accumulator/gauge_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/modular_accumulator/gauge_old.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/overcharged_casing/overcharged_casing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/overcharged_casing/overcharged_casing.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/overcharged_casing/overcharged_casing_connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/overcharged_casing/overcharged_casing_connected.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/portable_energy_interface/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/portable_energy_interface/block.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/redstone_connector/redstone_connector_base_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/redstone_connector/redstone_connector_base_off.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/redstone_connector/redstone_connector_base_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/redstone_connector/redstone_connector_base_on.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/redstone_connector/redstone_connector_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/redstone_connector/redstone_connector_off.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/redstone_connector/redstone_connector_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/redstone_connector/redstone_connector_on.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/redstone_relay/redstone_relay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/redstone_relay/redstone_relay.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/redstone_relay/redstone_relay_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/redstone_relay/redstone_relay_stone.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/redstone_relay/redstone_relay_stone_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/redstone_relay/redstone_relay_stone_on.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/rolling_mill/andesite_casing_short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/rolling_mill/andesite_casing_short.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/tesla_coil/lightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/tesla_coil/lightning.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/tesla_coil/lightning.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/tesla_coil/lightning_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/tesla_coil/lightning_new.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/tesla_coil/lightning_new.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/tesla_coil/tesla_coil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/tesla_coil/tesla_coil.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/block/tesla_coil/tesla_coil_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/block/tesla_coil/tesla_coil_old.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/entity/liquid_hat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/entity/liquid_hat.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/entity/overcharged_hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/entity/overcharged_hammer.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/entity/overcharged_hammer_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/entity/overcharged_hammer_old.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/entity/overcharged_hammer_shine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/entity/overcharged_hammer_shine.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/entity/soda_can.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/entity/soda_can.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/entity/soda_can_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/entity/soda_can_old.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/fluid/bioethanol_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/fluid/bioethanol_flow.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/fluid/bioethanol_flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/fluid/bioethanol_still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/fluid/bioethanol_still.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/fluid/bioethanol_still.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 4 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/fluid/seed_oil_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/fluid/seed_oil_flow.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/fluid/seed_oil_flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/fluid/seed_oil_still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/fluid/seed_oil_still.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/fluid/seed_oil_still.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 4 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/bioethanol_bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/bioethanol_bucket.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/biomass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/biomass.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/biomass_pellet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/biomass_pellet.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/brass_rod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/brass_rod.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/cake_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/cake_base.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/cake_base_baked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/cake_base_baked.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/capacitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/capacitor.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/chocolate_cake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/chocolate_cake.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/connector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/connector.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/connector_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/connector_gold.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/connector_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/connector_old.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/copper_rod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/copper_rod.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/copper_spool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/copper_spool.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/copper_wire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/copper_wire.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/diamond_grit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/diamond_grit.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/diamond_grit_sandpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/diamond_grit_sandpaper.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/electrum_amulet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/electrum_amulet.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/electrum_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/electrum_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/electrum_nugget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/electrum_nugget.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/electrum_rod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/electrum_rod.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/electrum_sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/electrum_sheet.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/electrum_spool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/electrum_spool.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/electrum_wire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/electrum_wire.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/festive_spool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/festive_spool.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/gold_rod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/gold_rod.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/gold_spool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/gold_spool.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/gold_wire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/gold_wire.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/honey_cake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/honey_cake.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/iron_rod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/iron_rod.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/iron_spool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/iron_spool.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/iron_wire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/iron_wire.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/large_connector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/large_connector.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/multimeter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/multimeter.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/overcharged_alloy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/overcharged_alloy.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/overcharged_capacitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/overcharged_capacitor.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/overcharged_hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/overcharged_hammer.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/seed_oil_bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/seed_oil_bucket.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/small_light_connector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/small_light_connector.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/spool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/spool.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/straw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/straw.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/item/zinc_sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/item/zinc_sheet.png -------------------------------------------------------------------------------- /src/main/resources/assets/createaddition/textures/mob_effect/shocking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrh0/createaddition/6a78c75a59ae817faf212d85e8616aa51548bbb0/src/main/resources/assets/createaddition/textures/mob_effect/shocking.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/atlases/blocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "sources": [ 3 | { 4 | "type": "single", 5 | "resource": "createaddition:fluid/bioethanol_flow" 6 | }, 7 | { 8 | "type": "single", 9 | "resource": "createaddition:fluid/bioethanol_still" 10 | }, 11 | { 12 | "type": "single", 13 | "resource": "createaddition:fluid/seed_oil_flow" 14 | }, 15 | { 16 | "type": "single", 17 | "resource": "createaddition:fluid/seed_oil_still" 18 | }, 19 | { 20 | "type": "single", 21 | "resource": "createaddition:entity/liquid_hat" 22 | }, 23 | { 24 | "type": "single", 25 | "resource": "createaddition:entity/soda_can" 26 | } 27 | ] 28 | } -------------------------------------------------------------------------------- /src/main/resources/createaddition.mixins.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": true, 3 | "priority": 1000, 4 | "package": "com.mrh0.createaddition.mixin", 5 | "compatibilityLevel": "JAVA_17", 6 | "mixins": [ 7 | "BlockMovementChecksMixin", 8 | "ContraptionMixin", 9 | "SpeedControllerTileEntityMixin" 10 | ], 11 | "minVersion": "0.8.5" 12 | } 13 | -------------------------------------------------------------------------------- /src/main/resources/data/create/recipes/crushing/ochrum.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:crushing", 3 | "ingredients": [ 4 | { 5 | "item": "create:ochrum" 6 | } 7 | ], 8 | "results": [ 9 | { 10 | "item": "create:crushed_raw_gold", 11 | "chance": 0.2 12 | }, 13 | { 14 | "item": "minecraft:gold_nugget", 15 | "chance": 0.2 16 | }, 17 | { 18 | "item": "createaddition:electrum_nugget", 19 | "chance": 0.2 20 | } 21 | ], 22 | "processingTime": 250 23 | } -------------------------------------------------------------------------------- /src/main/resources/data/create/recipes/crushing/ochrum_recycling.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:crushing", 3 | "ingredients": [ 4 | { 5 | "tag": "create:stone_types/ochrum" 6 | } 7 | ], 8 | "results": [ 9 | { 10 | "item": "create:crushed_raw_gold", 11 | "chance": 0.2 12 | }, 13 | { 14 | "item": "minecraft:gold_nugget", 15 | "chance": 0.2 16 | }, 17 | { 18 | "item": "createaddition:electrum_nugget", 19 | "chance": 0.2 20 | } 21 | ], 22 | "processingTime": 250 23 | } -------------------------------------------------------------------------------- /src/main/resources/data/create/recipes/crushing/tuff.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:crushing", 3 | "ingredients": [ 4 | { 5 | "item": "minecraft:tuff" 6 | } 7 | ], 8 | "results": [ 9 | { 10 | "item": "minecraft:flint", 11 | "chance": 0.25 12 | }, 13 | { 14 | "item": "minecraft:gold_nugget", 15 | "chance": 0.1 16 | }, 17 | { 18 | "item": "create:copper_nugget", 19 | "chance": 0.1 20 | }, 21 | { 22 | "item": "create:zinc_nugget", 23 | "chance": 0.1 24 | }, 25 | { 26 | "item": "minecraft:iron_nugget", 27 | "chance": 0.1 28 | }, 29 | { 30 | "item": "createaddition:electrum_nugget", 31 | "chance": 0.1 32 | } 33 | ], 34 | "processingTime": 350 35 | } -------------------------------------------------------------------------------- /src/main/resources/data/create/recipes/crushing/tuff_recycling.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:crushing", 3 | "ingredients": [ 4 | { 5 | "tag": "create:stone_types/tuff" 6 | } 7 | ], 8 | "results": [ 9 | { 10 | "item": "minecraft:flint", 11 | "chance": 0.25 12 | }, 13 | { 14 | "item": "minecraft:gold_nugget", 15 | "chance": 0.1 16 | }, 17 | { 18 | "item": "create:copper_nugget", 19 | "chance": 0.1 20 | }, 21 | { 22 | "item": "create:zinc_nugget", 23 | "chance": 0.1 24 | }, 25 | { 26 | "item": "minecraft:iron_nugget", 27 | "chance": 0.1 28 | }, 29 | { 30 | "item": "createaddition:electrum_nugget", 31 | "chance": 0.1 32 | } 33 | ], 34 | "processingTime": 350 35 | } -------------------------------------------------------------------------------- /src/main/resources/data/create/tags/blocks/fan_processing_catalysts/blasting.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:liquid_blaze_burner" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/create/tags/blocks/fan_transparent.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:liquid_blaze_burner" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/create/tags/items/sandpaper.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:diamond_grit_sandpaper" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/create/tags/items/upright_on_belt.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:cake_base", 5 | "createaddition:cake_base_baked", 6 | "createaddition:chocolate_cake", 7 | "createaddition:honey_cake", 8 | "minecraft:cake", 9 | "createaddition:seed_oil_bucket", 10 | "createaddition:bioethanol_bucket" 11 | ] 12 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/create/potato_projectile/type/chocolate_cake.json: -------------------------------------------------------------------------------- 1 | { 2 | "damage": 8, 3 | "items": "createaddition:chocolate_cake", 4 | "knockback": 0.1, 5 | "reload_ticks": 15, 6 | "render_mode": { 7 | "type": "create:tumble" 8 | }, 9 | "sticky": true, 10 | "velocity_multiplier": 1.1, 11 | "sound_pitch": 0.8 12 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/create/potato_projectile/type/honey_cake.json: -------------------------------------------------------------------------------- 1 | { 2 | "damage": 8, 3 | "items": "createaddition:honey_cake", 4 | "knockback": 0.1, 5 | "reload_ticks": 15, 6 | "render_mode": { 7 | "type": "create:tumble" 8 | }, 9 | "sticky": true, 10 | "velocity_multiplier": 1.0, 11 | "sound_pitch": 0.8 12 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/damage_type/barbed_wire.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.1, 3 | "message_id": "createaddition.barbed_wire", 4 | "scaling": "never" 5 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/damage_type/tesla_coil.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.1, 3 | "message_id": "createaddition.tesla_coil", 4 | "scaling": "never" 5 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/loot_tables/blocks/alternator.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "createaddition:alternator", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "createaddition:alternator" 11 | } 12 | ], 13 | "conditions": [ 14 | { 15 | "condition": "minecraft:survives_explosion" 16 | } 17 | ] 18 | } 19 | ] 20 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/loot_tables/blocks/barbed_wire.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "createaddition:barbed_wire", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "createaddition:barbed_wire" 11 | } 12 | ], 13 | "conditions": [ 14 | { 15 | "condition": "minecraft:survives_explosion" 16 | } 17 | ] 18 | } 19 | ] 20 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/loot_tables/blocks/biomass_pellet_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "createaddition:biomass_pellet_block", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "createaddition:biomass_pellet_block" 11 | } 12 | ], 13 | "conditions": [ 14 | { 15 | "condition": "minecraft:survives_explosion" 16 | } 17 | ] 18 | } 19 | ] 20 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/loot_tables/blocks/connector.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "createaddition:connector", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "createaddition:connector" 11 | } 12 | ], 13 | "conditions": [ 14 | { 15 | "condition": "minecraft:survives_explosion" 16 | } 17 | ] 18 | } 19 | ] 20 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/loot_tables/blocks/creative_energy.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "createaddition:creative_energy", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "createaddition:creative_energy" 11 | } 12 | ], 13 | "conditions": [ 14 | { 15 | "condition": "minecraft:survives_explosion" 16 | } 17 | ] 18 | } 19 | ] 20 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/loot_tables/blocks/digital_adapter.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "createaddition:digital_adapter", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "createaddition:digital_adapter" 11 | } 12 | ], 13 | "conditions": [ 14 | { 15 | "condition": "minecraft:survives_explosion" 16 | } 17 | ] 18 | } 19 | ] 20 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/loot_tables/blocks/electric_motor.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "createaddition:electric_motor", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "createaddition:electric_motor" 11 | } 12 | ], 13 | "conditions": [ 14 | { 15 | "condition": "minecraft:survives_explosion" 16 | } 17 | ] 18 | } 19 | ] 20 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/loot_tables/blocks/large_connector.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "createaddition:large_connector", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "createaddition:large_connector" 11 | } 12 | ], 13 | "conditions": [ 14 | { 15 | "condition": "minecraft:survives_explosion" 16 | } 17 | ] 18 | } 19 | ] 20 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/loot_tables/blocks/liquid_blaze_burner.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "bonus_rolls": 0.0, 6 | "entries": [ 7 | { 8 | "type": "minecraft:item", 9 | "conditions": [ 10 | { 11 | "condition": "minecraft:survives_explosion" 12 | } 13 | ], 14 | "name": "create:blaze_burner" 15 | } 16 | ], 17 | "rolls": 1.0 18 | }, 19 | { 20 | "bonus_rolls": 0.0, 21 | "entries": [ 22 | { 23 | "type": "minecraft:item", 24 | "name": "createaddition:straw" 25 | } 26 | ], 27 | "rolls": 1.0 28 | } 29 | ] 30 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/loot_tables/blocks/modular_accumulator.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "createaddition:modular_accumulator", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "createaddition:modular_accumulator" 11 | } 12 | ], 13 | "conditions": [ 14 | { 15 | "condition": "minecraft:survives_explosion" 16 | } 17 | ] 18 | } 19 | ] 20 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/loot_tables/blocks/portable_energy_interface.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "createaddition:portable_energy_interface", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "createaddition:portable_energy_interface" 11 | } 12 | ], 13 | "conditions": [ 14 | { 15 | "condition": "minecraft:survives_explosion" 16 | } 17 | ] 18 | } 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/loot_tables/blocks/redstone_relay.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "createaddition:redstone_relay", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "createaddition:redstone_relay" 11 | } 12 | ], 13 | "conditions": [ 14 | { 15 | "condition": "minecraft:survives_explosion" 16 | } 17 | ] 18 | } 19 | ] 20 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/loot_tables/blocks/rolling_mill.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "createaddition:rolling_mill", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "createaddition:rolling_mill" 11 | } 12 | ], 13 | "conditions": [ 14 | { 15 | "condition": "minecraft:survives_explosion" 16 | } 17 | ] 18 | } 19 | ] 20 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/loot_tables/blocks/small_light_connector.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "createaddition:small_light_connector", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "createaddition:small_light_connector" 11 | } 12 | ], 13 | "conditions": [ 14 | { 15 | "condition": "minecraft:survives_explosion" 16 | } 17 | ] 18 | } 19 | ] 20 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/loot_tables/blocks/tesla_coil.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "createaddition:tesla_coil", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "createaddition:tesla_coil" 11 | } 12 | ], 13 | "conditions": [ 14 | { 15 | "condition": "minecraft:survives_explosion" 16 | } 17 | ] 18 | } 19 | ] 20 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/charging/channeling.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:charging", 3 | "input": { 4 | "item": "minecraft:book", 5 | "count": 1 6 | }, 7 | "result": { 8 | "item": "minecraft:enchanted_book", 9 | "count": 1, 10 | "nbt": 11 | { 12 | "StoredEnchantments": 13 | [ 14 | { 15 | "id": "minecraft:channeling", 16 | "lvl": 1 17 | } 18 | ] 19 | } 20 | }, 21 | "energy": 10000000, 22 | "maxChargeRate": 1000 23 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/charging/copper_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:charging", 3 | "input": { 4 | "item": "minecraft:exposed_copper", 5 | "count": 1 6 | }, 7 | "result": { 8 | "item": "minecraft:copper_block", 9 | "count": 1 10 | }, 11 | "energy": 4000, 12 | "maxChargeRate": 200 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/charging/copper_shingle_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:charging", 3 | "input": { 4 | "item": "create:exposed_copper_shingle_slab", 5 | "count": 1 6 | }, 7 | "result": { 8 | "item": "create:copper_shingle_slab", 9 | "count": 1 10 | }, 11 | "energy": 4000, 12 | "maxChargeRate": 200 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/charging/copper_shingle_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:charging", 3 | "input": { 4 | "item": "create:exposed_copper_shingle_stairs", 5 | "count": 1 6 | }, 7 | "result": { 8 | "item": "create:copper_shingle_stairs", 9 | "count": 1 10 | }, 11 | "energy": 4000, 12 | "maxChargeRate": 200 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/charging/copper_shingles.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:charging", 3 | "input": { 4 | "item": "create:exposed_copper_shingles", 5 | "count": 1 6 | }, 7 | "result": { 8 | "item": "create:copper_shingles", 9 | "count": 1 10 | }, 11 | "energy": 4000, 12 | "maxChargeRate": 200 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/charging/cut_copper_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:charging", 3 | "input": { 4 | "item": "minecraft:exposed_cut_copper", 5 | "count": 1 6 | }, 7 | "result": { 8 | "item": "minecraft:cut_copper", 9 | "count": 1 10 | }, 11 | "energy": 4000, 12 | "maxChargeRate": 200 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/charging/cut_copper_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:charging", 3 | "input": { 4 | "item": "minecraft:exposed_cut_copper_slab", 5 | "count": 1 6 | }, 7 | "result": { 8 | "item": "minecraft:cut_copper_slab", 9 | "count": 1 10 | }, 11 | "energy": 4000, 12 | "maxChargeRate": 200 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/charging/cut_copper_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:charging", 3 | "input": { 4 | "item": "minecraft:exposed_cut_copper_stairs", 5 | "count": 1 6 | }, 7 | "result": { 8 | "item": "minecraft:cut_copper_stairs", 9 | "count": 1 10 | }, 11 | "energy": 4000, 12 | "maxChargeRate": 200 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/charging/exposed_copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:charging", 3 | "input": { 4 | "item": "minecraft:weathered_copper", 5 | "count": 1 6 | }, 7 | "result": { 8 | "item": "minecraft:exposed_copper", 9 | "count": 1 10 | }, 11 | "energy": 4000, 12 | "maxChargeRate": 200 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/charging/exposed_copper_shingle_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:charging", 3 | "input": { 4 | "item": "create:weathered_copper_shingle_slab", 5 | "count": 1 6 | }, 7 | "result": { 8 | "item": "create:exposed_copper_shingle_slab", 9 | "count": 1 10 | }, 11 | "energy": 4000, 12 | "maxChargeRate": 200 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/charging/exposed_copper_shingle_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:charging", 3 | "input": { 4 | "item": "create:weathered_copper_shingle_stairs", 5 | "count": 1 6 | }, 7 | "result": { 8 | "item": "create:exposed_copper_shingle_stairs", 9 | "count": 1 10 | }, 11 | "energy": 4000, 12 | "maxChargeRate": 200 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/charging/exposed_copper_shingles.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:charging", 3 | "input": { 4 | "item": "create:weathered_copper_shingles", 5 | "count": 1 6 | }, 7 | "result": { 8 | "item": "create:exposed_copper_shingles", 9 | "count": 1 10 | }, 11 | "energy": 4000, 12 | "maxChargeRate": 200 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/charging/exposed_cut_copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:charging", 3 | "input": { 4 | "item": "minecraft:weathered_cut_copper", 5 | "count": 1 6 | }, 7 | "result": { 8 | "item": "minecraft:exposed_cut_copper", 9 | "count": 1 10 | }, 11 | "energy": 4000, 12 | "maxChargeRate": 200 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/charging/exposed_cut_copper_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:charging", 3 | "input": { 4 | "item": "minecraft:weathered_cut_copper_slab", 5 | "count": 1 6 | }, 7 | "result": { 8 | "item": "minecraft:exposed_cut_copper_slab", 9 | "count": 1 10 | }, 11 | "energy": 4000, 12 | "maxChargeRate": 200 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/charging/exposed_cut_copper_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:charging", 3 | "input": { 4 | "item": "minecraft:weathered_cut_copper_stairs", 5 | "count": 1 6 | }, 7 | "result": { 8 | "item": "minecraft:exposed_cut_copper_stairs", 9 | "count": 1 10 | }, 11 | "energy": 4000, 12 | "maxChargeRate": 200 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/charging/weathered_copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:charging", 3 | "input": { 4 | "item": "minecraft:oxidized_copper", 5 | "count": 1 6 | }, 7 | "result": { 8 | "item": "minecraft:weathered_copper", 9 | "count": 1 10 | }, 11 | "energy": 4000, 12 | "maxChargeRate": 200 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/charging/weathered_copper_shingle_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:charging", 3 | "input": { 4 | "item": "create:oxidized_copper_shingle_slab", 5 | "count": 1 6 | }, 7 | "result": { 8 | "item": "create:weathered_copper_shingle_slab", 9 | "count": 1 10 | }, 11 | "energy": 4000, 12 | "maxChargeRate": 200 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/charging/weathered_copper_shingle_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:charging", 3 | "input": { 4 | "item": "create:oxidized_copper_shingle_stairs", 5 | "count": 1 6 | }, 7 | "result": { 8 | "item": "create:weathered_copper_shingle_stairs", 9 | "count": 1 10 | }, 11 | "energy": 4000, 12 | "maxChargeRate": 200 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/charging/weathered_copper_shingles.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:charging", 3 | "input": { 4 | "item": "create:oxidized_copper_shingles", 5 | "count": 1 6 | }, 7 | "result": { 8 | "item": "create:weathered_copper_shingles", 9 | "count": 1 10 | }, 11 | "energy": 4000, 12 | "maxChargeRate": 200 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/charging/weathered_cut_copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:charging", 3 | "input": { 4 | "item": "minecraft:oxidized_cut_copper", 5 | "count": 1 6 | }, 7 | "result": { 8 | "item": "minecraft:weathered_cut_copper", 9 | "count": 1 10 | }, 11 | "energy": 4000, 12 | "maxChargeRate": 200 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/charging/weathered_cut_copper_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:charging", 3 | "input": { 4 | "item": "minecraft:oxidized_cut_copper_slab", 5 | "count": 1 6 | }, 7 | "result": { 8 | "item": "minecraft:weathered_cut_copper_slab", 9 | "count": 1 10 | }, 11 | "energy": 4000, 12 | "maxChargeRate": 200 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/charging/weathered_cut_copper_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:charging", 3 | "input": { 4 | "item": "minecraft:oxidized_cut_copper_stairs", 5 | "count": 1 6 | }, 7 | "result": { 8 | "item": "minecraft:weathered_cut_copper_stairs", 9 | "count": 1 10 | }, 11 | "energy": 4000, 12 | "maxChargeRate": 200 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/compacting/biomass_pellet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:compacting", 3 | "ingredients": [ 4 | { 5 | "item": "createaddition:biomass" 6 | } 7 | ], 8 | "results": [ 9 | { 10 | "fluid": "minecraft:water", 11 | "amount": 50 12 | }, 13 | { 14 | "item": "createaddition:biomass_pellet", 15 | "count": 1 16 | } 17 | ] 18 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/compacting/cake_base.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:compacting", 3 | "ingredients": [ 4 | { 5 | "tag": "forge:eggs" 6 | }, 7 | { 8 | "item": "minecraft:sugar" 9 | }, 10 | { 11 | "item": "minecraft:sugar" 12 | }, 13 | { 14 | "item": "create:dough" 15 | } 16 | ], 17 | "results": [ 18 | { 19 | "item": "createaddition:cake_base" 20 | } 21 | ] 22 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/compacting/seed_oil.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:compacting", 3 | "ingredients": [ 4 | { 5 | "tag": "forge:seeds" 6 | } 7 | ], 8 | "results": [ 9 | { 10 | "fluid": "createaddition:seed_oil", 11 | "amount": 100 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/compat/ae2/charged_certus_quartz.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:charging", 3 | "input": { 4 | "item": "ae2:certus_quartz_crystal", 5 | "count": 1 6 | }, 7 | "result": { 8 | "item": "ae2:charged_certus_quartz_crystal", 9 | "count": 1 10 | }, 11 | "energy": 10000, 12 | "conditions": [{ 13 | "type": "forge:mod_loaded", 14 | "modid": "ae2" 15 | }] 16 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/compat/immersiveengineering/constantan.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:mixing", 3 | "ingredients": [ 4 | { 5 | "tag": "forge:ingots/nickel" 6 | }, 7 | { 8 | "tag": "forge:ingots/copper" 9 | } 10 | ], 11 | "results": [ 12 | { 13 | "item": "immersiveengineering:ingot_constantan", 14 | "count": 2 15 | } 16 | ], 17 | "heatRequirement": "heated", 18 | "conditions": [ 19 | { 20 | "type": "forge:mod_loaded", 21 | "modid": "immersiveengineering" 22 | } 23 | ] 24 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/compat/immersiveengineering/crushing/coal_coke.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:crushing", 3 | "ingredients": [ 4 | { 5 | "tag": "forge:storage_blocks/coal_coke" 6 | } 7 | ], 8 | "results": [ 9 | { 10 | "item": "immersiveengineering:dust_coke", 11 | "count": 9 12 | } 13 | ], 14 | "processingTime": 300, 15 | "conditions": [ 16 | { 17 | "type": "forge:mod_loaded", 18 | "modid": "immersiveengineering" 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/compat/immersiveengineering/crushing/coke_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:crushing", 3 | "ingredients": [ 4 | { 5 | "tag": "forge:coal_coke" 6 | } 7 | ], 8 | "results": [ 9 | { 10 | "item": "immersiveengineering:dust_coke" 11 | } 12 | ], 13 | "processingTime": 300, 14 | "conditions": [ 15 | { 16 | "type": "forge:mod_loaded", 17 | "modid": "immersiveengineering" 18 | } 19 | ] 20 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/compat/immersiveengineering/crushing/steel_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:crushing", 3 | "ingredients": [ 4 | { 5 | "tag": "forge:ingots/steel" 6 | } 7 | ], 8 | "results": [ 9 | { 10 | "item": "immersiveengineering:dust_steel" 11 | } 12 | ], 13 | "processingTime": 300, 14 | "conditions": [ 15 | { 16 | "type": "forge:mod_loaded", 17 | "modid": "immersiveengineering" 18 | } 19 | ] 20 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/compat/immersiveengineering/fabric_sail.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "FS", 5 | "SA" 6 | ], 7 | "key": { 8 | "F": { 9 | "tag": "forge:fabric_hemp" 10 | }, 11 | "S": { 12 | "tag": "forge:rods/wooden" 13 | }, 14 | "A": { 15 | "item": "create:andesite_alloy" 16 | } 17 | }, 18 | "result": { 19 | "item": "create:white_sail", 20 | "count": 2 21 | }, 22 | "conditions": [ { 23 | "type": "forge:mod_loaded", 24 | "modid": "immersiveengineering" 25 | } ] 26 | } 27 | 28 | -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/compat/immersiveengineering/item_application/kiln_brick.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:item_application", 3 | "ingredients": [ 4 | { 5 | "tag": "forge:sandstone" 6 | }, 7 | { 8 | "item": "minecraft:brick" 9 | } 10 | ], 11 | "results": [ 12 | { 13 | "item": "immersiveengineering:alloybrick" 14 | } 15 | ], 16 | "conditions": [ 17 | { 18 | "type": "forge:mod_loaded", 19 | "modid": "immersiveengineering" 20 | } 21 | ] 22 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/compat/immersiveengineering/item_application/leaded_concrete.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:item_application", 3 | "ingredients": [ 4 | { 5 | "item": "immersiveengineering:concrete" 6 | }, 7 | { 8 | "tag": "forge:plates/lead" 9 | } 10 | ], 11 | "results": [ 12 | { 13 | "item": "immersiveengineering:concrete_leaded" 14 | } 15 | ], 16 | "conditions": [ 17 | { 18 | "type": "forge:mod_loaded", 19 | "modid": "immersiveengineering" 20 | } 21 | ] 22 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/compat/immersiveengineering/item_application/light_engineering_block.json.disabled: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:item_application", 3 | "ingredients": [ 4 | { 5 | "item": "immersiveengineering:sheetmetal_iron" 6 | }, 7 | { 8 | "item": "create:precision_mechanism" 9 | } 10 | ], 11 | "results": [ 12 | { 13 | "item": "immersiveengineering:light_engineering" 14 | } 15 | ], 16 | "conditions": [ 17 | { 18 | "type": "forge:mod_loaded", 19 | "modid": "immersiveengineering" 20 | } 21 | ] 22 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/compat/immersiveengineering/item_application/redstone_engineering_block.json.disabled: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:item_application", 3 | "ingredients": [ 4 | { 5 | "item": "immersiveengineering:sheetmetal_iron" 6 | }, 7 | { 8 | "item": "create:electron_tube" 9 | } 10 | ], 11 | "results": [ 12 | { 13 | "item": "immersiveengineering:rs_engineering" 14 | } 15 | ], 16 | "conditions": [ 17 | { 18 | "type": "forge:mod_loaded", 19 | "modid": "immersiveengineering" 20 | } 21 | ] 22 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/compat/immersiveengineering/item_application/reinforced_blast_brick.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:item_application", 3 | "ingredients": [ 4 | { 5 | "item": "immersiveengineering:blastbrick" 6 | }, 7 | { 8 | "tag": "forge:plates/steel" 9 | } 10 | ], 11 | "results": [ 12 | { 13 | "item": "immersiveengineering:blastbrick_reinforced" 14 | } 15 | ], 16 | "conditions": [ 17 | { 18 | "type": "forge:mod_loaded", 19 | "modid": "immersiveengineering" 20 | } 21 | ] 22 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/compat/jeed/shocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "jeed:effect_provider", 3 | "effect":{ 4 | "id": "createaddition:shocking" 5 | }, 6 | "providers": [ 7 | { 8 | "item": "createaddition:tesla_coil" 9 | } 10 | ], 11 | "conditions": [ 12 | { 13 | "type": "forge:mod_loaded", 14 | "modid": "jeed" 15 | } 16 | ] 17 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/compat/mekanism/rose_quartz_enriching.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"mekanism:enriching", 3 | "input":{ 4 | "ingredient":{ 5 | "item":"create:rose_quartz" 6 | } 7 | }, 8 | "output":{ 9 | "item":"create:polished_rose_quartz" 10 | }, 11 | "conditions": [ 12 | { 13 | "type": "forge:mod_loaded", 14 | "modid": "mekanism" 15 | } 16 | ] 17 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/compat/mekanism/rose_quartz_metallurgic_infusing.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"mekanism:metallurgic_infusing", 3 | "itemInput":{ 4 | "ingredient":{ 5 | "tag":"forge:gems/quartz" 6 | } 7 | }, 8 | "chemicalInput":{ 9 | "amount":80, 10 | "tag":"mekanism:redstone" 11 | }, 12 | "output":{ 13 | "item":"create:rose_quartz" 14 | }, 15 | "conditions": [ 16 | { 17 | "type": "forge:mod_loaded", 18 | "modid": "mekanism" 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/compat/tconstruct/amethyst_bronze.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:mixing", 3 | "ingredients": [ 4 | { 5 | "tag": "forge:ingots/copper" 6 | }, 7 | { 8 | "item": "minecraft:amethyst_shard" 9 | } 10 | ], 11 | "results": [ 12 | { 13 | "item": "tconstruct:amethyst_bronze_ingot", 14 | "count": 1 15 | } 16 | ], 17 | "heatRequirement": "heated", 18 | "conditions": [ 19 | { 20 | "type": "forge:mod_loaded", 21 | "modid": "tconstruct" 22 | } 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/compat/tconstruct/blaze_blood.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:liquid_burning", 3 | "input": { 4 | "fluid": "tconstruct:blazing_blood", 5 | "amount": 1000 6 | }, 7 | "burnTime": 6400, 8 | "conditions": [ 9 | { 10 | "type": "forge:mod_loaded", 11 | "modid": "tconstruct" 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/compat/tconstruct/hepatizon.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:mixing", 3 | "ingredients": [ 4 | { 5 | "tag": "forge:obsidian" 6 | }, 7 | { 8 | "tag": "forge:ingots/cobalt" 9 | }, 10 | { 11 | "tag": "forge:ingots/copper" 12 | }, 13 | { 14 | "tag": "forge:ingots/copper" 15 | } 16 | ], 17 | "results": [ 18 | { 19 | "item": "tconstruct:hepatizon_ingot", 20 | "count": 2 21 | } 22 | ], 23 | "heatRequirement": "superheated", 24 | "conditions": [ 25 | { 26 | "type": "forge:mod_loaded", 27 | "modid": "tconstruct" 28 | } 29 | ] 30 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/compat/tconstruct/manyullyn.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:mixing", 3 | "ingredients": [ 4 | { 5 | "tag": "forge:ingots/cobalt" 6 | }, 7 | { 8 | "tag": "forge:ingots/cobalt" 9 | }, 10 | { 11 | "tag": "forge:ingots/cobalt" 12 | }, 13 | { 14 | "tag": "forge:ingots/netherite_scrap" 15 | } 16 | ], 17 | "results": [ 18 | { 19 | "item": "tconstruct:manyullyn_ingot", 20 | "count": 4 21 | } 22 | ], 23 | "heatRequirement": "superheated", 24 | "conditions": [ 25 | { 26 | "type": "forge:mod_loaded", 27 | "modid": "tconstruct" 28 | } 29 | ] 30 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/compat/tconstruct/pig_iron.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:mixing", 3 | "ingredients": [ 4 | { 5 | "tag": "forge:ingots/iron" 6 | }, 7 | { 8 | "tag": "forge:slimeball/blood" 9 | }, 10 | { 11 | "item": "minecraft:clay_ball" 12 | } 13 | ], 14 | "results": [ 15 | { 16 | "item": "tconstruct:pig_iron_ingot", 17 | "count": 2 18 | } 19 | ], 20 | "heatRequirement": "heated", 21 | "conditions": [ 22 | { 23 | "type": "forge:mod_loaded", 24 | "modid": "tconstruct" 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/compat/tconstruct/queens_slime.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:mixing", 3 | "ingredients": [ 4 | { 5 | "tag": "forge:ingots/cobalt" 6 | }, 7 | { 8 | "tag": "forge:ingots/gold" 9 | }, 10 | { 11 | "item": "minecraft:magma_cream" 12 | } 13 | ], 14 | "results": [ 15 | { 16 | "item": "tconstruct:queens_slime_ingot", 17 | "count": 2 18 | } 19 | ], 20 | "heatRequirement": "superheated", 21 | "conditions": [ 22 | { 23 | "type": "forge:mod_loaded", 24 | "modid": "tconstruct" 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/compat/tconstruct/rose_gold.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:mixing", 3 | "ingredients": [ 4 | { 5 | "tag": "forge:ingots/copper" 6 | }, 7 | { 8 | "tag": "forge:ingots/copper" 9 | }, 10 | { 11 | "tag": "forge:ingots/copper" 12 | }, 13 | { 14 | "tag": "forge:ingots/gold" 15 | } 16 | ], 17 | "results": [ 18 | { 19 | "item": "tconstruct:rose_gold_ingot", 20 | "count": 4 21 | } 22 | ], 23 | "heatRequirement": "heated", 24 | "conditions": [ 25 | { 26 | "type": "forge:mod_loaded", 27 | "modid": "tconstruct" 28 | } 29 | ] 30 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/compat/tconstruct/slimesteel.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:mixing", 3 | "ingredients": [ 4 | { 5 | "tag": "forge:ingots/iron" 6 | }, 7 | { 8 | "tag": "forge:slimeball/sky" 9 | }, 10 | { 11 | "tag": "tconstruct:seared_blocks" 12 | } 13 | ], 14 | "results": [ 15 | { 16 | "item": "tconstruct:slimesteel_ingot", 17 | "count": 2 18 | } 19 | ], 20 | "heatRequirement": "heated", 21 | "conditions": [ 22 | { 23 | "type": "forge:mod_loaded", 24 | "modid": "tconstruct" 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/compat/tconstruct/tinkers_bronze.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:mixing", 3 | "ingredients": [ 4 | { 5 | "tag": "forge:ingots/copper" 6 | }, 7 | { 8 | "tag": "forge:ingots/copper" 9 | }, 10 | { 11 | "tag": "forge:ingots/copper" 12 | }, 13 | { 14 | "tag": "forge:glass" 15 | } 16 | ], 17 | "results": [ 18 | { 19 | "item": "tconstruct:tinkers_bronze_ingot", 20 | "count": 3 21 | } 22 | ], 23 | "heatRequirement": "heated", 24 | "conditions": [ 25 | { 26 | "type": "forge:mod_loaded", 27 | "modid": "tconstruct" 28 | } 29 | ] 30 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/crafting/barbed_wire.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | 4 | "pattern": 5 | [" W ", 6 | "W W", 7 | " W "], 8 | "key": 9 | { 10 | "W": 11 | { 12 | "tag": "forge:wires/iron" 13 | } 14 | }, 15 | "result":{ 16 | "item": "createaddition:barbed_wire", 17 | "count": 2 18 | } 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/crafting/biomass_pellet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "createaddition:biomass_pellet_block" 6 | } 7 | ], 8 | "result":{ 9 | "item": "createaddition:biomass_pellet", 10 | "count": 9 11 | } 12 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/crafting/biomass_pellet_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | 4 | "pattern": 5 | ["PPP", 6 | "PPP", 7 | "PPP"], 8 | "key": 9 | { 10 | "P": 11 | { 12 | "item": "createaddition:biomass_pellet" 13 | } 14 | }, 15 | "result":{ 16 | "item": "createaddition:biomass_pellet_block", 17 | "count": 1 18 | } 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/crafting/capacitor_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | 4 | "pattern": 5 | ["Z", 6 | "C", 7 | "T"], 8 | "key": 9 | { 10 | "Z": 11 | { 12 | "tag": "forge:plates/zinc" 13 | }, 14 | "C": 15 | { 16 | "tag": "forge:plates/copper" 17 | }, 18 | "T": 19 | { 20 | "item": "minecraft:redstone_torch" 21 | } 22 | }, 23 | "result":{ 24 | "item": "createaddition:capacitor", 25 | "count": 1 26 | } 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/crafting/capacitor_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | 4 | "pattern": 5 | ["C", 6 | "Z", 7 | "T"], 8 | "key": 9 | { 10 | "Z": 11 | { 12 | "tag": "forge:plates/zinc" 13 | }, 14 | "C": 15 | { 16 | "tag": "forge:plates/copper" 17 | }, 18 | "T": 19 | { 20 | "item": "minecraft:redstone_torch" 21 | } 22 | }, 23 | "result":{ 24 | "item": "createaddition:capacitor", 25 | "count": 1 26 | } 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/crafting/copper_spool.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | 4 | "pattern": 5 | [" W ", 6 | "WSW", 7 | " W "], 8 | "key": 9 | { 10 | "W": 11 | { 12 | "tag": "forge:wires/copper" 13 | }, 14 | "S": 15 | { 16 | "item": "createaddition:spool" 17 | } 18 | }, 19 | "result":{ 20 | "item": "createaddition:copper_spool", 21 | "count": 1 22 | } 23 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/crafting/diamond_grit_sandpaper.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "minecraft:paper" 6 | }, 7 | { 8 | "tag": "forge:dusts/diamond" 9 | } 10 | ], 11 | "result":{ 12 | "item": "createaddition:diamond_grit_sandpaper", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/crafting/digital_adapter.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "tag": "computercraft:wired_modem" 6 | }, 7 | { 8 | "tag": "forge:plates/brass" 9 | }, 10 | { 11 | "item": "minecraft:redstone_torch" 12 | } 13 | ], 14 | "result":{ 15 | "item": "createaddition:digital_adapter", 16 | "count": 1 17 | }, 18 | "conditions": [ 19 | { 20 | "type": "forge:mod_loaded", 21 | "modid": "computercraft" 22 | } 23 | ] 24 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/crafting/electrum.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "createaddition:electrum_block" 6 | } 7 | ], 8 | "result":{ 9 | "item": "createaddition:electrum_ingot", 10 | "count": 9 11 | } 12 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/crafting/electrum_amulet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | 4 | "pattern": 5 | [" WW", 6 | "EEW", 7 | "GE "], 8 | "key": 9 | { 10 | "W": 11 | { 12 | "tag": "forge:wires/electrum" 13 | }, 14 | "E": 15 | { 16 | "tag": "forge:ingots/electrum" 17 | }, 18 | "G": 19 | { 20 | "tag": "forge:gems/emerald" 21 | } 22 | }, 23 | "result":{ 24 | "item": "createaddition:electrum_amulet", 25 | "count": 1 26 | } 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/crafting/electrum_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | 4 | "pattern": 5 | ["PPP", 6 | "PPP", 7 | "PPP"], 8 | "key": 9 | { 10 | "P": 11 | { 12 | "tag": "forge:ingots/electrum" 13 | } 14 | }, 15 | "result":{ 16 | "item": "createaddition:electrum_block", 17 | "count": 1 18 | } 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/crafting/electrum_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | 4 | "pattern": 5 | ["EEE", 6 | "EEE", 7 | "EEE"], 8 | "key": 9 | { 10 | "E": 11 | { 12 | "tag": "forge:nuggets/electrum" 13 | } 14 | }, 15 | "result":{ 16 | "item": "createaddition:electrum_ingot", 17 | "count": 1 18 | } 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/crafting/electrum_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "createaddition:electrum_ingot" 6 | } 7 | ], 8 | "result":{ 9 | "item": "createaddition:electrum_nugget", 10 | "count": 9 11 | } 12 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/crafting/electrum_spool.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | 4 | "pattern": 5 | [" W ", 6 | "WSW", 7 | " W "], 8 | "key": 9 | { 10 | "W": 11 | { 12 | "tag": "forge:wires/electrum" 13 | }, 14 | "S": 15 | { 16 | "item": "createaddition:spool" 17 | } 18 | }, 19 | "result":{ 20 | "item": "createaddition:electrum_spool", 21 | "count": 1 22 | } 23 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/crafting/festive_spool.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "createaddition:copper_spool" 6 | }, 7 | { 8 | "tag": "forge:dusts/redstone" 9 | }, 10 | { 11 | "item": "createaddition:biomass" 12 | } 13 | ], 14 | "result":{ 15 | "item": "createaddition:festive_spool", 16 | "count": 1 17 | } 18 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/crafting/gold_spool.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | 4 | "pattern": 5 | [" W ", 6 | "WSW", 7 | " W "], 8 | "key": 9 | { 10 | "W": 11 | { 12 | "tag": "forge:wires/gold" 13 | }, 14 | "S": 15 | { 16 | "item": "createaddition:spool" 17 | } 18 | }, 19 | "result":{ 20 | "item": "createaddition:gold_spool", 21 | "count": 1 22 | } 23 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/crafting/large_connector_electrum.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "tag": "forge:rods/electrum" 6 | }, 7 | { 8 | "item": "create:andesite_alloy" 9 | }, 10 | { 11 | "item": "create:andesite_alloy" 12 | }, 13 | { 14 | "tag": "forge:slimeballs" 15 | } 16 | ], 17 | "result":{ 18 | "item": "createaddition:large_connector", 19 | "count": 2 20 | } 21 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/crafting/large_connector_gold.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "tag": "forge:rods/gold" 6 | }, 7 | { 8 | "item": "create:andesite_alloy" 9 | }, 10 | { 11 | "item": "create:andesite_alloy" 12 | }, 13 | { 14 | "tag": "forge:slimeballs" 15 | } 16 | ], 17 | "result":{ 18 | "item": "createaddition:large_connector", 19 | "count": 2 20 | } 21 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/crafting/modular_accumulator_electrum.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": 4 | [" R ", 5 | "CBC", 6 | " W "], 7 | "key": 8 | { 9 | "R": 10 | { 11 | "tag": "forge:rods/copper" 12 | }, 13 | "B": 14 | { 15 | "item": "create:brass_casing" 16 | }, 17 | "C": 18 | { 19 | "item": "createaddition:capacitor" 20 | }, 21 | "W": 22 | { 23 | "tag": "forge:wires/electrum" 24 | } 25 | }, 26 | "result":{ 27 | "item": "createaddition:modular_accumulator", 28 | "count": 1 29 | } 30 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/crafting/modular_accumulator_gold.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": 4 | [" R ", 5 | "CBC", 6 | " W "], 7 | "key": 8 | { 9 | "R": 10 | { 11 | "tag": "forge:rods/copper" 12 | }, 13 | "B": 14 | { 15 | "item": "create:brass_casing" 16 | }, 17 | "C": 18 | { 19 | "item": "createaddition:capacitor" 20 | }, 21 | "W": 22 | { 23 | "tag": "forge:wires/gold" 24 | } 25 | }, 26 | "result":{ 27 | "item": "createaddition:modular_accumulator", 28 | "count": 1 29 | } 30 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/crafting/portable_energy_interface.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "create:brass_casing" 6 | }, 7 | { 8 | "item": "create:chute" 9 | }, 10 | { 11 | "item": "createaddition:copper_spool" 12 | } 13 | ], 14 | "result": { 15 | "item": "createaddition:portable_energy_interface" 16 | } 17 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/crafting/redstone_relay.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | 4 | "pattern": 5 | [" R ", 6 | "CEC", 7 | "SSS"], 8 | "key": 9 | { 10 | "R": 11 | { 12 | "tag": "forge:dusts/redstone" 13 | }, 14 | "S": 15 | { 16 | "tag": "forge:stone" 17 | }, 18 | "C": 19 | { 20 | "item": "createaddition:connector" 21 | }, 22 | "E": 23 | { 24 | "item": "create:electron_tube" 25 | } 26 | }, 27 | "result":{ 28 | "item": "createaddition:redstone_relay", 29 | "count": 1 30 | } 31 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/crafting/rolling_mill.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | 4 | "pattern": 5 | ["PSP", 6 | "ASA", 7 | "ACA"], 8 | "key": 9 | { 10 | "P": 11 | { 12 | "tag": "forge:plates/iron" 13 | }, 14 | "S": 15 | { 16 | "item": "create:shaft" 17 | }, 18 | "A": 19 | { 20 | "item": "create:andesite_alloy" 21 | }, 22 | "C": 23 | { 24 | "item": "create:andesite_casing" 25 | } 26 | }, 27 | "result":{ 28 | "item": "createaddition:rolling_mill", 29 | "count": 1 30 | } 31 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/crafting/small_connector_copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "tag": "forge:rods/copper" 6 | }, 7 | { 8 | "item": "create:andesite_alloy" 9 | }, 10 | { 11 | "tag": "forge:slimeballs" 12 | } 13 | ], 14 | "result":{ 15 | "item": "createaddition:connector", 16 | "count": 3 17 | } 18 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/crafting/small_light_connector.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "tag": "forge:wires/iron" 6 | }, 7 | { 8 | "tag": "forge:glass" 9 | }, 10 | { 11 | "item": "createaddition:connector" 12 | } 13 | ], 14 | "result":{ 15 | "item": "createaddition:small_light_connector", 16 | "count": 1 17 | } 18 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/crafting/spool.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | 4 | "pattern": 5 | ["P", 6 | "N", 7 | "P"], 8 | "key": 9 | { 10 | "P": 11 | { 12 | "tag": "forge:plates/iron" 13 | }, 14 | "N": 15 | { 16 | "tag": "forge:nuggets/iron" 17 | } 18 | }, 19 | "result":{ 20 | "item": "createaddition:spool", 21 | "count": 16 22 | } 23 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/crushing/diamond.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:crushing", 3 | "ingredients": [ 4 | { 5 | "tag": "forge:gems/diamond" 6 | } 7 | ], 8 | "results": [ 9 | { 10 | "item": "createaddition:diamond_grit" 11 | } 12 | ], 13 | "processingTime": 300, 14 | "conditions": [ 15 | { 16 | "value": { 17 | "tag": "forge:gems/diamond", 18 | "type": "forge:tag_empty" 19 | }, 20 | "type": "forge:not" 21 | } 22 | ] 23 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/filling/cake.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:filling", 3 | "ingredients": [ 4 | { 5 | "item": "createaddition:cake_base_baked" 6 | }, 7 | { 8 | "fluidTag": "forge:milk", 9 | "nbt": {}, 10 | "amount": 1000 11 | } 12 | ], 13 | "results": [ 14 | { 15 | "item": "minecraft:cake" 16 | } 17 | ] 18 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/filling/chocolate_cake.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:filling", 3 | "ingredients": [ 4 | { 5 | "item": "createaddition:cake_base_baked" 6 | }, 7 | { 8 | "fluid": "create:chocolate", 9 | "nbt": {}, 10 | "amount": 500 11 | } 12 | ], 13 | "results": [ 14 | { 15 | "item": "createaddition:chocolate_cake" 16 | } 17 | ] 18 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/filling/honey_cake.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:filling", 3 | "ingredients": [ 4 | { 5 | "item": "createaddition:cake_base_baked" 6 | }, 7 | { 8 | "fluidTag": "forge:honey", 9 | "nbt": {}, 10 | "amount": 500 11 | } 12 | ], 13 | "results": [ 14 | { 15 | "item": "createaddition:honey_cake" 16 | } 17 | ] 18 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/filling/treated_wood_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:filling", 3 | "ingredients": [ 4 | { 5 | "tag": "minecraft:planks" 6 | }, 7 | { 8 | "fluid": "immersiveengineering:creosote", 9 | "amount": 125 10 | } 11 | ], 12 | "results": [ 13 | { 14 | "item": "immersiveengineering:treated_wood_horizontal" 15 | } 16 | ], 17 | "conditions": [ 18 | { 19 | "type": "forge:mod_loaded", 20 | "modid": "immersiveengineering" 21 | } 22 | ] 23 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/liquid_burning/biodiesel.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:liquid_burning", 3 | "input": { 4 | "fluidTag": "forge:biodiesel", 5 | "amount": 1000 6 | }, 7 | "burnTime": 24000, 8 | "superheated": true, 9 | "conditions": [ 10 | { 11 | "fluidTag": "forge:biodiesel", 12 | "type": "createaddition:has_fluid_tag" 13 | } 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/liquid_burning/biofuel.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:liquid_burning", 3 | "input": { 4 | "fluidTag": "forge:biofuel", 5 | "amount": 1000 6 | }, 7 | "burnTime": 24000, 8 | "superheated": true 9 | } 10 | -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/liquid_burning/compat/thermal/heavy_oil.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:liquid_burning", 3 | "input": { 4 | "fluid": "thermal:heavy_oil", 5 | "amount": 1000 6 | }, 7 | "burnTime": 9600, 8 | "conditions": [ 9 | { 10 | "type": "forge:mod_loaded", 11 | "modid": "thermal" 12 | } 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/liquid_burning/compat/thermal/light_oil.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:liquid_burning", 3 | "input": { 4 | "fluid": "thermal:light_oil", 5 | "amount": 1000 6 | }, 7 | "burnTime": 9600, 8 | "conditions": [ 9 | { 10 | "type": "forge:mod_loaded", 11 | "modid": "thermal" 12 | } 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/liquid_burning/compat/thermal/refined_fuel.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:liquid_burning", 3 | "input": { 4 | "fluid": "thermal:refined_fuel", 5 | "amount": 1000 6 | }, 7 | "burnTime": 24000, 8 | "superheated": true, 9 | "conditions": [ 10 | { 11 | "type": "forge:mod_loaded", 12 | "modid": "thermal" 13 | } 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/liquid_burning/compat/thermal/tree_oil.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:liquid_burning", 3 | "input": { 4 | "fluid": "thermal:tree_oil", 5 | "amount": 1000 6 | }, 7 | "burnTime": 4800, 8 | "conditions": [ 9 | { 10 | "type": "forge:mod_loaded", 11 | "modid": "thermal" 12 | } 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/liquid_burning/creosote.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:liquid_burning", 3 | "input": { 4 | "fluidTag": "forge:creosote", 5 | "amount": 1000 6 | }, 7 | "burnTime": 4800, 8 | "conditions": [ 9 | { 10 | "fluidTag": "forge:creosote", 11 | "type": "createaddition:has_fluid_tag" 12 | } 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/liquid_burning/crude_oil.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:liquid_burning", 3 | "input": { 4 | "fluidTag": "forge:crude_oil", 5 | "amount": 1000 6 | }, 7 | "burnTime": 9600, 8 | "conditions": [ 9 | { 10 | "fluidTag": "forge:crude_oil", 11 | "type": "createaddition:has_fluid_tag" 12 | } 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/liquid_burning/diesel.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:liquid_burning", 3 | "input": { 4 | "fluidTag": "forge:diesel", 5 | "amount": 1000 6 | }, 7 | "burnTime": 48000, 8 | "superheated": true, 9 | "conditions": [ 10 | { 11 | "fluidTag": "forge:diesel", 12 | "type": "createaddition:has_fluid_tag" 13 | } 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/liquid_burning/ethanol.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:liquid_burning", 3 | "input": { 4 | "fluidTag": "forge:ethanol", 5 | "amount": 1000 6 | }, 7 | "burnTime": 6000, 8 | "conditions": [ 9 | { 10 | "fluidTag": "forge:ethanol", 11 | "type": "createaddition:has_fluid_tag" 12 | } 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/liquid_burning/gasoline.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:liquid_burning", 3 | "input": { 4 | "fluidTag": "forge:gasoline", 5 | "amount": 1000 6 | }, 7 | "burnTime": 48000, 8 | "superheated": true, 9 | "conditions": [ 10 | { 11 | "fluidTag": "forge:gasoline", 12 | "type": "createaddition:has_fluid_tag" 13 | } 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/liquid_burning/lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:liquid_burning", 3 | "input": { 4 | "fluidTag": "minecraft:lava", 5 | "amount": 1000 6 | }, 7 | "burnTime": 20000 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/liquid_burning/plantoil.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:liquid_burning", 3 | "input": { 4 | "fluidTag": "forge:plantoil", 5 | "amount": 1000 6 | }, 7 | "burnTime": 4800 8 | } 9 | -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/mechanical_crafting/alternator.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:mechanical_crafting", 3 | "pattern": [ 4 | " A ", 5 | " ISI ", 6 | "ISRSI", 7 | " ICI " 8 | ], 9 | "key": { 10 | "C": { 11 | "item": "createaddition:capacitor" 12 | }, 13 | "I": { 14 | "tag": "forge:plates/iron" 15 | }, 16 | "R": { 17 | "tag": "forge:rods/iron" 18 | }, 19 | "S": { 20 | "item": "createaddition:copper_spool" 21 | }, 22 | "A": { 23 | "item": "create:andesite_alloy" 24 | } 25 | }, 26 | "result": { 27 | "item": "createaddition:alternator" 28 | } 29 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/mechanical_crafting/electric_motor.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:mechanical_crafting", 3 | "pattern": [ 4 | " A ", 5 | " BSB ", 6 | "BSRSB", 7 | " BCB " 8 | ], 9 | "key": { 10 | "A": { 11 | "item": "create:andesite_alloy" 12 | }, 13 | "C": { 14 | "item": "createaddition:capacitor" 15 | }, 16 | "B": { 17 | "tag": "forge:plates/brass" 18 | }, 19 | "R": { 20 | "tag": "forge:rods/iron" 21 | }, 22 | "S": { 23 | "item": "createaddition:copper_spool" 24 | } 25 | }, 26 | "result": { 27 | "item": "createaddition:electric_motor" 28 | } 29 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/mechanical_crafting/tesla_coil.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:mechanical_crafting", 3 | "pattern": [ 4 | "SSS", 5 | " A ", 6 | "CBC", 7 | "PEP" 8 | ], 9 | "key": { 10 | "A": { 11 | "item": "create:andesite_alloy" 12 | }, 13 | "C": { 14 | "item": "createaddition:capacitor" 15 | }, 16 | "P": { 17 | "tag": "forge:plates/brass" 18 | }, 19 | "B": { 20 | "item": "create:brass_casing" 21 | }, 22 | "S": { 23 | "item": "createaddition:copper_spool" 24 | }, 25 | "E": { 26 | "item": "create:electron_tube" 27 | } 28 | }, 29 | "result": { 30 | "item": "createaddition:tesla_coil" 31 | } 32 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/mixing/bioethanol.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:mixing", 3 | "ingredients": [ 4 | { 5 | "item": "minecraft:sugar" 6 | }, 7 | { 8 | "item": "create:cinder_flour" 9 | }, 10 | { 11 | "item": "createaddition:biomass" 12 | }, 13 | { 14 | "item": "createaddition:biomass" 15 | } 16 | ], 17 | "results": [ 18 | { 19 | "fluid": "createaddition:bioethanol", 20 | "amount": 125 21 | } 22 | ] 23 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/mixing/biomass_from_crops.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:mixing", 3 | "ingredients": [ 4 | { 5 | "tag": "forge:crops" 6 | }, 7 | { 8 | "tag": "forge:crops" 9 | }, 10 | { 11 | "fluidTag": "forge:plantoil", 12 | "amount": 100 13 | } 14 | ], 15 | "results": [ 16 | { 17 | "item": "createaddition:biomass", 18 | "count": 1 19 | } 20 | ], 21 | "heatRequirement": "heated" 22 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/mixing/biomass_from_flowers.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:mixing", 3 | "ingredients": [ 4 | { 5 | "tag": "minecraft:flowers" 6 | }, 7 | { 8 | "tag": "minecraft:flowers" 9 | }, 10 | { 11 | "fluidTag": "forge:plantoil", 12 | "amount": 100 13 | } 14 | ], 15 | "results": [ 16 | { 17 | "item": "createaddition:biomass", 18 | "count": 1 19 | } 20 | ], 21 | "heatRequirement": "heated" 22 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/mixing/biomass_from_honeycomb.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:mixing", 3 | "ingredients": [ 4 | { 5 | "item": "minecraft:honeycomb" 6 | }, 7 | { 8 | "fluidTag": "forge:plantoil", 9 | "amount": 100 10 | } 11 | ], 12 | "results": [ 13 | { 14 | "item": "createaddition:biomass", 15 | "count": 1 16 | } 17 | ], 18 | "heatRequirement": "heated" 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/mixing/biomass_from_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:mixing", 3 | "ingredients": [ 4 | { 5 | "tag": "minecraft:leaves" 6 | }, 7 | { 8 | "tag": "minecraft:leaves" 9 | }, 10 | { 11 | "tag": "minecraft:leaves" 12 | }, 13 | { 14 | "fluidTag": "forge:plantoil", 15 | "amount": 100 16 | } 17 | ], 18 | "results": [ 19 | { 20 | "item": "createaddition:biomass", 21 | "count": 1 22 | } 23 | ], 24 | "heatRequirement": "heated" 25 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/mixing/biomass_from_plant_foods.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:mixing", 3 | "ingredients": [ 4 | { 5 | "tag": "createaddition:plant_foods" 6 | }, 7 | { 8 | "tag": "createaddition:plant_foods" 9 | }, 10 | { 11 | "fluidTag": "forge:plantoil", 12 | "amount": 100 13 | } 14 | ], 15 | "results": [ 16 | { 17 | "item": "createaddition:biomass", 18 | "count": 1 19 | } 20 | ], 21 | "heatRequirement": "heated" 22 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/mixing/biomass_from_plants.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:mixing", 3 | "ingredients": [ 4 | { 5 | "tag": "createaddition:plants" 6 | }, 7 | { 8 | "tag": "createaddition:plants" 9 | }, 10 | { 11 | "tag": "createaddition:plants" 12 | }, 13 | { 14 | "fluidTag": "forge:plantoil", 15 | "amount": 100 16 | } 17 | ], 18 | "results": [ 19 | { 20 | "item": "createaddition:biomass", 21 | "count": 1 22 | } 23 | ], 24 | "heatRequirement": "heated" 25 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/mixing/biomass_from_saplings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:mixing", 3 | "ingredients": [ 4 | { 5 | "tag": "minecraft:saplings" 6 | }, 7 | { 8 | "tag": "minecraft:saplings" 9 | }, 10 | { 11 | "tag": "minecraft:saplings" 12 | }, 13 | { 14 | "fluidTag": "forge:plantoil", 15 | "amount": 100 16 | } 17 | ], 18 | "results": [ 19 | { 20 | "item": "createaddition:biomass", 21 | "count": 1 22 | } 23 | ], 24 | "heatRequirement": "heated" 25 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/mixing/biomass_from_sticks.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:mixing", 3 | "ingredients": [ 4 | { 5 | "item": "minecraft:stick" 6 | }, 7 | { 8 | "item": "minecraft:stick" 9 | }, 10 | { 11 | "item": "minecraft:stick" 12 | }, 13 | { 14 | "item": "minecraft:stick" 15 | }, 16 | { 17 | "item": "minecraft:stick" 18 | }, 19 | { 20 | "item": "minecraft:stick" 21 | }, 22 | { 23 | "item": "minecraft:stick" 24 | }, 25 | { 26 | "item": "minecraft:stick" 27 | }, 28 | { 29 | "fluidTag": "forge:plantoil", 30 | "amount": 100 31 | } 32 | ], 33 | "results": [ 34 | { 35 | "item": "createaddition:biomass", 36 | "count": 1 37 | } 38 | ], 39 | "heatRequirement": "heated" 40 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/mixing/electrum.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:mixing", 3 | "ingredients": [ 4 | { 5 | "tag": "forge:ingots/gold" 6 | }, 7 | { 8 | "tag": "forge:ingots/silver" 9 | } 10 | ], 11 | "results": [ 12 | { 13 | "item": "createaddition:electrum_ingot", 14 | "count": 2 15 | } 16 | ], 17 | "heatRequirement": "heated", 18 | "conditions": [ 19 | { 20 | "type": "forge:not", 21 | "value": { 22 | "type": "forge:tag_empty", 23 | "tag": "forge:ingots/silver" 24 | } 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/mixing/netherrack.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:mixing", 3 | "ingredients": [ 4 | { 5 | "tag": "forge:cobblestone" 6 | }, 7 | { 8 | "item": "create:cinder_flour" 9 | }, 10 | { 11 | "fluid": "minecraft:lava", 12 | "amount": 25 13 | } 14 | ], 15 | "results": [ 16 | { 17 | "item": "minecraft:netherrack" 18 | } 19 | ] 20 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/pressing/aluminum_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"create:pressing", 3 | "ingredients": [{ 4 | "tag": "forge:ingots/aluminum" 5 | }], 6 | "results": [{ 7 | "item": "immersiveengineering:plate_aluminum" 8 | }], 9 | "conditions": [{ 10 | "type": "forge:mod_loaded", 11 | "modid": "immersiveengineering" 12 | }] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/pressing/constantan_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"create:pressing", 3 | "ingredients": [{ 4 | "tag": "forge:ingots/constantan" 5 | }], 6 | "results": [{ 7 | "item": "immersiveengineering:plate_constantan" 8 | }], 9 | "conditions": [{ 10 | "type": "forge:mod_loaded", 11 | "modid": "immersiveengineering" 12 | }] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/pressing/electrum_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"create:pressing", 3 | "ingredients": [{ 4 | "tag": "forge:ingots/electrum" 5 | }], 6 | "results": [{ 7 | "item": "createaddition:electrum_sheet" 8 | }] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/pressing/lead_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"create:pressing", 3 | "ingredients": [{ 4 | "tag": "forge:ingots/lead" 5 | }], 6 | "results": [{ 7 | "item": "immersiveengineering:plate_lead" 8 | }], 9 | "conditions": [{ 10 | "type": "forge:mod_loaded", 11 | "modid": "immersiveengineering" 12 | }] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/pressing/nickel_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"create:pressing", 3 | "ingredients": [{ 4 | "tag": "forge:ingots/nickel" 5 | }], 6 | "results": [{ 7 | "item": "immersiveengineering:plate_nickel" 8 | }], 9 | "conditions": [{ 10 | "type": "forge:mod_loaded", 11 | "modid": "immersiveengineering" 12 | }] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/pressing/silver_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"create:pressing", 3 | "ingredients": [{ 4 | "tag": "forge:ingots/silver" 5 | }], 6 | "results": [{ 7 | "item": "immersiveengineering:plate_silver" 8 | }], 9 | "conditions": [{ 10 | "type": "forge:mod_loaded", 11 | "modid": "immersiveengineering" 12 | }] 13 | } 14 | -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/pressing/steel_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"create:pressing", 3 | "ingredients": [{ 4 | "tag": "forge:ingots/steel" 5 | }], 6 | "results": [{ 7 | "item": "immersiveengineering:plate_steel" 8 | }], 9 | "conditions": [{ 10 | "type": "forge:mod_loaded", 11 | "modid": "immersiveengineering" 12 | }] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/pressing/uranium_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"create:pressing", 3 | "ingredients": [{ 4 | "tag": "forge:ingots/uranium" 5 | }], 6 | "results": [{ 7 | "item": "immersiveengineering:plate_uranium" 8 | }], 9 | "conditions": [{ 10 | "type": "forge:mod_loaded", 11 | "modid": "immersiveengineering" 12 | }] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/pressing/zinc_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "create:pressing", 3 | "ingredients": [ 4 | { 5 | "tag": "forge:ingots/zinc" 6 | } 7 | ], 8 | "results": [ 9 | { 10 | "item": "createaddition:zinc_sheet" 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/rolling/aluminum_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:rolling", 3 | "input": { 4 | "tag": "forge:ingots/aluminum" 5 | }, 6 | "result": { 7 | "item": "immersiveengineering:stick_aluminum", 8 | "count": 2 9 | }, 10 | "conditions": [ { 11 | "type": "forge:mod_loaded", 12 | "modid": "immersiveengineering" 13 | } ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/rolling/aluminum_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:rolling", 3 | "input": { 4 | "tag": "forge:plates/aluminum" 5 | }, 6 | "result": { 7 | "item": "immersiveengineering:wire_aluminum", 8 | "count": 2 9 | }, 10 | "conditions": [ { 11 | "type": "forge:mod_loaded", 12 | "modid": "immersiveengineering" 13 | } ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/rolling/brass_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:rolling", 3 | "input": { 4 | "tag": "forge:ingots/brass" 5 | }, 6 | "result": { 7 | "item": "createaddition:brass_rod", 8 | "count": 2 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/rolling/copper_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:rolling", 3 | "input": { 4 | "item": "minecraft:copper_ingot" 5 | }, 6 | "result": { 7 | "item": "createaddition:copper_rod", 8 | "count": 2 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/rolling/copper_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:rolling", 3 | "input": { 4 | "tag": "forge:plates/copper" 5 | }, 6 | "result": { 7 | "item": "createaddition:copper_wire", 8 | "count": 2 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/rolling/electrum_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:rolling", 3 | "input": { 4 | "tag": "forge:ingots/electrum" 5 | }, 6 | "result": { 7 | "item": "createaddition:electrum_rod", 8 | "count": 2 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/rolling/electrum_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:rolling", 3 | "input": { 4 | "tag": "forge:plates/electrum" 5 | }, 6 | "result": { 7 | "item": "createaddition:electrum_wire", 8 | "count": 2 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/rolling/gold_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:rolling", 3 | "input": { 4 | "tag": "forge:ingots/gold" 5 | }, 6 | "result": { 7 | "item": "createaddition:gold_rod", 8 | "count": 2 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/rolling/gold_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:rolling", 3 | "input": { 4 | "tag": "forge:plates/gold" 5 | }, 6 | "result": { 7 | "item": "createaddition:gold_wire", 8 | "count": 2 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/rolling/iron_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:rolling", 3 | "input": { 4 | "tag": "forge:ingots/iron" 5 | }, 6 | "result": { 7 | "item": "createaddition:iron_rod", 8 | "count": 2 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/rolling/iron_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:rolling", 3 | "input": { 4 | "tag": "forge:plates/iron" 5 | }, 6 | "result": { 7 | "item": "createaddition:iron_wire", 8 | "count": 2 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/rolling/lead_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:rolling", 3 | "input": { 4 | "tag": "forge:plates/lead" 5 | }, 6 | "result": { 7 | "item": "immersiveengineering:wire_lead", 8 | "count": 2 9 | }, 10 | "conditions": [ { 11 | "type": "forge:mod_loaded", 12 | "modid": "immersiveengineering" 13 | } ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/rolling/steel_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:rolling", 3 | "input": { 4 | "tag": "forge:ingots/steel" 5 | }, 6 | "result": { 7 | "item": "immersiveengineering:stick_steel", 8 | "count": 2 9 | }, 10 | "conditions": [ { 11 | "type": "forge:mod_loaded", 12 | "modid": "immersiveengineering" 13 | } ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/rolling/steel_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:rolling", 3 | "input": { 4 | "tag": "forge:plates/steel" 5 | }, 6 | "result": { 7 | "item": "immersiveengineering:wire_steel", 8 | "count": 2 9 | }, 10 | "conditions": [ { 11 | "type": "forge:mod_loaded", 12 | "modid": "immersiveengineering" 13 | } ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/rolling/straw.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"createaddition:rolling", 3 | "input": { 4 | "item": "minecraft:bamboo" 5 | }, 6 | "result": { 7 | "item": "createaddition:straw", 8 | "count": 1 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/recipes/smoking/cake_base_baked.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:smoking", 3 | "ingredient": { 4 | "item": "createaddition:cake_base" 5 | }, 6 | "result": "createaddition:cake_base_baked", 7 | "experience": 0.0, 8 | "cookingtime": 100 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/tags/items/plant_foods.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:apple", 5 | "minecraft:melon_slice", 6 | "minecraft:potato", 7 | "minecraft:sweet_berries", 8 | "minecraft:beetroot", 9 | "minecraft:glow_berries", 10 | "minecraft:carrot", 11 | "minecraft:chorus_fruit" 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/createaddition/tags/items/spools.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:copper_spool", 5 | "createaddition:gold_spool", 6 | "createaddition:electrum_spool" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/fluids/biofuel.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:flowing_bioethanol", 5 | "createaddition:bioethanol" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/fluids/creosote.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/fluids/crude_oil.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/fluids/plantoil.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:flowing_seed_oil", 5 | "createaddition:seed_oil" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/blocks/electrum.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:electrum_block" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/dusts.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:diamond_grit", 5 | "create:powdered_obsidian" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/dusts/diamond.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:diamond_grit" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/dusts/obsidian.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "create:powdered_obsidian" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/fuels.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:biomass" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/fuels/bio.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:biomass" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ingots.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:electrum_ingot" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ingots/electrum.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:electrum_ingot" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/nuggets.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:electrum_nugget" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/nuggets/electrum.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:electrum_nugget" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/plates.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:zinc_sheet", 5 | "createaddition:electrum_sheet" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/plates/electrum.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:electrum_sheet" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/plates/zinc.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:zinc_sheet" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/rods.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:iron_rod", 5 | "createaddition:copper_rod", 6 | "createaddition:gold_rod", 7 | "createaddition:brass_rod", 8 | "createaddition:electrum_rod" 9 | ] 10 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/rods/all_metal.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:iron_rod", 5 | "createaddition:copper_rod", 6 | "createaddition:gold_rod", 7 | "createaddition:brass_rod", 8 | "createaddition:electrum_rod" 9 | ] 10 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/rods/brass.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:brass_rod" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/rods/copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:copper_rod" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/rods/electrum.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:electrum_rod" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/rods/gold.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:gold_rod" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/rods/iron.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:iron_rod" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/wires.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:copper_wire", 5 | "createaddition:iron_wire", 6 | "createaddition:gold_wire", 7 | "createaddition:electrum_wire" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/wires/all_metal.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:copper_wire", 5 | "createaddition:gold_wire", 6 | "createaddition:iron_wire", 7 | "createaddition:electrum_wire" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/wires/copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:copper_wire" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/wires/electrum.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:electrum_wire" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/wires/gold.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:gold_wire" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/wires/iron.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:iron_wire" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:alternator", 5 | "createaddition:electric_motor", 6 | "createaddition:rolling_mill", 7 | "createaddition:creative_energy", 8 | "createaddition:connector", 9 | "createaddition:small_light_connector", 10 | "createaddition:large_connector", 11 | "createaddition:redstone_relay", 12 | "createaddition:tesla_coil", 13 | "createaddition:liquid_blaze_burner", 14 | "createaddition:barbed_wire", 15 | "createaddition:modular_accumulator", 16 | "createaddition:portable_energy_interface", 17 | "createaddition:digital_adapter" 18 | ] 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/fluids/water.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:flowing_seed_oil", 5 | "createaddition:seed_oil", 6 | "createaddition:flowing_bioethanol", 7 | "createaddition:bioethanol" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/items/beacon_payment_items.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "createaddition:electrum_ingot" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "examplemod resources", 4 | "pack_format": 6, 5 | "_comment": "A pack_format of 6 requires json lang files and some texture changes from 1.16.2. Note: we require v6 pack meta for all mods." 6 | } 7 | } 8 | --------------------------------------------------------------------------------