├── .gitmodules ├── LICENSE - ART.txt ├── LICENSE - CODE.txt ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties └── src ├── main ├── resources │ ├── assets │ │ └── thermalexpansion │ │ │ ├── textures │ │ │ ├── blocks │ │ │ │ ├── device │ │ │ │ │ ├── device_active_heat_sink.png.mcmeta │ │ │ │ │ ├── device_active_item_buffer.png.mcmeta │ │ │ │ │ ├── device_side.png │ │ │ │ │ ├── device_top.png │ │ │ │ │ ├── device_bottom.png │ │ │ │ │ ├── device_frame_top.png │ │ │ │ │ ├── device_face_fisher.png │ │ │ │ │ ├── device_face_tapper.png │ │ │ │ │ ├── device_frame_bottom.png │ │ │ │ │ ├── device_frame_inner.png │ │ │ │ │ ├── device_frame_side.png │ │ │ │ │ ├── device_active_fisher.png │ │ │ │ │ ├── device_active_tapper.png │ │ │ │ │ ├── device_face_heat_sink.png │ │ │ │ │ ├── device_face_nullifier.png │ │ │ │ │ ├── device_face_water_gen.png │ │ │ │ │ ├── device_active_heat_sink.png │ │ │ │ │ ├── device_active_nullifier.png │ │ │ │ │ ├── device_active_water_gen.png │ │ │ │ │ ├── device_face_item_buffer.png │ │ │ │ │ └── device_active_item_buffer.png │ │ │ │ ├── machine │ │ │ │ │ ├── machine_active_compactor.png.mcmeta │ │ │ │ │ ├── machine_active_crafter.png.mcmeta │ │ │ │ │ ├── machine_active_refinery.png.mcmeta │ │ │ │ │ ├── machine_active_sawmill.png.mcmeta │ │ │ │ │ ├── machine_active_insolator.png.mcmeta │ │ │ │ │ ├── machine_active_pulverizer.png.mcmeta │ │ │ │ │ ├── machine_side.png │ │ │ │ │ ├── machine_top.png │ │ │ │ │ ├── machine_bottom.png │ │ │ │ │ ├── machine_frame_side.png │ │ │ │ │ ├── machine_frame_top.png │ │ │ │ │ ├── machine_overlay_1.png │ │ │ │ │ ├── machine_overlay_2.png │ │ │ │ │ ├── machine_overlay_3.png │ │ │ │ │ ├── machine_overlay_4.png │ │ │ │ │ ├── machine_overlay_c.png │ │ │ │ │ ├── machine_face_charger.png │ │ │ │ │ ├── machine_face_crafter.png │ │ │ │ │ ├── machine_face_furnace.png │ │ │ │ │ ├── machine_face_sawmill.png │ │ │ │ │ ├── machine_face_smelter.png │ │ │ │ │ ├── machine_frame_bottom.png │ │ │ │ │ ├── machine_frame_inner.png │ │ │ │ │ ├── machine_active_charger.png │ │ │ │ │ ├── machine_active_crafter.png │ │ │ │ │ ├── machine_active_crucible.png │ │ │ │ │ ├── machine_active_extruder.png │ │ │ │ │ ├── machine_active_furnace.png │ │ │ │ │ ├── machine_active_refinery.png │ │ │ │ │ ├── machine_active_sawmill.png │ │ │ │ │ ├── machine_active_smelter.png │ │ │ │ │ ├── machine_face_compactor.png │ │ │ │ │ ├── machine_face_crucible.png │ │ │ │ │ ├── machine_face_extruder.png │ │ │ │ │ ├── machine_face_insolator.png │ │ │ │ │ ├── machine_face_pulverizer.png │ │ │ │ │ ├── machine_face_refinery.png │ │ │ │ │ ├── machine_face_transposer.png │ │ │ │ │ ├── machine_active_compactor.png │ │ │ │ │ ├── machine_active_insolator.png │ │ │ │ │ ├── machine_active_pulverizer.png │ │ │ │ │ ├── machine_active_transposer.png │ │ │ │ │ ├── machine_face_precipitator.png │ │ │ │ │ ├── machine_active_precipitator.png │ │ │ │ │ ├── machine_active_extruder_underlay.png │ │ │ │ │ ├── machine_active_furnace.png.mcmeta │ │ │ │ │ ├── machine_active_smelter.png.mcmeta │ │ │ │ │ ├── machine_active_charger.png.mcmeta │ │ │ │ │ └── machine_active_extruder_underlay.png.mcmeta │ │ │ │ ├── apparatus │ │ │ │ │ ├── apparatus_active_activator.png.mcmeta │ │ │ │ │ ├── apparatus_active_breaker.png.mcmeta │ │ │ │ │ ├── apparatus_active_collector.png.mcmeta │ │ │ │ │ ├── frame_side.png │ │ │ │ │ ├── apparatus_side.png │ │ │ │ │ ├── apparatus_face_breaker.png │ │ │ │ │ ├── apparatus_active_activator.png │ │ │ │ │ ├── apparatus_active_breaker.png │ │ │ │ │ ├── apparatus_active_collector.png │ │ │ │ │ ├── apparatus_face_activator.png │ │ │ │ │ └── apparatus_face_collector.png │ │ │ │ ├── config │ │ │ │ │ ├── config_blue.png │ │ │ │ │ ├── config_none.png │ │ │ │ │ ├── config_omni.png │ │ │ │ │ ├── config_open.png │ │ │ │ │ ├── config_red.png │ │ │ │ │ ├── config_blue_cb.png │ │ │ │ │ ├── config_green.png │ │ │ │ │ ├── config_omni_cb.png │ │ │ │ │ ├── config_orange.png │ │ │ │ │ ├── config_purple.png │ │ │ │ │ ├── config_red_cb.png │ │ │ │ │ ├── config_yellow.png │ │ │ │ │ ├── cell_config_blue.png │ │ │ │ │ ├── cell_config_omni.png │ │ │ │ │ ├── config_green_cb.png │ │ │ │ │ ├── config_orange_cb.png │ │ │ │ │ ├── config_purple_cb.png │ │ │ │ │ ├── config_yellow_cb.png │ │ │ │ │ └── cell_config_orange.png │ │ │ │ ├── storage │ │ │ │ │ ├── tank_top_0.png │ │ │ │ │ ├── tank_top_1.png │ │ │ │ │ ├── tank_top_2.png │ │ │ │ │ ├── tank_top_3.png │ │ │ │ │ ├── tank_top_4.png │ │ │ │ │ ├── tank_top_c.png │ │ │ │ │ ├── cache_face_0.png │ │ │ │ │ ├── cache_face_1.png │ │ │ │ │ ├── cache_face_2.png │ │ │ │ │ ├── cache_face_3.png │ │ │ │ │ ├── cache_face_4.png │ │ │ │ │ ├── cache_face_c.png │ │ │ │ │ ├── cache_meter_0.png │ │ │ │ │ ├── cache_meter_1.png │ │ │ │ │ ├── cache_meter_2.png │ │ │ │ │ ├── cache_meter_3.png │ │ │ │ │ ├── cache_meter_4.png │ │ │ │ │ ├── cache_meter_5.png │ │ │ │ │ ├── cache_meter_6.png │ │ │ │ │ ├── cache_meter_7.png │ │ │ │ │ ├── cache_meter_8.png │ │ │ │ │ ├── cache_meter_c.png │ │ │ │ │ ├── cache_side_0.png │ │ │ │ │ ├── cache_side_1.png │ │ │ │ │ ├── cache_side_2.png │ │ │ │ │ ├── cache_side_3.png │ │ │ │ │ ├── cache_side_4.png │ │ │ │ │ ├── cache_side_c.png │ │ │ │ │ ├── cache_top_0.png │ │ │ │ │ ├── cache_top_1.png │ │ │ │ │ ├── cache_top_2.png │ │ │ │ │ ├── cache_top_3.png │ │ │ │ │ ├── cache_top_4.png │ │ │ │ │ ├── cache_top_c.png │ │ │ │ │ ├── cell_inner_0.png │ │ │ │ │ ├── cell_inner_1.png │ │ │ │ │ ├── cell_inner_2.png │ │ │ │ │ ├── cell_inner_3.png │ │ │ │ │ ├── cell_inner_4.png │ │ │ │ │ ├── cell_inner_c.png │ │ │ │ │ ├── cell_meter_0.png │ │ │ │ │ ├── cell_meter_1.png │ │ │ │ │ ├── cell_meter_2.png │ │ │ │ │ ├── cell_meter_3.png │ │ │ │ │ ├── cell_meter_4.png │ │ │ │ │ ├── cell_meter_5.png │ │ │ │ │ ├── cell_meter_6.png │ │ │ │ │ ├── cell_meter_7.png │ │ │ │ │ ├── cell_meter_8.png │ │ │ │ │ ├── cell_meter_c.png │ │ │ │ │ ├── cell_side_0.png │ │ │ │ │ ├── cell_side_1.png │ │ │ │ │ ├── cell_side_2.png │ │ │ │ │ ├── cell_side_3.png │ │ │ │ │ ├── cell_side_4.png │ │ │ │ │ ├── cell_side_c.png │ │ │ │ │ ├── strongbox_0.png │ │ │ │ │ ├── strongbox_1.png │ │ │ │ │ ├── strongbox_2.png │ │ │ │ │ ├── strongbox_3.png │ │ │ │ │ ├── strongbox_4.png │ │ │ │ │ ├── strongbox_c.png │ │ │ │ │ ├── tank_side_0_0.png │ │ │ │ │ ├── tank_side_0_1.png │ │ │ │ │ ├── tank_side_0_2.png │ │ │ │ │ ├── tank_side_0_3.png │ │ │ │ │ ├── tank_side_0_4.png │ │ │ │ │ ├── tank_side_0_c.png │ │ │ │ │ ├── tank_side_1_0.png │ │ │ │ │ ├── tank_side_1_1.png │ │ │ │ │ ├── tank_side_1_2.png │ │ │ │ │ ├── tank_side_1_3.png │ │ │ │ │ ├── tank_side_1_4.png │ │ │ │ │ ├── tank_side_1_c.png │ │ │ │ │ ├── cache_bottom_0.png │ │ │ │ │ ├── cache_bottom_1.png │ │ │ │ │ ├── cache_bottom_2.png │ │ │ │ │ ├── cache_bottom_3.png │ │ │ │ │ ├── cache_bottom_4.png │ │ │ │ │ ├── cache_bottom_c.png │ │ │ │ │ ├── strongbox_top_0.png │ │ │ │ │ ├── strongbox_top_1.png │ │ │ │ │ ├── strongbox_top_2.png │ │ │ │ │ ├── strongbox_top_3.png │ │ │ │ │ ├── strongbox_top_4.png │ │ │ │ │ ├── strongbox_top_c.png │ │ │ │ │ ├── tank_bottom_0_0.png │ │ │ │ │ ├── tank_bottom_0_1.png │ │ │ │ │ ├── tank_bottom_0_2.png │ │ │ │ │ ├── tank_bottom_0_3.png │ │ │ │ │ ├── tank_bottom_0_4.png │ │ │ │ │ ├── tank_bottom_0_c.png │ │ │ │ │ ├── tank_bottom_1_0.png │ │ │ │ │ ├── tank_bottom_1_1.png │ │ │ │ │ ├── tank_bottom_1_2.png │ │ │ │ │ ├── tank_bottom_1_3.png │ │ │ │ │ ├── tank_bottom_1_4.png │ │ │ │ │ └── tank_bottom_1_c.png │ │ │ │ ├── dynamo │ │ │ │ │ ├── dynamo_steam.png │ │ │ │ │ ├── dynamo_magmatic.png │ │ │ │ │ ├── dynamo_overlay_1.png │ │ │ │ │ ├── dynamo_overlay_2.png │ │ │ │ │ ├── dynamo_overlay_3.png │ │ │ │ │ ├── dynamo_overlay_4.png │ │ │ │ │ ├── dynamo_overlay_c.png │ │ │ │ │ ├── dynamo_reactant.png │ │ │ │ │ ├── dynamo_compression.png │ │ │ │ │ ├── dynamo_enervation.png │ │ │ │ │ ├── dynamo_numismatic.png │ │ │ │ │ └── dynamo_coil_redstone.png │ │ │ │ └── light │ │ │ │ │ └── illuminator_frame.png │ │ │ ├── items │ │ │ │ ├── augment │ │ │ │ │ ├── dynamo_efficiency.png.mcmeta │ │ │ │ │ ├── placeholder.png │ │ │ │ │ ├── dynamo_power.png │ │ │ │ │ ├── machine_power.png │ │ │ │ │ ├── dynamo_coil_duct.png │ │ │ │ │ ├── dynamo_throttle.png │ │ │ │ │ ├── dynamo_efficiency.png │ │ │ │ │ ├── machine_furnace_ore.png │ │ │ │ │ ├── machine_secondary.png │ │ │ │ │ ├── dynamo_steam_turbine.png │ │ │ │ │ ├── machine_furnace_food.png │ │ │ │ │ ├── machine_insolator_end.png │ │ │ │ │ ├── dynamo_compression_fuel.png │ │ │ │ │ ├── dynamo_magmatic_coolant.png │ │ │ │ │ ├── machine_compactor_mint.png │ │ │ │ │ ├── machine_extruder_diorite.png │ │ │ │ │ ├── machine_extruder_granite.png │ │ │ │ │ ├── machine_insolator_nether.png │ │ │ │ │ ├── machine_insolator_tree.png │ │ │ │ │ ├── machine_pulverizer_geode.png │ │ │ │ │ ├── machine_sawmill_tapper.png │ │ │ │ │ ├── machine_secondary_null.png │ │ │ │ │ ├── dynamo_compression_coolant.png │ │ │ │ │ ├── dynamo_reactant_elemental.png │ │ │ │ │ ├── machine_charger_throughput.png │ │ │ │ │ ├── machine_extruder_andesite.png │ │ │ │ │ ├── machine_extruder_no_water.png │ │ │ │ │ ├── machine_furnace_pyrolysis.png │ │ │ │ │ ├── machine_insolator_mycelium.png │ │ │ │ │ ├── machine_smelter_pyrotheum.png │ │ │ │ │ ├── machine_pulverizer_petrotheum.png │ │ │ │ │ ├── machine_precipitator_batch_size.png │ │ │ │ │ ├── machine_precipitator_packed_ice.png │ │ │ │ │ ├── machine_precipitator_snow_layer.png │ │ │ │ │ ├── machine_sawmill_tapper.png.mcmeta │ │ │ │ │ ├── machine_secondary_null.png.mcmeta │ │ │ │ │ ├── machine_extruder_no_water.png.mcmeta │ │ │ │ │ ├── machine_smelter_pyrotheum.png.mcmeta │ │ │ │ │ └── machine_pulverizer_petrotheum.png.mcmeta │ │ │ │ ├── florb │ │ │ │ │ ├── florb.png │ │ │ │ │ ├── florb_mask.png │ │ │ │ │ ├── florb_outline.png │ │ │ │ │ └── florb_magmatic.png │ │ │ │ ├── upgrade │ │ │ │ │ ├── full_1.png │ │ │ │ │ ├── full_2.png │ │ │ │ │ ├── full_3.png │ │ │ │ │ ├── full_4.png │ │ │ │ │ ├── creative.png │ │ │ │ │ ├── incremental_1.png │ │ │ │ │ ├── incremental_2.png │ │ │ │ │ ├── incremental_3.png │ │ │ │ │ └── incremental_4.png │ │ │ │ ├── capacitor │ │ │ │ │ ├── mode_0_0.png │ │ │ │ │ ├── mode_0_1.png │ │ │ │ │ ├── mode_0_2.png │ │ │ │ │ ├── mode_1_0.png │ │ │ │ │ ├── mode_1_1.png │ │ │ │ │ ├── mode_1_2.png │ │ │ │ │ ├── capacitor_0.png │ │ │ │ │ ├── capacitor_1.png │ │ │ │ │ ├── capacitor_2.png │ │ │ │ │ ├── capacitor_3.png │ │ │ │ │ ├── capacitor_4.png │ │ │ │ │ └── capacitor_c.png │ │ │ │ └── frame │ │ │ │ │ ├── frame_device_side.png │ │ │ │ │ ├── frame_machine_side.png │ │ │ │ │ ├── frame_machine_top.png │ │ │ │ │ ├── frame_apparatus_side.png │ │ │ │ │ ├── frame_machine_bottom.png │ │ │ │ │ └── frame_machine_inner.png │ │ │ ├── logo.png │ │ │ └── gui │ │ │ │ ├── jei_handler.png │ │ │ │ ├── device │ │ │ │ ├── fisher.png │ │ │ │ ├── lexicon.png │ │ │ │ ├── tapper.png │ │ │ │ ├── extender.png │ │ │ │ ├── fountain.png │ │ │ │ ├── heat_sink.png │ │ │ │ ├── nullifier.png │ │ │ │ ├── water_gen.png │ │ │ │ └── item_buffer.png │ │ │ │ ├── dynamo │ │ │ │ ├── steam.png │ │ │ │ ├── magmatic.png │ │ │ │ ├── reactant.png │ │ │ │ ├── compression.png │ │ │ │ ├── enervation.png │ │ │ │ └── numismatic.png │ │ │ │ ├── elements │ │ │ │ ├── slots.png │ │ │ │ ├── slots_cb.png │ │ │ │ ├── slots_crafter.png │ │ │ │ └── slots_crafter_cb.png │ │ │ │ ├── storage │ │ │ │ └── cell.png │ │ │ │ ├── machine │ │ │ │ ├── charger.png │ │ │ │ ├── crafter.png │ │ │ │ ├── crucible.png │ │ │ │ ├── extruder.png │ │ │ │ ├── furnace.png │ │ │ │ ├── refinery.png │ │ │ │ ├── sawmill.png │ │ │ │ ├── smelter.png │ │ │ │ ├── centrifuge.png │ │ │ │ ├── compactor.png │ │ │ │ ├── insolator.png │ │ │ │ ├── pulverizer.png │ │ │ │ ├── transposer.png │ │ │ │ └── precipitator.png │ │ │ │ └── apparatus │ │ │ │ ├── activator.png │ │ │ │ ├── breaker.png │ │ │ │ └── collector.png │ │ │ ├── sounds │ │ │ └── blocks │ │ │ │ ├── machine │ │ │ │ ├── furnace.ogg │ │ │ │ ├── sawmill.ogg │ │ │ │ ├── smelter.ogg │ │ │ │ ├── crucible.ogg │ │ │ │ ├── pulverizer.ogg │ │ │ │ └── transposer.ogg │ │ │ │ └── device │ │ │ │ └── water_gen.ogg │ │ │ ├── models │ │ │ └── item │ │ │ │ ├── capacitor_creative_0_1.json │ │ │ │ ├── capacitor_creative_0_2.json │ │ │ │ ├── capacitor_creative_1_0.json │ │ │ │ ├── capacitor_creative_1_1.json │ │ │ │ ├── capacitor_creative_1_2.json │ │ │ │ ├── capacitor_standard0_0_1.json │ │ │ │ ├── capacitor_standard0_0_2.json │ │ │ │ ├── capacitor_standard0_1_0.json │ │ │ │ ├── capacitor_standard0_1_1.json │ │ │ │ ├── capacitor_standard0_1_2.json │ │ │ │ ├── capacitor_standard1_0_1.json │ │ │ │ ├── capacitor_standard1_0_2.json │ │ │ │ ├── capacitor_standard1_1_0.json │ │ │ │ ├── capacitor_standard1_1_1.json │ │ │ │ ├── capacitor_standard1_1_2.json │ │ │ │ ├── capacitor_standard2_0_1.json │ │ │ │ ├── capacitor_standard2_0_2.json │ │ │ │ ├── capacitor_standard2_1_0.json │ │ │ │ ├── capacitor_standard2_1_1.json │ │ │ │ ├── capacitor_standard2_1_2.json │ │ │ │ ├── capacitor_standard3_0_1.json │ │ │ │ ├── capacitor_standard3_0_2.json │ │ │ │ ├── capacitor_standard3_1_0.json │ │ │ │ ├── capacitor_standard3_1_1.json │ │ │ │ ├── capacitor_standard3_1_2.json │ │ │ │ ├── capacitor_standard4_0_1.json │ │ │ │ ├── capacitor_standard4_0_2.json │ │ │ │ ├── capacitor_standard4_1_0.json │ │ │ │ ├── capacitor_standard4_1_1.json │ │ │ │ ├── capacitor_standard4_1_2.json │ │ │ │ ├── capacitor_creative.json │ │ │ │ ├── capacitor_standard0.json │ │ │ │ ├── capacitor_standard1.json │ │ │ │ ├── capacitor_standard2.json │ │ │ │ ├── capacitor_standard3.json │ │ │ │ └── capacitor_standard4.json │ │ │ ├── blockstates │ │ │ └── upgrade.json │ │ │ └── sounds.json │ └── mcmod.info └── java │ └── cofh │ └── thermalexpansion │ ├── util │ ├── managers │ │ └── FisherManager.java │ └── TickHandlerClientConfig.java │ ├── gui │ ├── container │ │ ├── ISchematicContainer.java │ │ ├── device │ │ │ ├── ContainerNullifier.java │ │ │ ├── ContainerItemBuffer.java │ │ │ ├── ContainerTapper.java │ │ │ └── ContainerFisher.java │ │ ├── machine │ │ │ ├── ContainerRefinery.java │ │ │ ├── ContainerCrucible.java │ │ │ ├── ContainerExtruder.java │ │ │ ├── ContainerPrecipitator.java │ │ │ ├── ContainerCompactor.java │ │ │ ├── ContainerSawmill.java │ │ │ ├── ContainerPulverizer.java │ │ │ ├── ContainerCharger.java │ │ │ └── ContainerTransposer.java │ │ └── dynamo │ │ │ ├── ContainerDynamoSteam.java │ │ │ ├── ContainerDynamoReactant.java │ │ │ ├── ContainerDynamoEnervation.java │ │ │ └── ContainerDynamoNumismatic.java │ ├── slot │ │ ├── SlotFalseCopyValidated.java │ │ └── SlotSatchelCreative.java │ ├── client │ │ ├── device │ │ │ ├── GuiFisher.java │ │ │ └── GuiNullifier.java │ │ ├── apparatus │ │ │ ├── GuiBreaker.java │ │ │ └── GuiCollector.java │ │ └── dynamo │ │ │ └── GuiDynamoCompression.java │ ├── GuiConfigTEFactory.java │ ├── CreativeTabTE.java │ └── GuiHandler.java │ ├── init │ └── TEPlugins.java │ ├── block │ └── device │ │ └── TileDevice3Axis.java │ └── plugins │ ├── natura │ └── NaturaPlugin.java │ └── jei │ ├── crafting │ ├── BaseRecipeWrapper.java │ ├── furnace │ │ └── FurnaceRecipeHandler.java │ ├── sawmill │ │ └── SawmillRecipeHandler.java │ ├── smelter │ │ └── SmelterRecipeHandler.java │ ├── compactor │ │ └── CompactorRecipeHandler.java │ ├── insolator │ │ └── InsolatorRecipeHandler.java │ ├── pulverizer │ │ └── PulverizerRecipeHandler.java │ ├── transposer │ │ └── TransposerRecipeHandler.java │ ├── charger │ │ └── ChargerRecipeHandler.java │ ├── crucible │ │ └── CrucibleRecipeHandler.java │ └── refinery │ │ └── RefineryRecipeHandler.java │ ├── fuels │ ├── coolant │ │ └── CoolantHandler.java │ ├── steam │ │ └── SteamFuelHandler.java │ ├── BaseFuelCategory.java │ ├── magmatic │ │ └── MagmaticFuelHandler.java │ ├── reactant │ │ └── ReactantFuelHandler.java │ ├── enervation │ │ └── EnervationFuelHandler.java │ ├── numismatic │ │ └── NumismaticFuelHandler.java │ ├── compression │ │ └── CompressionFuelHandler.java │ └── BaseFuelWrapper.java │ └── Descriptions.java └── api ├── resources └── InventoryTweaks-1.57-116-Dev-Api.jar └── java ├── mcjty └── theoneprobe │ └── api │ ├── ITextStyle.java │ ├── ElementAlignment.java │ ├── IItemStyle.java │ ├── NumberFormat.java │ ├── IProbeHitEntityData.java │ ├── IElementFactory.java │ ├── ProbeMode.java │ ├── IEntityStyle.java │ ├── ILayoutStyle.java │ ├── IProbeHitData.java │ ├── IIconStyle.java │ ├── IElement.java │ ├── IProbeInfoAccessor.java │ ├── IProbeInfoEntityAccessor.java │ ├── IProbeConfigProvider.java │ ├── IProbeInfoProvider.java │ └── IProbeInfoEntityProvider.java └── invtweaks └── api └── container ├── IgnoreContainer.java ├── ContainerSectionCallback.java ├── InventoryContainer.java └── ChestContainer.java /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE - ART.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/LICENSE - ART.txt -------------------------------------------------------------------------------- /LICENSE - CODE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/LICENSE - CODE.txt -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/device/device_active_heat_sink.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 4 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_compactor.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 4 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_crafter.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 8 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_refinery.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 8 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/apparatus/apparatus_active_activator.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 4 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/apparatus/apparatus_active_breaker.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 4 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/apparatus/apparatus_active_collector.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 4 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/api/resources/InventoryTweaks-1.57-116-Dev-Api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/api/resources/InventoryTweaks-1.57-116-Dev-Api.jar -------------------------------------------------------------------------------- /src/api/java/mcjty/theoneprobe/api/ITextStyle.java: -------------------------------------------------------------------------------- 1 | package mcjty.theoneprobe.api; 2 | 3 | /** 4 | * Style for the text element. 5 | */ 6 | public interface ITextStyle { 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/dynamo_efficiency.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 8, 4 | "interpolate": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_sawmill.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 4, 4 | "interpolate": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/logo.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/device/device_active_item_buffer.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 4, 4 | "interpolate": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_insolator.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 6, 4 | "interpolate": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_pulverizer.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 6, 4 | "interpolate": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/api/java/mcjty/theoneprobe/api/ElementAlignment.java: -------------------------------------------------------------------------------- 1 | package mcjty.theoneprobe.api; 2 | 3 | public enum ElementAlignment { 4 | ALIGN_TOPLEFT, 5 | ALIGN_CENTER, 6 | ALIGN_BOTTOMRIGHT 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/jei_handler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/jei_handler.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/device/fisher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/device/fisher.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/device/lexicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/device/lexicon.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/device/tapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/device/tapper.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/dynamo/steam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/dynamo/steam.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/elements/slots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/elements/slots.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/storage/cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/storage/cell.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/florb/florb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/florb/florb.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/sounds/blocks/machine/furnace.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/sounds/blocks/machine/furnace.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/sounds/blocks/machine/sawmill.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/sounds/blocks/machine/sawmill.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/sounds/blocks/machine/smelter.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/sounds/blocks/machine/smelter.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/device/extender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/device/extender.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/device/fountain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/device/fountain.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/device/heat_sink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/device/heat_sink.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/device/nullifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/device/nullifier.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/device/water_gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/device/water_gen.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/dynamo/magmatic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/dynamo/magmatic.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/dynamo/reactant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/dynamo/reactant.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/machine/charger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/machine/charger.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/machine/crafter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/machine/crafter.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/machine/crucible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/machine/crucible.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/machine/extruder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/machine/extruder.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/machine/furnace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/machine/furnace.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/machine/refinery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/machine/refinery.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/machine/sawmill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/machine/sawmill.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/machine/smelter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/machine/smelter.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/upgrade/full_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/upgrade/full_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/upgrade/full_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/upgrade/full_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/upgrade/full_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/upgrade/full_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/upgrade/full_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/upgrade/full_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/sounds/blocks/device/water_gen.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/sounds/blocks/device/water_gen.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/sounds/blocks/machine/crucible.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/sounds/blocks/machine/crucible.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/sounds/blocks/machine/pulverizer.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/sounds/blocks/machine/pulverizer.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/sounds/blocks/machine/transposer.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/sounds/blocks/machine/transposer.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/apparatus/activator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/apparatus/activator.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/apparatus/breaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/apparatus/breaker.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/apparatus/collector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/apparatus/collector.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/device/item_buffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/device/item_buffer.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/dynamo/compression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/dynamo/compression.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/dynamo/enervation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/dynamo/enervation.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/dynamo/numismatic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/dynamo/numismatic.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/elements/slots_cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/elements/slots_cb.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/machine/centrifuge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/machine/centrifuge.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/machine/compactor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/machine/compactor.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/machine/insolator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/machine/insolator.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/machine/pulverizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/machine/pulverizer.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/machine/transposer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/machine/transposer.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/florb/florb_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/florb/florb_mask.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/upgrade/creative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/upgrade/creative.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/config/config_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/config/config_blue.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/config/config_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/config/config_none.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/config/config_omni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/config/config_omni.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/config/config_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/config/config_open.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/config/config_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/config/config_red.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/device/device_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/device/device_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/device/device_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/device/device_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_top_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_top_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_top_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_top_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_top_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_top_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_top_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_top_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_top_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_top_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_top_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_top_c.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/machine/precipitator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/machine/precipitator.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/placeholder.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/capacitor/mode_0_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/capacitor/mode_0_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/capacitor/mode_0_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/capacitor/mode_0_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/capacitor/mode_0_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/capacitor/mode_0_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/capacitor/mode_1_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/capacitor/mode_1_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/capacitor/mode_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/capacitor/mode_1_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/capacitor/mode_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/capacitor/mode_1_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/florb/florb_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/florb/florb_outline.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/apparatus/frame_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/apparatus/frame_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/config/config_blue_cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/config/config_blue_cb.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/config/config_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/config/config_green.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/config/config_omni_cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/config/config_omni_cb.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/config/config_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/config/config_orange.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/config/config_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/config/config_purple.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/config/config_red_cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/config/config_red_cb.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/config/config_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/config/config_yellow.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/device/device_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/device/device_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/dynamo/dynamo_steam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/dynamo/dynamo_steam.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_face_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_face_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_face_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_face_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_face_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_face_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_face_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_face_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_face_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_face_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_face_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_face_c.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_meter_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_meter_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_meter_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_meter_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_meter_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_meter_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_meter_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_meter_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_meter_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_meter_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_meter_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_meter_5.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_meter_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_meter_6.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_meter_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_meter_7.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_meter_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_meter_8.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_meter_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_meter_c.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_side_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_side_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_side_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_side_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_side_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_side_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_side_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_side_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_side_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_side_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_side_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_side_c.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_top_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_top_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_top_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_top_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_top_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_top_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_top_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_top_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_top_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_top_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_top_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_top_c.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_inner_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_inner_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_inner_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_inner_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_inner_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_inner_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_inner_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_inner_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_inner_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_inner_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_inner_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_inner_c.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_meter_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_meter_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_meter_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_meter_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_meter_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_meter_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_meter_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_meter_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_meter_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_meter_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_meter_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_meter_5.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_meter_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_meter_6.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_meter_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_meter_7.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_meter_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_meter_8.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_meter_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_meter_c.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_side_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_side_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_side_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_side_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_side_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_side_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_side_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_side_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_side_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_side_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_side_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cell_side_c.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/strongbox_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/strongbox_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/strongbox_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/strongbox_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/strongbox_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/strongbox_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/strongbox_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/strongbox_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/strongbox_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/strongbox_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/strongbox_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/strongbox_c.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_side_0_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_side_0_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_side_0_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_side_0_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_side_0_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_side_0_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_side_0_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_side_0_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_side_0_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_side_0_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_side_0_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_side_0_c.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_side_1_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_side_1_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_side_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_side_1_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_side_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_side_1_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_side_1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_side_1_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_side_1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_side_1_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_side_1_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_side_1_c.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/elements/slots_crafter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/elements/slots_crafter.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/dynamo_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/dynamo_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/machine_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/machine_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/capacitor/capacitor_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/capacitor/capacitor_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/capacitor/capacitor_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/capacitor/capacitor_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/capacitor/capacitor_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/capacitor/capacitor_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/capacitor/capacitor_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/capacitor/capacitor_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/capacitor/capacitor_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/capacitor/capacitor_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/capacitor/capacitor_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/capacitor/capacitor_c.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/florb/florb_magmatic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/florb/florb_magmatic.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/upgrade/incremental_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/upgrade/incremental_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/upgrade/incremental_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/upgrade/incremental_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/upgrade/incremental_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/upgrade/incremental_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/upgrade/incremental_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/upgrade/incremental_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/config/cell_config_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/config/cell_config_blue.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/config/cell_config_omni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/config/cell_config_omni.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/config/config_green_cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/config/config_green_cb.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/config/config_orange_cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/config/config_orange_cb.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/config/config_purple_cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/config/config_purple_cb.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/config/config_yellow_cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/config/config_yellow_cb.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/device/device_frame_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/device/device_frame_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/dynamo/dynamo_magmatic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/dynamo/dynamo_magmatic.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/dynamo/dynamo_overlay_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/dynamo/dynamo_overlay_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/dynamo/dynamo_overlay_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/dynamo/dynamo_overlay_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/dynamo/dynamo_overlay_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/dynamo/dynamo_overlay_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/dynamo/dynamo_overlay_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/dynamo/dynamo_overlay_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/dynamo/dynamo_overlay_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/dynamo/dynamo_overlay_c.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/dynamo/dynamo_reactant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/dynamo/dynamo_reactant.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/light/illuminator_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/light/illuminator_frame.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_bottom_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_bottom_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_bottom_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_bottom_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_bottom_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_bottom_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_bottom_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_bottom_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_bottom_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_bottom_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_bottom_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/cache_bottom_c.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/strongbox_top_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/strongbox_top_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/strongbox_top_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/strongbox_top_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/strongbox_top_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/strongbox_top_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/strongbox_top_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/strongbox_top_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/strongbox_top_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/strongbox_top_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/strongbox_top_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/strongbox_top_c.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_bottom_0_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_bottom_0_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_bottom_0_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_bottom_0_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_bottom_0_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_bottom_0_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_bottom_0_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_bottom_0_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_bottom_0_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_bottom_0_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_bottom_0_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_bottom_0_c.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_bottom_1_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_bottom_1_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_bottom_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_bottom_1_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_bottom_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_bottom_1_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_bottom_1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_bottom_1_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_bottom_1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_bottom_1_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_bottom_1_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/storage/tank_bottom_1_c.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/gui/elements/slots_crafter_cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/gui/elements/slots_crafter_cb.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/dynamo_coil_duct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/dynamo_coil_duct.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/dynamo_throttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/dynamo_throttle.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/frame/frame_device_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/frame/frame_device_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/frame/frame_machine_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/frame/frame_machine_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/frame/frame_machine_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/frame/frame_machine_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_creative_0_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_creative", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_0_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_creative_0_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_creative", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_0_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_creative_1_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_creative", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_1_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_creative_1_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_creative", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_1_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_creative_1_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_creative", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_1_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_standard0_0_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_standard0", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_0_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_standard0_0_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_standard0", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_0_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_standard0_1_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_standard0", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_1_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_standard0_1_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_standard0", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_1_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_standard0_1_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_standard0", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_1_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_standard1_0_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_standard1", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_0_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_standard1_0_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_standard1", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_0_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_standard1_1_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_standard1", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_1_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_standard1_1_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_standard1", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_1_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_standard1_1_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_standard1", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_1_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_standard2_0_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_standard2", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_0_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_standard2_0_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_standard2", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_0_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_standard2_1_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_standard2", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_1_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_standard2_1_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_standard2", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_1_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_standard2_1_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_standard2", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_1_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_standard3_0_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_standard3", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_0_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_standard3_0_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_standard3", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_0_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_standard3_1_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_standard3", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_1_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_standard3_1_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_standard3", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_1_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_standard3_1_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_standard3", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_1_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_standard4_0_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_standard4", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_0_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_standard4_0_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_standard4", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_0_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_standard4_1_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_standard4", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_1_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_standard4_1_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_standard4", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_1_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/models/item/capacitor_standard4_1_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermalexpansion:item/capacitor_standard4", 3 | "textures": { 4 | "layer1": "thermalexpansion:items/capacitor/mode_1_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/apparatus/apparatus_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/apparatus/apparatus_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/config/cell_config_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/config/cell_config_orange.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/device/device_face_fisher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/device/device_face_fisher.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/device/device_face_tapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/device/device_face_tapper.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/device/device_frame_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/device/device_frame_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/device/device_frame_inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/device/device_frame_inner.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/device/device_frame_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/device/device_frame_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/dynamo/dynamo_compression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/dynamo/dynamo_compression.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/dynamo/dynamo_enervation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/dynamo/dynamo_enervation.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/dynamo/dynamo_numismatic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/dynamo/dynamo_numismatic.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_frame_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_frame_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_frame_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_frame_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_overlay_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_overlay_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_overlay_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_overlay_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_overlay_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_overlay_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_overlay_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_overlay_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_overlay_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_overlay_c.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/dynamo_efficiency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/dynamo_efficiency.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/machine_furnace_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/machine_furnace_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/machine_secondary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/machine_secondary.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/frame/frame_apparatus_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/frame/frame_apparatus_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/frame/frame_machine_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/frame/frame_machine_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/frame/frame_machine_inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/frame/frame_machine_inner.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/device/device_active_fisher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/device/device_active_fisher.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/device/device_active_tapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/device/device_active_tapper.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/device/device_face_heat_sink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/device/device_face_heat_sink.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/device/device_face_nullifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/device/device_face_nullifier.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/device/device_face_water_gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/device/device_face_water_gen.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/dynamo/dynamo_coil_redstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/dynamo/dynamo_coil_redstone.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_face_charger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_face_charger.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_face_crafter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_face_crafter.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_face_furnace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_face_furnace.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_face_sawmill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_face_sawmill.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_face_smelter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_face_smelter.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_frame_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_frame_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_frame_inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_frame_inner.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/dynamo_steam_turbine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/dynamo_steam_turbine.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/machine_furnace_food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/machine_furnace_food.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/machine_insolator_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/machine_insolator_end.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/device/device_active_heat_sink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/device/device_active_heat_sink.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/device/device_active_nullifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/device/device_active_nullifier.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/device/device_active_water_gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/device/device_active_water_gen.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/device/device_face_item_buffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/device/device_face_item_buffer.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_charger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_charger.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_crafter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_crafter.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_crucible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_crucible.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_extruder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_extruder.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_furnace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_furnace.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_refinery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_refinery.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_sawmill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_sawmill.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_smelter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_smelter.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_face_compactor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_face_compactor.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_face_crucible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_face_crucible.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_face_extruder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_face_extruder.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_face_insolator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_face_insolator.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_face_pulverizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_face_pulverizer.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_face_refinery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_face_refinery.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_face_transposer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_face_transposer.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/dynamo_compression_fuel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/dynamo_compression_fuel.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/dynamo_magmatic_coolant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/dynamo_magmatic_coolant.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/machine_compactor_mint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/machine_compactor_mint.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/machine_extruder_diorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/machine_extruder_diorite.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/machine_extruder_granite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/machine_extruder_granite.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/machine_insolator_nether.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/machine_insolator_nether.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/machine_insolator_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/machine_insolator_tree.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/machine_pulverizer_geode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/machine_pulverizer_geode.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/machine_sawmill_tapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/machine_sawmill_tapper.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/machine_secondary_null.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/machine_secondary_null.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/apparatus/apparatus_face_breaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/apparatus/apparatus_face_breaker.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/device/device_active_item_buffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/device/device_active_item_buffer.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_compactor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_compactor.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_insolator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_insolator.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_pulverizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_pulverizer.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_transposer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_transposer.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_face_precipitator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_face_precipitator.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/dynamo_compression_coolant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/dynamo_compression_coolant.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/dynamo_reactant_elemental.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/dynamo_reactant_elemental.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/machine_charger_throughput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/machine_charger_throughput.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/machine_extruder_andesite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/machine_extruder_andesite.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/machine_extruder_no_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/machine_extruder_no_water.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/machine_furnace_pyrolysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/machine_furnace_pyrolysis.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/machine_insolator_mycelium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/machine_insolator_mycelium.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/machine_smelter_pyrotheum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/machine_smelter_pyrotheum.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/apparatus/apparatus_active_activator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/apparatus/apparatus_active_activator.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/apparatus/apparatus_active_breaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/apparatus/apparatus_active_breaker.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/apparatus/apparatus_active_collector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/apparatus/apparatus_active_collector.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/apparatus/apparatus_face_activator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/apparatus/apparatus_face_activator.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/apparatus/apparatus_face_collector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/apparatus/apparatus_face_collector.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_precipitator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_precipitator.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/machine_pulverizer_petrotheum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/machine_pulverizer_petrotheum.png -------------------------------------------------------------------------------- /src/main/java/cofh/thermalexpansion/util/managers/FisherManager.java: -------------------------------------------------------------------------------- 1 | package cofh.thermalexpansion.util.managers; 2 | 3 | public class FisherManager { 4 | 5 | /* ADD MAPPING */ 6 | 7 | public static void refreshMappings() { 8 | 9 | } 10 | 11 | } 12 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/machine_precipitator_batch_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/machine_precipitator_batch_size.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/machine_precipitator_packed_ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/machine_precipitator_packed_ice.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/machine_precipitator_snow_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/items/augment/machine_precipitator_snow_layer.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_extruder_underlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCBProject/ThermalExpansion/HEAD/src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_extruder_underlay.png -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/machine_sawmill_tapper.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 16, 4 | "interpolate": true, 5 | "frames": [ 6 | 0, 7 | 1, 8 | 2, 9 | 3, 10 | 2, 11 | 1 12 | ] 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/machine_secondary_null.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 16, 4 | "interpolate": true, 5 | "frames": [ 6 | 0, 7 | 1, 8 | 2, 9 | 3, 10 | 2, 11 | 1 12 | ] 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/machine_extruder_no_water.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 16, 4 | "interpolate": true, 5 | "frames": [ 6 | 0, 7 | 1, 8 | 2, 9 | 3, 10 | 2, 11 | 1 12 | ] 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/machine_smelter_pyrotheum.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 8, 4 | "interpolate": true, 5 | "frames": [ 6 | 0, 7 | 1, 8 | 2, 9 | 3, 10 | 2, 11 | 1 12 | ] 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Sep 14 12:28:28 PDT 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.7-bin.zip 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/items/augment/machine_pulverizer_petrotheum.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 8, 4 | "interpolate": true, 5 | "frames": [ 6 | 0, 7 | 1, 8 | 2, 9 | 3, 10 | 2, 11 | 1 12 | ] 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_furnace.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 8, 4 | "interpolate": true, 5 | "frames": [ 6 | 0, 7 | 1, 8 | 2, 9 | 3, 10 | 4, 11 | 3, 12 | 2, 13 | 1 14 | ] 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_smelter.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 8, 4 | "interpolate": true, 5 | "frames": [ 6 | 0, 7 | 1, 8 | 2, 9 | 3, 10 | 4, 11 | 3, 12 | 2, 13 | 1 14 | ] 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/api/java/mcjty/theoneprobe/api/IItemStyle.java: -------------------------------------------------------------------------------- 1 | package mcjty.theoneprobe.api; 2 | 3 | /** 4 | * Style for the item element. 5 | */ 6 | public interface IItemStyle { 7 | IItemStyle width(int w); 8 | 9 | IItemStyle height(int h); 10 | 11 | int getWidth(); 12 | 13 | int getHeight(); 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/assets/thermalexpansion/textures/blocks/machine/machine_active_charger.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 8, 4 | "interpolate": true, 5 | "frames": [ 6 | 3, 7 | 4, 8 | 5, 9 | 6, 10 | 5, 11 | 4, 12 | 3, 13 | 2, 14 | 1, 15 | 0, 16 | 1, 17 | 2 18 | ] 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/api/java/mcjty/theoneprobe/api/NumberFormat.java: -------------------------------------------------------------------------------- 1 | package mcjty.theoneprobe.api; 2 | 3 | public enum NumberFormat { 4 | FULL, // Full format 5 | COMPACT, // Compact format (like 3.5M) 6 | COMMAS, // Language dependent comma separated format 7 | NONE // No output (empty string) 8 | } 9 | -------------------------------------------------------------------------------- /src/main/java/cofh/thermalexpansion/gui/container/ISchematicContainer.java: -------------------------------------------------------------------------------- 1 | package cofh.thermalexpansion.gui.container; 2 | 3 | import net.minecraft.inventory.Slot; 4 | 5 | public interface ISchematicContainer { 6 | 7 | void writeSchematic(); 8 | 9 | boolean canWriteSchematic(); 10 | 11 | Slot[] getCraftingSlots(); 12 | 13 | Slot getResultSlot(); 14 | 15 | } 16 | -------------------------------------------------------------------------------- /src/api/java/mcjty/theoneprobe/api/IProbeHitEntityData.java: -------------------------------------------------------------------------------- 1 | package mcjty.theoneprobe.api; 2 | 3 | import net.minecraft.util.EnumFacing; 4 | import net.minecraft.util.math.BlockPos; 5 | import net.minecraft.util.math.Vec3d; 6 | 7 | /** 8 | * Access information about where the probe hit the entity 9 | */ 10 | public interface IProbeHitEntityData { 11 | 12 | Vec3d getHitVec(); 13 | } 14 | -------------------------------------------------------------------------------- /src/api/java/mcjty/theoneprobe/api/IElementFactory.java: -------------------------------------------------------------------------------- 1 | package mcjty.theoneprobe.api; 2 | 3 | import io.netty.buffer.ByteBuf; 4 | 5 | /** 6 | * A factory for elements 7 | */ 8 | public interface IElementFactory { 9 | 10 | /** 11 | * Create an element from a network buffer. This should be 12 | * symmetrical to what IElement.toBytes() creates. 13 | */ 14 | IElement createElement(ByteBuf buf); 15 | } 16 | -------------------------------------------------------------------------------- /src/main/java/cofh/thermalexpansion/init/TEPlugins.java: -------------------------------------------------------------------------------- 1 | package cofh.thermalexpansion.init; 2 | 3 | import cofh.thermalexpansion.plugins.forestry.ForestryPlugin; 4 | import cofh.thermalexpansion.plugins.natura.NaturaPlugin; 5 | 6 | public class TEPlugins { 7 | 8 | private TEPlugins() { 9 | 10 | } 11 | 12 | public static void preInit() { 13 | 14 | } 15 | 16 | public static void initialize() { 17 | 18 | } 19 | 20 | public static void postInit() { 21 | 22 | ForestryPlugin.initialize(); 23 | NaturaPlugin.initialize(); 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /src/api/java/invtweaks/api/container/IgnoreContainer.java: -------------------------------------------------------------------------------- 1 | package invtweaks.api.container; 2 | 3 | import java.lang.annotation.ElementType; 4 | import java.lang.annotation.Retention; 5 | import java.lang.annotation.RetentionPolicy; 6 | import java.lang.annotation.Target; 7 | 8 | /** 9 | * Use this annotation to override inherited annotation properties and mark a Container as unsortable. 10 | * This effect is inherited as well. 11 | */ 12 | @Retention (RetentionPolicy.RUNTIME) 13 | @Target (ElementType.TYPE) 14 | public @interface IgnoreContainer { 15 | 16 | } 17 | -------------------------------------------------------------------------------- /src/api/java/mcjty/theoneprobe/api/ProbeMode.java: -------------------------------------------------------------------------------- 1 | package mcjty.theoneprobe.api; 2 | 3 | /** 4 | * A mode that indicates what kind of information we want to display. 5 | * In your IProbeInfoAccessor or IProbeInfoProvider you can use this mode 6 | * to show different information. 7 | */ 8 | public enum ProbeMode { 9 | NORMAL, // Normal display. What a user expects to see 10 | EXTENDED, // Extended. This is used when the player is sneaking 11 | DEBUG // Creative only. This is used when the player holds a creative probe 12 | } 13 | -------------------------------------------------------------------------------- /src/main/resources/mcmod.info: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "modid": "thermalexpansion", 4 | "name": "Thermal Expansion", 5 | "description": "Expanding Minecraft Thermally - provides new options for automation and processing!", 6 | "version": "${version}", 7 | "credits": "Team CoFH", 8 | "logoFile": "assets/thermalexpansion/textures/logo.png", 9 | "mcversion": "${mc_version}", 10 | "url": "http://www.teamcofh.com", 11 | "updateUrl": "", 12 | "authorList": [ "Team CoFH" ], 13 | "parent": "", 14 | "screenshots": [], 15 | "dependencies": [ 16 | "Forge,CodeChickenLib,cofhcore,thermalfoundation" 17 | ] 18 | } 19 | ] 20 | -------------------------------------------------------------------------------- /src/api/java/invtweaks/api/container/ContainerSectionCallback.java: -------------------------------------------------------------------------------- 1 | package invtweaks.api.container; 2 | 3 | import java.lang.annotation.ElementType; 4 | import java.lang.annotation.Retention; 5 | import java.lang.annotation.RetentionPolicy; 6 | import java.lang.annotation.Target; 7 | 8 | /** 9 | * A marker for a method to call which returns the set of ContainerSections for this container. 10 | *
11 | * Signature of the method should be Map
12 | * Does not enable the Inventory Tweaks sorting buttons for this container.
13 | */
14 | @Retention (RetentionPolicy.RUNTIME)
15 | @Target (ElementType.TYPE)
16 | public @interface InventoryContainer {
17 |
18 | // Set to true if the Inventory Tweaks options button should be shown for this container.
19 | // (For instance, if you are replacing a vanilla container such as the player's inventory)
20 | boolean showOptions() default true;
21 | }
22 |
--------------------------------------------------------------------------------
/src/api/java/mcjty/theoneprobe/api/IElement.java:
--------------------------------------------------------------------------------
1 | package mcjty.theoneprobe.api;
2 |
3 | import io.netty.buffer.ByteBuf;
4 |
5 | /**
6 | * An element in the probe gui.
7 | */
8 | public interface IElement {
9 |
10 | /**
11 | * Render this element at the location given by the location
12 | */
13 | void render(int x, int y);
14 |
15 | /**
16 | * Get the width of this element
17 | */
18 | int getWidth();
19 |
20 | /**
21 | * Get the height of this element
22 | */
23 | int getHeight();
24 |
25 | /**
26 | * Persist this element to the given network buffer. This should be symmetrical to
27 | * what IElementFactory.createElement() expects.
28 | */
29 | void toBytes(ByteBuf buf);
30 |
31 | /**
32 | * Get the identifier for this element (as returned by ITheOneProbe.registerElementFactory()
33 | */
34 | int getID();
35 | }
36 |
--------------------------------------------------------------------------------
/src/main/java/cofh/thermalexpansion/gui/client/apparatus/GuiBreaker.java:
--------------------------------------------------------------------------------
1 | package cofh.thermalexpansion.gui.client.apparatus;
2 |
3 | import cofh.thermalexpansion.gui.client.GuiPoweredBase;
4 | import cofh.thermalexpansion.gui.container.ContainerTEBase;
5 | import cofh.thermalexpansion.init.TEProps;
6 | import net.minecraft.entity.player.InventoryPlayer;
7 | import net.minecraft.tileentity.TileEntity;
8 | import net.minecraft.util.ResourceLocation;
9 |
10 | public class GuiBreaker extends GuiPoweredBase {
11 |
12 | public static final String TEX_PATH = TEProps.PATH_GUI_APPARATUS + "breaker.png";
13 | public static final ResourceLocation TEXTURE = new ResourceLocation(TEX_PATH);
14 |
15 | public GuiBreaker(InventoryPlayer inventory, TileEntity tile) {
16 |
17 | super(new ContainerTEBase(inventory, tile), tile, inventory.player, TEXTURE);
18 |
19 | generateInfo("tab.thermalexpansion.apparatus.breaker");
20 | }
21 |
22 | }
23 |
--------------------------------------------------------------------------------
/src/main/java/cofh/thermalexpansion/gui/client/apparatus/GuiCollector.java:
--------------------------------------------------------------------------------
1 | package cofh.thermalexpansion.gui.client.apparatus;
2 |
3 | import cofh.thermalexpansion.gui.client.GuiPoweredBase;
4 | import cofh.thermalexpansion.gui.container.ContainerTEBase;
5 | import cofh.thermalexpansion.init.TEProps;
6 | import net.minecraft.entity.player.InventoryPlayer;
7 | import net.minecraft.tileentity.TileEntity;
8 | import net.minecraft.util.ResourceLocation;
9 |
10 | public class GuiCollector extends GuiPoweredBase {
11 |
12 | public static final String TEX_PATH = TEProps.PATH_GUI_APPARATUS + "breaker.png";
13 | public static final ResourceLocation TEXTURE = new ResourceLocation(TEX_PATH);
14 |
15 | public GuiCollector(InventoryPlayer inventory, TileEntity tile) {
16 |
17 | super(new ContainerTEBase(inventory, tile), tile, inventory.player, TEXTURE);
18 |
19 | generateInfo("tab.thermalexpansion.apparatus.collector");
20 | }
21 |
22 | }
23 |
--------------------------------------------------------------------------------
/src/api/java/mcjty/theoneprobe/api/IProbeInfoAccessor.java:
--------------------------------------------------------------------------------
1 | package mcjty.theoneprobe.api;
2 |
3 | import net.minecraft.block.state.IBlockState;
4 | import net.minecraft.entity.player.EntityPlayer;
5 | import net.minecraft.world.World;
6 |
7 | /**
8 | * You can implement this in your block implementation if you want to support
9 | * the probe. An alternative to this is to make an IProveInfoProvider.
10 | * Note that if you implement this then it will be called last (after all the providers)
11 | */
12 | public interface IProbeInfoAccessor {
13 |
14 | /**
15 | * Add information for the probe info for the given block. This is always
16 | * called server side.
17 | * The given probeInfo object represents a vertical layout. So adding elements to that
18 | * will cause them to be grouped vertically.
19 | */
20 | void addProbeInfo(ProbeMode mode, IProbeInfo probeInfo, EntityPlayer player, World world, IBlockState blockState, IProbeHitData data);
21 | }
22 |
--------------------------------------------------------------------------------
/src/api/java/mcjty/theoneprobe/api/IProbeInfoEntityAccessor.java:
--------------------------------------------------------------------------------
1 | package mcjty.theoneprobe.api;
2 |
3 | import net.minecraft.entity.Entity;
4 | import net.minecraft.entity.player.EntityPlayer;
5 | import net.minecraft.world.World;
6 |
7 | /**
8 | * You can implement this in your entity implementation if you want to support
9 | * the probe. An alternative to this is to make an IProveInfoProvider.
10 | * Note that if you implement this then it will be called last (after all the providers)
11 | */
12 | public interface IProbeInfoEntityAccessor {
13 |
14 | /**
15 | * Add information for the probe info for the given entity. This is always
16 | * called server side.
17 | * The given probeInfo object represents a vertical layout. So adding elements to that
18 | * will cause them to be grouped vertically.
19 | */
20 | void addProbeInfo(ProbeMode mode, IProbeInfo probeInfo, EntityPlayer player, World world, Entity entity, IProbeHitEntityData data);
21 | }
22 |
--------------------------------------------------------------------------------
/src/main/java/cofh/thermalexpansion/gui/container/dynamo/ContainerDynamoSteam.java:
--------------------------------------------------------------------------------
1 | package cofh.thermalexpansion.gui.container.dynamo;
2 |
3 | import cofh.lib.gui.slot.ISlotValidator;
4 | import cofh.lib.gui.slot.SlotValidated;
5 | import cofh.thermalexpansion.block.dynamo.TileDynamoSteam;
6 | import cofh.thermalexpansion.gui.container.ContainerTEBase;
7 | import net.minecraft.entity.player.InventoryPlayer;
8 | import net.minecraft.item.ItemStack;
9 | import net.minecraft.tileentity.TileEntity;
10 |
11 | public class ContainerDynamoSteam extends ContainerTEBase implements ISlotValidator {
12 |
13 | TileDynamoSteam myTile;
14 |
15 | public ContainerDynamoSteam(InventoryPlayer inventory, TileEntity tile) {
16 |
17 | super(inventory, tile);
18 |
19 | myTile = (TileDynamoSteam) tile;
20 | addSlotToContainer(new SlotValidated(this, myTile, 0, 44, 35));
21 | }
22 |
23 | @Override
24 | public boolean isItemValid(ItemStack stack) {
25 |
26 | return myTile.isItemValidForSlot(0, stack);
27 | }
28 |
29 | }
30 |
--------------------------------------------------------------------------------
/src/main/java/cofh/thermalexpansion/gui/container/dynamo/ContainerDynamoReactant.java:
--------------------------------------------------------------------------------
1 | package cofh.thermalexpansion.gui.container.dynamo;
2 |
3 | import cofh.lib.gui.slot.ISlotValidator;
4 | import cofh.lib.gui.slot.SlotValidated;
5 | import cofh.thermalexpansion.block.dynamo.TileDynamoReactant;
6 | import cofh.thermalexpansion.gui.container.ContainerTEBase;
7 | import net.minecraft.entity.player.InventoryPlayer;
8 | import net.minecraft.item.ItemStack;
9 | import net.minecraft.tileentity.TileEntity;
10 |
11 | public class ContainerDynamoReactant extends ContainerTEBase implements ISlotValidator {
12 |
13 | TileDynamoReactant myTile;
14 |
15 | public ContainerDynamoReactant(InventoryPlayer inventory, TileEntity tile) {
16 |
17 | super(inventory, tile);
18 |
19 | myTile = (TileDynamoReactant) tile;
20 | addSlotToContainer(new SlotValidated(this, myTile, 0, 44, 35));
21 | }
22 |
23 | @Override
24 | public boolean isItemValid(ItemStack stack) {
25 |
26 | return myTile.isItemValidForSlot(0, stack);
27 | }
28 |
29 | }
30 |
--------------------------------------------------------------------------------
/src/main/java/cofh/thermalexpansion/plugins/jei/crafting/BaseRecipeWrapper.java:
--------------------------------------------------------------------------------
1 | package cofh.thermalexpansion.plugins.jei.crafting;
2 |
3 | import cofh.lib.util.helpers.StringHelper;
4 | import mezz.jei.api.gui.IDrawableAnimated;
5 | import mezz.jei.api.recipe.BlankRecipeWrapper;
6 |
7 | import javax.annotation.Nullable;
8 | import java.util.ArrayList;
9 | import java.util.List;
10 |
11 | public abstract class BaseRecipeWrapper extends BlankRecipeWrapper {
12 |
13 | protected int energy;
14 | protected String uId;
15 |
16 | protected IDrawableAnimated energyMeter;
17 |
18 | public String getUid() {
19 |
20 | return uId;
21 | }
22 |
23 | @Nullable
24 | public List