├── .editorconfig ├── .github └── workflows │ ├── build.yml │ ├── pull_request.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE-CCBYNCSA.md ├── LICENSE-MIT.md ├── LICENSE.md ├── README.md ├── Translators-Changes.md ├── Translators-README.md ├── download_nightly.md ├── fabric ├── build.gradle.kts ├── gradle.properties ├── run │ └── config │ │ └── fabric_loader_dependencies.json └── src │ ├── generated │ └── resources │ │ ├── assets │ │ └── createbigcannons │ │ │ ├── blockstates │ │ │ ├── ap_shell.json │ │ │ ├── ap_shot.json │ │ │ ├── autocannon_ammo_container.json │ │ │ ├── autocannon_barrel_cast_mould.json │ │ │ ├── autocannon_breech_cast_mould.json │ │ │ ├── autocannon_recoil_spring_cast_mould.json │ │ │ ├── bag_of_grapeshot.json │ │ │ ├── basin_foundry_lid.json │ │ │ ├── big_cartridge.json │ │ │ ├── bronze_autocannon_barrel.json │ │ │ ├── bronze_autocannon_breech.json │ │ │ ├── bronze_autocannon_recoil_spring.json │ │ │ ├── bronze_cannon_barrel.json │ │ │ ├── bronze_cannon_chamber.json │ │ │ ├── bronze_cannon_end.json │ │ │ ├── bronze_quickfiring_breech.json │ │ │ ├── bronze_sliding_breech.json │ │ │ ├── built_up_cannon.json │ │ │ ├── built_up_nethersteel_cannon_barrel.json │ │ │ ├── built_up_nethersteel_cannon_chamber.json │ │ │ ├── built_up_steel_cannon_barrel.json │ │ │ ├── built_up_steel_cannon_chamber.json │ │ │ ├── cannon_builder.json │ │ │ ├── cannon_builder_head.json │ │ │ ├── cannon_carriage.json │ │ │ ├── cannon_cast.json │ │ │ ├── cannon_drill.json │ │ │ ├── cannon_drill_bit.json │ │ │ ├── cannon_end_cast_mould.json │ │ │ ├── cannon_loader.json │ │ │ ├── cannon_mount.json │ │ │ ├── cannon_mount_extension.json │ │ │ ├── cast_iron_autocannon_barrel.json │ │ │ ├── cast_iron_autocannon_breech.json │ │ │ ├── cast_iron_autocannon_recoil_spring.json │ │ │ ├── cast_iron_block.json │ │ │ ├── cast_iron_cannon_barrel.json │ │ │ ├── cast_iron_cannon_chamber.json │ │ │ ├── cast_iron_cannon_end.json │ │ │ ├── cast_iron_quickfiring_breech.json │ │ │ ├── cast_iron_sliding_breech.json │ │ │ ├── casting_sand.json │ │ │ ├── creative_autocannon_ammo_container.json │ │ │ ├── drop_mortar_shell.json │ │ │ ├── finished_cannon_cast.json │ │ │ ├── fixed_cannon_mount.json │ │ │ ├── fluid_shell.json │ │ │ ├── he_shell.json │ │ │ ├── incomplete_bronze_autocannon_breech.json │ │ │ ├── incomplete_bronze_autocannon_recoil_spring.json │ │ │ ├── incomplete_bronze_sliding_breech.json │ │ │ ├── incomplete_cast_iron_autocannon_breech.json │ │ │ ├── incomplete_cast_iron_autocannon_recoil_spring.json │ │ │ ├── incomplete_cast_iron_sliding_breech.json │ │ │ ├── incomplete_nethersteel_screw_breech.json │ │ │ ├── incomplete_steel_autocannon_breech.json │ │ │ ├── incomplete_steel_autocannon_recoil_spring.json │ │ │ ├── incomplete_steel_screw_breech.json │ │ │ ├── incomplete_steel_sliding_breech.json │ │ │ ├── large_cast_mould.json │ │ │ ├── large_nethersteel_cannon_layer.json │ │ │ ├── large_steel_cannon_layer.json │ │ │ ├── log_cannon_chamber.json │ │ │ ├── log_cannon_end.json │ │ │ ├── medium_cast_mould.json │ │ │ ├── medium_nethersteel_cannon_layer.json │ │ │ ├── medium_steel_cannon_layer.json │ │ │ ├── molten_bronze.json │ │ │ ├── molten_cast_iron.json │ │ │ ├── molten_nethersteel.json │ │ │ ├── molten_steel.json │ │ │ ├── mortar_stone.json │ │ │ ├── mortar_stone_projectile.json │ │ │ ├── nethersteel_block.json │ │ │ ├── nethersteel_cannon_barrel.json │ │ │ ├── nethersteel_cannon_chamber.json │ │ │ ├── nethersteel_screw_breech.json │ │ │ ├── powder_charge.json │ │ │ ├── ram_head.json │ │ │ ├── screw_breech_cast_mould.json │ │ │ ├── shrapnel_shell.json │ │ │ ├── sliding_breech_cast_mould.json │ │ │ ├── small_cast_mould.json │ │ │ ├── small_nethersteel_cannon_layer.json │ │ │ ├── small_steel_cannon_layer.json │ │ │ ├── smoke_shell.json │ │ │ ├── solid_shot.json │ │ │ ├── steel_autocannon_barrel.json │ │ │ ├── steel_autocannon_breech.json │ │ │ ├── steel_autocannon_recoil_spring.json │ │ │ ├── steel_cannon_barrel.json │ │ │ ├── steel_cannon_chamber.json │ │ │ ├── steel_quickfiring_breech.json │ │ │ ├── steel_screw_breech.json │ │ │ ├── steel_sliding_breech.json │ │ │ ├── thick_nethersteel_cannon_chamber.json │ │ │ ├── thick_steel_cannon_chamber.json │ │ │ ├── traffic_cone.json │ │ │ ├── unbored_bronze_autocannon_barrel.json │ │ │ ├── unbored_bronze_autocannon_breech.json │ │ │ ├── unbored_bronze_autocannon_recoil_spring.json │ │ │ ├── unbored_bronze_cannon_barrel.json │ │ │ ├── unbored_bronze_cannon_chamber.json │ │ │ ├── unbored_bronze_sliding_breech.json │ │ │ ├── unbored_cast_iron_autocannon_barrel.json │ │ │ ├── unbored_cast_iron_autocannon_breech.json │ │ │ ├── unbored_cast_iron_autocannon_recoil_spring.json │ │ │ ├── unbored_cast_iron_cannon_barrel.json │ │ │ ├── unbored_cast_iron_cannon_chamber.json │ │ │ ├── unbored_cast_iron_sliding_breech.json │ │ │ ├── unbored_large_nethersteel_cannon_layer.json │ │ │ ├── unbored_large_steel_cannon_layer.json │ │ │ ├── unbored_medium_nethersteel_cannon_layer.json │ │ │ ├── unbored_medium_steel_cannon_layer.json │ │ │ ├── unbored_nethersteel_screw_breech.json │ │ │ ├── unbored_small_nethersteel_cannon_layer.json │ │ │ ├── unbored_small_steel_cannon_layer.json │ │ │ ├── unbored_steel_autocannon_barrel.json │ │ │ ├── unbored_steel_autocannon_breech.json │ │ │ ├── unbored_steel_autocannon_recoil_spring.json │ │ │ ├── unbored_steel_screw_breech.json │ │ │ ├── unbored_steel_sliding_breech.json │ │ │ ├── unbored_very_large_nethersteel_cannon_layer.json │ │ │ ├── unbored_very_large_steel_cannon_layer.json │ │ │ ├── unbored_very_small_nethersteel_cannon_layer.json │ │ │ ├── unbored_very_small_steel_cannon_layer.json │ │ │ ├── very_large_cast_mould.json │ │ │ ├── very_large_nethersteel_cannon_layer.json │ │ │ ├── very_large_steel_cannon_layer.json │ │ │ ├── very_small_cast_mould.json │ │ │ ├── very_small_nethersteel_cannon_layer.json │ │ │ ├── very_small_steel_cannon_layer.json │ │ │ ├── worm_head.json │ │ │ ├── wrought_iron_cannon_chamber.json │ │ │ ├── wrought_iron_cannon_end.json │ │ │ ├── wrought_iron_drop_mortar_end.json │ │ │ └── yaw_controller.json │ │ │ ├── lang │ │ │ ├── en_ud.json │ │ │ └── en_us.json │ │ │ ├── models │ │ │ ├── block │ │ │ │ ├── ap_shell.json │ │ │ │ ├── ap_shot.json │ │ │ │ ├── autocannon │ │ │ │ │ ├── bronze_autocannon_spring.json │ │ │ │ │ ├── cast_iron_autocannon_spring.json │ │ │ │ │ └── steel_autocannon_spring.json │ │ │ │ ├── bag_of_grapeshot.json │ │ │ │ ├── bronze_autocannon_barrel_assembled.json │ │ │ │ ├── bronze_autocannon_barrel_flanged.json │ │ │ │ ├── bronze_autocannon_barrel_nothing.json │ │ │ │ ├── bronze_autocannon_breech.json │ │ │ │ ├── bronze_autocannon_breech_handle.json │ │ │ │ ├── bronze_autocannon_recoil_spring.json │ │ │ │ ├── bronze_cannon_barrel.json │ │ │ │ ├── bronze_cannon_chamber.json │ │ │ │ ├── bronze_cannon_end.json │ │ │ │ ├── bronze_quickfiring_breech.json │ │ │ │ ├── bronze_quickfiring_breech_rotated.json │ │ │ │ ├── bronze_sliding_breech.json │ │ │ │ ├── bronze_sliding_breech_rotated.json │ │ │ │ ├── built_up_cannon.json │ │ │ │ ├── built_up_nethersteel_cannon_barrel.json │ │ │ │ ├── built_up_nethersteel_cannon_chamber.json │ │ │ │ ├── built_up_steel_cannon_barrel.json │ │ │ │ ├── built_up_steel_cannon_chamber.json │ │ │ │ ├── cannon_cast.json │ │ │ │ ├── cast_iron_autocannon_barrel_assembled.json │ │ │ │ ├── cast_iron_autocannon_barrel_flanged.json │ │ │ │ ├── cast_iron_autocannon_barrel_nothing.json │ │ │ │ ├── cast_iron_autocannon_breech.json │ │ │ │ ├── cast_iron_autocannon_breech_handle.json │ │ │ │ ├── cast_iron_autocannon_recoil_spring.json │ │ │ │ ├── cast_iron_block.json │ │ │ │ ├── cast_iron_cannon_barrel.json │ │ │ │ ├── cast_iron_cannon_chamber.json │ │ │ │ ├── cast_iron_cannon_end.json │ │ │ │ ├── cast_iron_quickfiring_breech.json │ │ │ │ ├── cast_iron_quickfiring_breech_rotated.json │ │ │ │ ├── cast_iron_sliding_breech.json │ │ │ │ ├── cast_iron_sliding_breech_rotated.json │ │ │ │ ├── casting_sand.json │ │ │ │ ├── finished_cannon_cast.json │ │ │ │ ├── fluid_shell.json │ │ │ │ ├── he_shell.json │ │ │ │ ├── incomplete_bronze_autocannon_breech.json │ │ │ │ ├── incomplete_bronze_autocannon_recoil_spring.json │ │ │ │ ├── incomplete_bronze_sliding_breech.json │ │ │ │ ├── incomplete_bronze_sliding_breech_axis.json │ │ │ │ ├── incomplete_bronze_sliding_breech_axis_rotated.json │ │ │ │ ├── incomplete_bronze_sliding_breech_rotated.json │ │ │ │ ├── incomplete_cast_iron_autocannon_breech.json │ │ │ │ ├── incomplete_cast_iron_autocannon_recoil_spring.json │ │ │ │ ├── incomplete_cast_iron_sliding_breech.json │ │ │ │ ├── incomplete_cast_iron_sliding_breech_axis.json │ │ │ │ ├── incomplete_cast_iron_sliding_breech_axis_rotated.json │ │ │ │ ├── incomplete_cast_iron_sliding_breech_rotated.json │ │ │ │ ├── incomplete_nethersteel_screw_breech.json │ │ │ │ ├── incomplete_nethersteel_screw_breech_axis.json │ │ │ │ ├── incomplete_steel_autocannon_breech.json │ │ │ │ ├── incomplete_steel_autocannon_recoil_spring.json │ │ │ │ ├── incomplete_steel_screw_breech.json │ │ │ │ ├── incomplete_steel_screw_breech_axis.json │ │ │ │ ├── incomplete_steel_sliding_breech.json │ │ │ │ ├── incomplete_steel_sliding_breech_axis.json │ │ │ │ ├── incomplete_steel_sliding_breech_axis_rotated.json │ │ │ │ ├── incomplete_steel_sliding_breech_rotated.json │ │ │ │ ├── large_nethersteel_cannon_layer.json │ │ │ │ ├── large_steel_cannon_layer.json │ │ │ │ ├── log_cannon_chamber.json │ │ │ │ ├── log_cannon_end.json │ │ │ │ ├── medium_nethersteel_cannon_layer.json │ │ │ │ ├── medium_steel_cannon_layer.json │ │ │ │ ├── molten_bronze.json │ │ │ │ ├── molten_cast_iron.json │ │ │ │ ├── molten_nethersteel.json │ │ │ │ ├── molten_steel.json │ │ │ │ ├── mortar_stone.json │ │ │ │ ├── nethersteel_block.json │ │ │ │ ├── nethersteel_cannon_barrel.json │ │ │ │ ├── nethersteel_cannon_chamber.json │ │ │ │ ├── nethersteel_screw_breech.json │ │ │ │ ├── shrapnel_shell.json │ │ │ │ ├── small_nethersteel_cannon_layer.json │ │ │ │ ├── small_steel_cannon_layer.json │ │ │ │ ├── smoke_shell.json │ │ │ │ ├── solid_shot.json │ │ │ │ ├── steel_autocannon_barrel_assembled.json │ │ │ │ ├── steel_autocannon_barrel_flanged.json │ │ │ │ ├── steel_autocannon_barrel_nothing.json │ │ │ │ ├── steel_autocannon_breech.json │ │ │ │ ├── steel_autocannon_breech_handle.json │ │ │ │ ├── steel_autocannon_recoil_spring.json │ │ │ │ ├── steel_cannon_barrel.json │ │ │ │ ├── steel_cannon_chamber.json │ │ │ │ ├── steel_quickfiring_breech.json │ │ │ │ ├── steel_quickfiring_breech_rotated.json │ │ │ │ ├── steel_screw_breech.json │ │ │ │ ├── steel_sliding_breech.json │ │ │ │ ├── steel_sliding_breech_rotated.json │ │ │ │ ├── thick_nethersteel_cannon_chamber.json │ │ │ │ ├── thick_steel_cannon_chamber.json │ │ │ │ ├── unbored_bronze_autocannon_barrel.json │ │ │ │ ├── unbored_bronze_autocannon_breech.json │ │ │ │ ├── unbored_bronze_autocannon_recoil_spring.json │ │ │ │ ├── unbored_bronze_cannon_barrel.json │ │ │ │ ├── unbored_bronze_cannon_chamber.json │ │ │ │ ├── unbored_bronze_sliding_breech.json │ │ │ │ ├── unbored_bronze_sliding_breech_rotated.json │ │ │ │ ├── unbored_cast_iron_autocannon_barrel.json │ │ │ │ ├── unbored_cast_iron_autocannon_breech.json │ │ │ │ ├── unbored_cast_iron_autocannon_recoil_spring.json │ │ │ │ ├── unbored_cast_iron_cannon_barrel.json │ │ │ │ ├── unbored_cast_iron_cannon_chamber.json │ │ │ │ ├── unbored_cast_iron_sliding_breech.json │ │ │ │ ├── unbored_cast_iron_sliding_breech_rotated.json │ │ │ │ ├── unbored_large_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_large_steel_cannon_layer.json │ │ │ │ ├── unbored_medium_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_medium_steel_cannon_layer.json │ │ │ │ ├── unbored_nethersteel_screw_breech.json │ │ │ │ ├── unbored_small_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_small_steel_cannon_layer.json │ │ │ │ ├── unbored_steel_autocannon_barrel.json │ │ │ │ ├── unbored_steel_autocannon_breech.json │ │ │ │ ├── unbored_steel_autocannon_recoil_spring.json │ │ │ │ ├── unbored_steel_screw_breech.json │ │ │ │ ├── unbored_steel_sliding_breech.json │ │ │ │ ├── unbored_steel_sliding_breech_rotated.json │ │ │ │ ├── unbored_very_large_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_very_large_steel_cannon_layer.json │ │ │ │ ├── unbored_very_small_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_very_small_steel_cannon_layer.json │ │ │ │ ├── very_large_nethersteel_cannon_layer.json │ │ │ │ ├── very_large_steel_cannon_layer.json │ │ │ │ ├── very_small_nethersteel_cannon_layer.json │ │ │ │ ├── very_small_steel_cannon_layer.json │ │ │ │ ├── wrought_iron_cannon_chamber.json │ │ │ │ ├── wrought_iron_cannon_end.json │ │ │ │ └── wrought_iron_drop_mortar_end.json │ │ │ └── item │ │ │ │ ├── ap_autocannon_round.json │ │ │ │ ├── ap_shell.json │ │ │ │ ├── ap_shell_base_fuze.json │ │ │ │ ├── ap_shell_head_fuze.json │ │ │ │ ├── ap_shot.json │ │ │ │ ├── autocannon_ammo_container.json │ │ │ │ ├── autocannon_barrel_cast_mould.json │ │ │ │ ├── autocannon_breech_cast_mould.json │ │ │ │ ├── autocannon_cartridge_sheet.json │ │ │ │ ├── autocannon_recoil_spring_cast_mould.json │ │ │ │ ├── bag_of_grapeshot.json │ │ │ │ ├── basin_foundry_lid.json │ │ │ │ ├── big_cartridge.json │ │ │ │ ├── block_armor_inspection_tool.json │ │ │ │ ├── bronze_autocannon_barrel.json │ │ │ │ ├── bronze_autocannon_breech.json │ │ │ │ ├── bronze_autocannon_breech_extractor.json │ │ │ │ ├── bronze_autocannon_recoil_spring.json │ │ │ │ ├── bronze_cannon_barrel.json │ │ │ │ ├── bronze_cannon_chamber.json │ │ │ │ ├── bronze_cannon_end.json │ │ │ │ ├── bronze_quickfiring_breech.json │ │ │ │ ├── bronze_scrap.json │ │ │ │ ├── bronze_sliding_breech.json │ │ │ │ ├── bronze_sliding_breechblock.json │ │ │ │ ├── built_up_nethersteel_cannon_barrel.json │ │ │ │ ├── built_up_nethersteel_cannon_chamber.json │ │ │ │ ├── built_up_steel_cannon_barrel.json │ │ │ │ ├── built_up_steel_cannon_chamber.json │ │ │ │ ├── cannon_carriage.json │ │ │ │ ├── cannon_end_cast_mould.json │ │ │ │ ├── cast_iron_autocannon_barrel.json │ │ │ │ ├── cast_iron_autocannon_breech.json │ │ │ │ ├── cast_iron_autocannon_breech_extractor.json │ │ │ │ ├── cast_iron_autocannon_recoil_spring.json │ │ │ │ ├── cast_iron_block.json │ │ │ │ ├── cast_iron_cannon_barrel.json │ │ │ │ ├── cast_iron_cannon_chamber.json │ │ │ │ ├── cast_iron_cannon_end.json │ │ │ │ ├── cast_iron_ingot.json │ │ │ │ ├── cast_iron_nugget.json │ │ │ │ ├── cast_iron_quickfiring_breech.json │ │ │ │ ├── cast_iron_sliding_breech.json │ │ │ │ ├── cast_iron_sliding_breechblock.json │ │ │ │ ├── casting_sand.json │ │ │ │ ├── congealed_nitro.json │ │ │ │ ├── creative_autocannon_ammo_container.json │ │ │ │ ├── delayed_impact_fuze.json │ │ │ │ ├── drop_mortar_shell.json │ │ │ │ ├── empty_machine_gun_round.json │ │ │ │ ├── empty_powder_charge.json │ │ │ │ ├── fixed_cannon_mount.json │ │ │ │ ├── flak_autocannon_round.json │ │ │ │ ├── fluid_shell.json │ │ │ │ ├── fluid_shell_base_fuze.json │ │ │ │ ├── fluid_shell_head_fuze.json │ │ │ │ ├── gas_mask.json │ │ │ │ ├── guncotton.json │ │ │ │ ├── gunpowder_pinch.json │ │ │ │ ├── hardened_nitro.json │ │ │ │ ├── he_shell.json │ │ │ │ ├── he_shell_base_fuze.json │ │ │ │ ├── he_shell_head_fuze.json │ │ │ │ ├── impact_fuze.json │ │ │ │ ├── incomplete_bronze_autocannon_breech.json │ │ │ │ ├── incomplete_bronze_autocannon_recoil_spring.json │ │ │ │ ├── incomplete_bronze_sliding_breech.json │ │ │ │ ├── incomplete_cast_iron_autocannon_breech.json │ │ │ │ ├── incomplete_cast_iron_autocannon_recoil_spring.json │ │ │ │ ├── incomplete_cast_iron_sliding_breech.json │ │ │ │ ├── incomplete_nethersteel_screw_breech.json │ │ │ │ ├── incomplete_steel_autocannon_breech.json │ │ │ │ ├── incomplete_steel_autocannon_recoil_spring.json │ │ │ │ ├── incomplete_steel_screw_breech.json │ │ │ │ ├── incomplete_steel_sliding_breech.json │ │ │ │ ├── large_cast_mould.json │ │ │ │ ├── large_nethersteel_cannon_layer.json │ │ │ │ ├── large_steel_cannon_layer.json │ │ │ │ ├── log_cannon_chamber.json │ │ │ │ ├── log_cannon_end.json │ │ │ │ ├── machine_gun_round.json │ │ │ │ ├── medium_cast_mould.json │ │ │ │ ├── medium_nethersteel_cannon_layer.json │ │ │ │ ├── medium_steel_cannon_layer.json │ │ │ │ ├── molten_bronze_bucket.json │ │ │ │ ├── molten_cast_iron_bucket.json │ │ │ │ ├── molten_nethersteel_bucket.json │ │ │ │ ├── molten_steel_bucket.json │ │ │ │ ├── mortar_stone.json │ │ │ │ ├── mortar_stone_projectile.json │ │ │ │ ├── nethersteel_block.json │ │ │ │ ├── nethersteel_cannon_barrel.json │ │ │ │ ├── nethersteel_cannon_chamber.json │ │ │ │ ├── nethersteel_ingot.json │ │ │ │ ├── nethersteel_nugget.json │ │ │ │ ├── nethersteel_screw_breech.json │ │ │ │ ├── nethersteel_screw_lock.json │ │ │ │ ├── nitropowder.json │ │ │ │ ├── packed_guncotton.json │ │ │ │ ├── packed_gunpowder.json │ │ │ │ ├── pair_of_cannon_wheels.json │ │ │ │ ├── partial_bronze_autocannon_breech_extractor.json │ │ │ │ ├── partial_cast_iron_autocannon_breech_extractor.json │ │ │ │ ├── partial_recoil_spring.json │ │ │ │ ├── partial_steel_autocannon_breech_extractor.json │ │ │ │ ├── powder_charge.json │ │ │ │ ├── proximity_fuze.json │ │ │ │ ├── quickfiring_mechanism.json │ │ │ │ ├── ram_head.json │ │ │ │ ├── recoil_spring.json │ │ │ │ ├── screw_breech_cast_mould.json │ │ │ │ ├── shot_balls.json │ │ │ │ ├── shrapnel_shell.json │ │ │ │ ├── shrapnel_shell_base_fuze.json │ │ │ │ ├── shrapnel_shell_head_fuze.json │ │ │ │ ├── sliding_breech_cast_mould.json │ │ │ │ ├── small_cast_mould.json │ │ │ │ ├── small_nethersteel_cannon_layer.json │ │ │ │ ├── small_steel_cannon_layer.json │ │ │ │ ├── smoke_shell.json │ │ │ │ ├── smoke_shell_base_fuze.json │ │ │ │ ├── smoke_shell_head_fuze.json │ │ │ │ ├── solid_shot.json │ │ │ │ ├── spring_wire.json │ │ │ │ ├── steel_autocannon_barrel.json │ │ │ │ ├── steel_autocannon_breech.json │ │ │ │ ├── steel_autocannon_breech_extractor.json │ │ │ │ ├── steel_autocannon_recoil_spring.json │ │ │ │ ├── steel_cannon_barrel.json │ │ │ │ ├── steel_cannon_chamber.json │ │ │ │ ├── steel_quickfiring_breech.json │ │ │ │ ├── steel_scrap.json │ │ │ │ ├── steel_screw_breech.json │ │ │ │ ├── steel_screw_lock.json │ │ │ │ ├── steel_sliding_breech.json │ │ │ │ ├── steel_sliding_breechblock.json │ │ │ │ ├── thick_nethersteel_cannon_chamber.json │ │ │ │ ├── thick_steel_cannon_chamber.json │ │ │ │ ├── timed_fuze.json │ │ │ │ ├── tracer_tip.json │ │ │ │ ├── traffic_cone.json │ │ │ │ ├── unbored_bronze_autocannon_barrel.json │ │ │ │ ├── unbored_bronze_autocannon_breech.json │ │ │ │ ├── unbored_bronze_autocannon_recoil_spring.json │ │ │ │ ├── unbored_bronze_cannon_barrel.json │ │ │ │ ├── unbored_bronze_cannon_chamber.json │ │ │ │ ├── unbored_bronze_sliding_breech.json │ │ │ │ ├── unbored_cast_iron_autocannon_barrel.json │ │ │ │ ├── unbored_cast_iron_autocannon_breech.json │ │ │ │ ├── unbored_cast_iron_autocannon_recoil_spring.json │ │ │ │ ├── unbored_cast_iron_cannon_barrel.json │ │ │ │ ├── unbored_cast_iron_cannon_chamber.json │ │ │ │ ├── unbored_cast_iron_sliding_breech.json │ │ │ │ ├── unbored_large_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_large_steel_cannon_layer.json │ │ │ │ ├── unbored_medium_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_medium_steel_cannon_layer.json │ │ │ │ ├── unbored_nethersteel_screw_breech.json │ │ │ │ ├── unbored_small_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_small_steel_cannon_layer.json │ │ │ │ ├── unbored_steel_autocannon_barrel.json │ │ │ │ ├── unbored_steel_autocannon_breech.json │ │ │ │ ├── unbored_steel_autocannon_recoil_spring.json │ │ │ │ ├── unbored_steel_screw_breech.json │ │ │ │ ├── unbored_steel_sliding_breech.json │ │ │ │ ├── unbored_very_large_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_very_large_steel_cannon_layer.json │ │ │ │ ├── unbored_very_small_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_very_small_steel_cannon_layer.json │ │ │ │ ├── very_large_cast_mould.json │ │ │ │ ├── very_large_nethersteel_cannon_layer.json │ │ │ │ ├── very_large_steel_cannon_layer.json │ │ │ │ ├── very_small_cast_mould.json │ │ │ │ ├── very_small_nethersteel_cannon_layer.json │ │ │ │ ├── very_small_steel_cannon_layer.json │ │ │ │ ├── wired_fuze.json │ │ │ │ ├── worm_head.json │ │ │ │ ├── wrought_iron_cannon_chamber.json │ │ │ │ ├── wrought_iron_cannon_end.json │ │ │ │ └── wrought_iron_drop_mortar_end.json │ │ │ └── sounds.json │ │ └── data │ │ ├── c │ │ └── tags │ │ │ ├── fluids │ │ │ ├── molten_bronze.json │ │ │ ├── molten_cast_iron.json │ │ │ ├── molten_nethersteel.json │ │ │ └── molten_steel.json │ │ │ └── items │ │ │ ├── bronze_nuggets.json │ │ │ ├── cast_iron_ingots.json │ │ │ ├── cast_iron_nuggets.json │ │ │ ├── ingots │ │ │ ├── cast_iron.json │ │ │ └── nethersteel.json │ │ │ ├── nethersteel_ingots.json │ │ │ ├── nethersteel_nuggets.json │ │ │ ├── nuggets │ │ │ ├── bronze.json │ │ │ ├── cast_iron.json │ │ │ ├── nethersteel.json │ │ │ └── steel.json │ │ │ └── steel_nuggets.json │ │ ├── create │ │ └── tags │ │ │ └── blocks │ │ │ └── safe_nbt.json │ │ ├── createbigcannons │ │ ├── advancements │ │ │ └── recipes │ │ │ │ ├── building_blocks │ │ │ │ ├── cast_iron_block.json │ │ │ │ ├── cast_iron_nugget.json │ │ │ │ ├── nethersteel_block.json │ │ │ │ └── nethersteel_nugget.json │ │ │ │ └── misc │ │ │ │ ├── ap_autocannon_round.json │ │ │ │ ├── ap_shot.json │ │ │ │ ├── autocannon_ammo_container.json │ │ │ │ ├── bag_of_grapeshot.json │ │ │ │ ├── basin_foundry_lid.json │ │ │ │ ├── big_cannon_sheet_inexpensive.json │ │ │ │ ├── big_cartridge_sheet.json │ │ │ │ ├── bronze_sliding_breechblock.json │ │ │ │ ├── cannon_builder.json │ │ │ │ ├── cannon_carriage.json │ │ │ │ ├── cannon_drill.json │ │ │ │ ├── cannon_loader.json │ │ │ │ ├── cannon_mount.json │ │ │ │ ├── cannon_mount_extension.json │ │ │ │ ├── cannon_welder.json │ │ │ │ ├── cannon_welder_mirrored.json │ │ │ │ ├── cast_iron_ingot_from_block.json │ │ │ │ ├── cast_iron_ingot_from_nuggets.json │ │ │ │ ├── cast_iron_sliding_breechblock.json │ │ │ │ ├── casting_sand.json │ │ │ │ ├── delayed_impact_fuze.json │ │ │ │ ├── drop_mortar_shell.json │ │ │ │ ├── empty_powder_charge.json │ │ │ │ ├── fixed_cannon_mount.json │ │ │ │ ├── flak_autocannon_round.json │ │ │ │ ├── gas_mask.json │ │ │ │ ├── gunpowder_from_pinches.json │ │ │ │ ├── gunpowder_pinch.json │ │ │ │ ├── hardened_nitro.json │ │ │ │ ├── impact_fuze.json │ │ │ │ ├── log_cannon_chamber.json │ │ │ │ ├── log_cannon_end.json │ │ │ │ ├── machine_gun_round.json │ │ │ │ ├── mortar_stone.json │ │ │ │ ├── nethersteel_ingot_from_block.json │ │ │ │ ├── nethersteel_ingot_from_nuggets.json │ │ │ │ ├── nethersteel_screw_lock.json │ │ │ │ ├── pair_of_cannon_wheels.json │ │ │ │ ├── powder_charge.json │ │ │ │ ├── proximity_fuze.json │ │ │ │ ├── quickfiring_mechanism.json │ │ │ │ ├── ram_head.json │ │ │ │ ├── ram_rod.json │ │ │ │ ├── shot_balls.json │ │ │ │ ├── smoke_shell.json │ │ │ │ ├── solid_shot.json │ │ │ │ ├── steel_screw_lock.json │ │ │ │ ├── steel_sliding_breechblock.json │ │ │ │ ├── timed_fuze.json │ │ │ │ ├── tracer_tip.json │ │ │ │ ├── wired_fuze.json │ │ │ │ ├── worm.json │ │ │ │ ├── worm_head.json │ │ │ │ ├── wrought_iron_cannon_chamber.json │ │ │ │ ├── wrought_iron_cannon_end.json │ │ │ │ ├── wrought_iron_drop_mortar_end.json │ │ │ │ └── wrought_iron_drop_mortar_end_mirrored.json │ │ ├── block_recipes │ │ │ ├── bronze_autocannon_barrel.json │ │ │ ├── bronze_cannon_barrel.json │ │ │ ├── bronze_cannon_chamber.json │ │ │ ├── bronze_cannon_end.json │ │ │ ├── built_up_nethersteel_cannon_barrel.json │ │ │ ├── built_up_nethersteel_cannon_chamber.json │ │ │ ├── built_up_steel_cannon_barrel.json │ │ │ ├── built_up_steel_cannon_chamber.json │ │ │ ├── cast_iron_autocannon_barrel.json │ │ │ ├── cast_iron_cannon_barrel.json │ │ │ ├── cast_iron_cannon_chamber.json │ │ │ ├── cast_iron_cannon_end.json │ │ │ ├── incomplete_bronze_autocannon_breech.json │ │ │ ├── incomplete_bronze_autocannon_recoil_spring.json │ │ │ ├── incomplete_bronze_sliding_breech.json │ │ │ ├── incomplete_cast_iron_autocannon_breech.json │ │ │ ├── incomplete_cast_iron_autocannon_recoil_spring.json │ │ │ ├── incomplete_cast_iron_sliding_breech.json │ │ │ ├── incomplete_nethersteel_screw_breech.json │ │ │ ├── incomplete_steel_autocannon_breech.json │ │ │ ├── incomplete_steel_autocannon_recoil_spring.json │ │ │ ├── incomplete_steel_screw_breech.json │ │ │ ├── incomplete_steel_sliding_breech.json │ │ │ ├── large_nethersteel_cannon_layer.json │ │ │ ├── large_steel_cannon_layer.json │ │ │ ├── medium_nethersteel_cannon_layer.json │ │ │ ├── medium_steel_cannon_layer.json │ │ │ ├── nethersteel_cannon_barrel.json │ │ │ ├── nethersteel_cannon_chamber.json │ │ │ ├── small_nethersteel_cannon_layer.json │ │ │ ├── small_steel_cannon_layer.json │ │ │ ├── steel_autocannon_barrel.json │ │ │ ├── steel_cannon_barrel.json │ │ │ ├── steel_cannon_chamber.json │ │ │ ├── thick_nethersteel_cannon_chamber.json │ │ │ ├── thick_steel_cannon_chamber.json │ │ │ ├── unbored_bronze_autocannon_barrel.json │ │ │ ├── unbored_bronze_autocannon_breech.json │ │ │ ├── unbored_bronze_autocannon_recoil_spring.json │ │ │ ├── unbored_bronze_cannon_barrel.json │ │ │ ├── unbored_bronze_cannon_chamber.json │ │ │ ├── unbored_bronze_sliding_breech.json │ │ │ ├── unbored_cast_iron_autocannon_barrel.json │ │ │ ├── unbored_cast_iron_autocannon_breech.json │ │ │ ├── unbored_cast_iron_autocannon_recoil_spring.json │ │ │ ├── unbored_cast_iron_cannon_barrel.json │ │ │ ├── unbored_cast_iron_cannon_chamber.json │ │ │ ├── unbored_cast_iron_sliding_breech.json │ │ │ ├── unbored_large_nethersteel_cannon_layer.json │ │ │ ├── unbored_large_steel_cannon_layer.json │ │ │ ├── unbored_medium_nethersteel_cannon_layer.json │ │ │ ├── unbored_medium_steel_cannon_layer.json │ │ │ ├── unbored_nethersteel_screw_breech.json │ │ │ ├── unbored_small_nethersteel_cannon_layer.json │ │ │ ├── unbored_small_steel_cannon_layer.json │ │ │ ├── unbored_steel_autocannon_barrel.json │ │ │ ├── unbored_steel_autocannon_breech.json │ │ │ ├── unbored_steel_autocannon_recoil_spring.json │ │ │ ├── unbored_steel_screw_breech.json │ │ │ ├── unbored_steel_sliding_breech.json │ │ │ ├── unbored_very_large_nethersteel_cannon_layer.json │ │ │ ├── unbored_very_large_steel_cannon_layer.json │ │ │ ├── unbored_very_small_nethersteel_cannon_layer.json │ │ │ ├── unbored_very_small_steel_cannon_layer.json │ │ │ ├── very_large_nethersteel_cannon_layer.json │ │ │ ├── very_large_steel_cannon_layer.json │ │ │ ├── very_small_nethersteel_cannon_layer.json │ │ │ └── very_small_steel_cannon_layer.json │ │ ├── loot_tables │ │ │ ├── blocks │ │ │ │ ├── ap_shell.json │ │ │ │ ├── ap_shot.json │ │ │ │ ├── autocannon_ammo_container.json │ │ │ │ ├── autocannon_barrel_cast_mould.json │ │ │ │ ├── autocannon_breech_cast_mould.json │ │ │ │ ├── autocannon_recoil_spring_cast_mould.json │ │ │ │ ├── bag_of_grapeshot.json │ │ │ │ ├── basin_foundry_lid.json │ │ │ │ ├── big_cartridge.json │ │ │ │ ├── bronze_autocannon_barrel.json │ │ │ │ ├── bronze_autocannon_breech.json │ │ │ │ ├── bronze_autocannon_recoil_spring.json │ │ │ │ ├── bronze_cannon_barrel.json │ │ │ │ ├── bronze_cannon_chamber.json │ │ │ │ ├── bronze_cannon_end.json │ │ │ │ ├── bronze_quickfiring_breech.json │ │ │ │ ├── bronze_sliding_breech.json │ │ │ │ ├── built_up_cannon.json │ │ │ │ ├── built_up_nethersteel_cannon_barrel.json │ │ │ │ ├── built_up_nethersteel_cannon_chamber.json │ │ │ │ ├── built_up_steel_cannon_barrel.json │ │ │ │ ├── built_up_steel_cannon_chamber.json │ │ │ │ ├── cannon_builder.json │ │ │ │ ├── cannon_builder_head.json │ │ │ │ ├── cannon_carriage.json │ │ │ │ ├── cannon_cast.json │ │ │ │ ├── cannon_drill.json │ │ │ │ ├── cannon_drill_bit.json │ │ │ │ ├── cannon_end_cast_mould.json │ │ │ │ ├── cannon_loader.json │ │ │ │ ├── cannon_mount.json │ │ │ │ ├── cannon_mount_extension.json │ │ │ │ ├── cast_iron_autocannon_barrel.json │ │ │ │ ├── cast_iron_autocannon_breech.json │ │ │ │ ├── cast_iron_autocannon_recoil_spring.json │ │ │ │ ├── cast_iron_block.json │ │ │ │ ├── cast_iron_cannon_barrel.json │ │ │ │ ├── cast_iron_cannon_chamber.json │ │ │ │ ├── cast_iron_cannon_end.json │ │ │ │ ├── cast_iron_quickfiring_breech.json │ │ │ │ ├── cast_iron_sliding_breech.json │ │ │ │ ├── casting_sand.json │ │ │ │ ├── creative_autocannon_ammo_container.json │ │ │ │ ├── drop_mortar_shell.json │ │ │ │ ├── finished_cannon_cast.json │ │ │ │ ├── fixed_cannon_mount.json │ │ │ │ ├── fluid_shell.json │ │ │ │ ├── he_shell.json │ │ │ │ ├── incomplete_bronze_autocannon_breech.json │ │ │ │ ├── incomplete_bronze_autocannon_recoil_spring.json │ │ │ │ ├── incomplete_bronze_sliding_breech.json │ │ │ │ ├── incomplete_cast_iron_autocannon_breech.json │ │ │ │ ├── incomplete_cast_iron_autocannon_recoil_spring.json │ │ │ │ ├── incomplete_cast_iron_sliding_breech.json │ │ │ │ ├── incomplete_nethersteel_screw_breech.json │ │ │ │ ├── incomplete_steel_autocannon_breech.json │ │ │ │ ├── incomplete_steel_autocannon_recoil_spring.json │ │ │ │ ├── incomplete_steel_screw_breech.json │ │ │ │ ├── incomplete_steel_sliding_breech.json │ │ │ │ ├── large_cast_mould.json │ │ │ │ ├── large_nethersteel_cannon_layer.json │ │ │ │ ├── large_steel_cannon_layer.json │ │ │ │ ├── log_cannon_chamber.json │ │ │ │ ├── log_cannon_end.json │ │ │ │ ├── medium_cast_mould.json │ │ │ │ ├── medium_nethersteel_cannon_layer.json │ │ │ │ ├── medium_steel_cannon_layer.json │ │ │ │ ├── mortar_stone.json │ │ │ │ ├── mortar_stone_projectile.json │ │ │ │ ├── nethersteel_block.json │ │ │ │ ├── nethersteel_cannon_barrel.json │ │ │ │ ├── nethersteel_cannon_chamber.json │ │ │ │ ├── nethersteel_screw_breech.json │ │ │ │ ├── powder_charge.json │ │ │ │ ├── ram_head.json │ │ │ │ ├── screw_breech_cast_mould.json │ │ │ │ ├── shrapnel_shell.json │ │ │ │ ├── sliding_breech_cast_mould.json │ │ │ │ ├── small_cast_mould.json │ │ │ │ ├── small_nethersteel_cannon_layer.json │ │ │ │ ├── small_steel_cannon_layer.json │ │ │ │ ├── smoke_shell.json │ │ │ │ ├── solid_shot.json │ │ │ │ ├── steel_autocannon_barrel.json │ │ │ │ ├── steel_autocannon_breech.json │ │ │ │ ├── steel_autocannon_recoil_spring.json │ │ │ │ ├── steel_cannon_barrel.json │ │ │ │ ├── steel_cannon_chamber.json │ │ │ │ ├── steel_quickfiring_breech.json │ │ │ │ ├── steel_screw_breech.json │ │ │ │ ├── steel_sliding_breech.json │ │ │ │ ├── thick_nethersteel_cannon_chamber.json │ │ │ │ ├── thick_steel_cannon_chamber.json │ │ │ │ ├── traffic_cone.json │ │ │ │ ├── unbored_bronze_autocannon_barrel.json │ │ │ │ ├── unbored_bronze_autocannon_breech.json │ │ │ │ ├── unbored_bronze_autocannon_recoil_spring.json │ │ │ │ ├── unbored_bronze_cannon_barrel.json │ │ │ │ ├── unbored_bronze_cannon_chamber.json │ │ │ │ ├── unbored_bronze_sliding_breech.json │ │ │ │ ├── unbored_cast_iron_autocannon_barrel.json │ │ │ │ ├── unbored_cast_iron_autocannon_breech.json │ │ │ │ ├── unbored_cast_iron_autocannon_recoil_spring.json │ │ │ │ ├── unbored_cast_iron_cannon_barrel.json │ │ │ │ ├── unbored_cast_iron_cannon_chamber.json │ │ │ │ ├── unbored_cast_iron_sliding_breech.json │ │ │ │ ├── unbored_large_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_large_steel_cannon_layer.json │ │ │ │ ├── unbored_medium_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_medium_steel_cannon_layer.json │ │ │ │ ├── unbored_nethersteel_screw_breech.json │ │ │ │ ├── unbored_small_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_small_steel_cannon_layer.json │ │ │ │ ├── unbored_steel_autocannon_barrel.json │ │ │ │ ├── unbored_steel_autocannon_breech.json │ │ │ │ ├── unbored_steel_autocannon_recoil_spring.json │ │ │ │ ├── unbored_steel_screw_breech.json │ │ │ │ ├── unbored_steel_sliding_breech.json │ │ │ │ ├── unbored_very_large_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_very_large_steel_cannon_layer.json │ │ │ │ ├── unbored_very_small_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_very_small_steel_cannon_layer.json │ │ │ │ ├── very_large_cast_mould.json │ │ │ │ ├── very_large_nethersteel_cannon_layer.json │ │ │ │ ├── very_large_steel_cannon_layer.json │ │ │ │ ├── very_small_cast_mould.json │ │ │ │ ├── very_small_nethersteel_cannon_layer.json │ │ │ │ ├── very_small_steel_cannon_layer.json │ │ │ │ ├── worm_head.json │ │ │ │ ├── wrought_iron_cannon_chamber.json │ │ │ │ ├── wrought_iron_cannon_end.json │ │ │ │ ├── wrought_iron_drop_mortar_end.json │ │ │ │ └── yaw_controller.json │ │ │ └── boring_scrap │ │ │ │ ├── unbored_bronze_autocannon_barrel.json │ │ │ │ ├── unbored_bronze_autocannon_breech.json │ │ │ │ ├── unbored_bronze_autocannon_recoil_spring.json │ │ │ │ ├── unbored_bronze_cannon_barrel.json │ │ │ │ ├── unbored_bronze_cannon_chamber.json │ │ │ │ ├── unbored_bronze_sliding_breech.json │ │ │ │ ├── unbored_cast_iron_autocannon_barrel.json │ │ │ │ ├── unbored_cast_iron_autocannon_breech.json │ │ │ │ ├── unbored_cast_iron_autocannon_recoil_spring.json │ │ │ │ ├── unbored_cast_iron_cannon_barrel.json │ │ │ │ ├── unbored_cast_iron_cannon_chamber.json │ │ │ │ ├── unbored_cast_iron_sliding_breech.json │ │ │ │ ├── unbored_large_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_large_steel_cannon_layer.json │ │ │ │ ├── unbored_medium_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_medium_steel_cannon_layer.json │ │ │ │ ├── unbored_nethersteel_screw_breech.json │ │ │ │ ├── unbored_small_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_small_steel_cannon_layer.json │ │ │ │ ├── unbored_steel_autocannon_barrel.json │ │ │ │ ├── unbored_steel_autocannon_breech.json │ │ │ │ ├── unbored_steel_autocannon_recoil_spring.json │ │ │ │ ├── unbored_steel_screw_breech.json │ │ │ │ ├── unbored_steel_sliding_breech.json │ │ │ │ ├── unbored_very_large_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_very_large_steel_cannon_layer.json │ │ │ │ ├── unbored_very_small_nethersteel_cannon_layer.json │ │ │ │ └── unbored_very_small_steel_cannon_layer.json │ │ ├── recipes │ │ │ ├── ap_autocannon_round.json │ │ │ ├── ap_shell.json │ │ │ ├── ap_shot.json │ │ │ ├── autocannon_ammo_container.json │ │ │ ├── autocannon_ammo_container_filling_deployer.json │ │ │ ├── bag_of_grapeshot.json │ │ │ ├── basin_foundry_lid.json │ │ │ ├── big_cannon_sheet_inexpensive.json │ │ │ ├── big_cartridge_filling.json │ │ │ ├── big_cartridge_filling_deployer.json │ │ │ ├── big_cartridge_sheet.json │ │ │ ├── bronze_sliding_breechblock.json │ │ │ ├── cannon_builder.json │ │ │ ├── cannon_carriage.json │ │ │ ├── cannon_drill.json │ │ │ ├── cannon_loader.json │ │ │ ├── cannon_mount.json │ │ │ ├── cannon_mount_extension.json │ │ │ ├── cannon_welder.json │ │ │ ├── cannon_welder_mirrored.json │ │ │ ├── cartridge_assembly.json │ │ │ ├── cartridge_assembly_deployer.json │ │ │ ├── cast_iron_block.json │ │ │ ├── cast_iron_ingot_from_block.json │ │ │ ├── cast_iron_ingot_from_nuggets.json │ │ │ ├── cast_iron_nugget.json │ │ │ ├── cast_iron_sliding_breechblock.json │ │ │ ├── casting_sand.json │ │ │ ├── compacting │ │ │ │ ├── forge_bronze_ingot.json │ │ │ │ ├── forge_cast_iron_ingot.json │ │ │ │ ├── forge_cast_iron_nugget.json │ │ │ │ ├── forge_nethersteel_ingot.json │ │ │ │ ├── forge_nethersteel_nugget.json │ │ │ │ ├── forge_steel_ingot.json │ │ │ │ ├── iron_to_cast_iron_block.json │ │ │ │ ├── iron_to_cast_iron_ingot.json │ │ │ │ ├── packed_guncotton.json │ │ │ │ └── packed_gunpowder.json │ │ │ ├── cutting │ │ │ │ ├── autocannon_barrel_cast_mould.json │ │ │ │ ├── autocannon_breech_cast_mould.json │ │ │ │ ├── autocannon_cartridge_sheet_brass.json │ │ │ │ ├── autocannon_cartridge_sheet_copper.json │ │ │ │ ├── autocannon_cartridge_sheet_gold.json │ │ │ │ ├── autocannon_cartridge_sheet_iron.json │ │ │ │ ├── autocannon_recoil_spring_cast_mould.json │ │ │ │ ├── cannon_end_cast_mould.json │ │ │ │ ├── empty_machine_gun_round.json │ │ │ │ ├── large_cast_mould.json │ │ │ │ ├── medium_cast_mould.json │ │ │ │ ├── screw_breech_cast_mould.json │ │ │ │ ├── sliding_breech_cast_mould.json │ │ │ │ ├── small_cast_mould.json │ │ │ │ ├── spring_wire_iron.json │ │ │ │ ├── spring_wire_steel.json │ │ │ │ ├── very_large_cast_mould.json │ │ │ │ └── very_small_cast_mould.json │ │ │ ├── delayed_impact_fuze.json │ │ │ ├── drop_mortar_shell.json │ │ │ ├── empty_powder_charge.json │ │ │ ├── fixed_cannon_mount.json │ │ │ ├── flak_autocannon_round.json │ │ │ ├── fluid_shell.json │ │ │ ├── fuze_removal.json │ │ │ ├── gas_mask.json │ │ │ ├── gunpowder_from_pinches.json │ │ │ ├── gunpowder_pinch.json │ │ │ ├── hardened_nitro.json │ │ │ ├── he_shell.json │ │ │ ├── impact_fuze.json │ │ │ ├── log_cannon_chamber.json │ │ │ ├── log_cannon_end.json │ │ │ ├── machine_gun_round.json │ │ │ ├── melting │ │ │ │ ├── melt_bronze_block.json │ │ │ │ ├── melt_bronze_ingot.json │ │ │ │ ├── melt_bronze_nugget.json │ │ │ │ ├── melt_cast_iron_block.json │ │ │ │ ├── melt_cast_iron_ingot.json │ │ │ │ ├── melt_cast_iron_nugget.json │ │ │ │ ├── melt_nethersteel_block.json │ │ │ │ ├── melt_nethersteel_ingot.json │ │ │ │ ├── melt_nethersteel_nugget.json │ │ │ │ ├── melt_steel_block.json │ │ │ │ ├── melt_steel_ingot.json │ │ │ │ └── melt_steel_nugget.json │ │ │ ├── milling │ │ │ │ └── nitropowder.json │ │ │ ├── mixing │ │ │ │ ├── alloy_nethersteel_cast_iron.json │ │ │ │ ├── alloy_nethersteel_steel.json │ │ │ │ ├── congealed_nitro.json │ │ │ │ ├── congealed_nitro_no_nether.json │ │ │ │ └── guncotton.json │ │ │ ├── mortar_stone.json │ │ │ ├── munition_fuzing.json │ │ │ ├── munition_fuzing_deployer.json │ │ │ ├── nethersteel_block.json │ │ │ ├── nethersteel_ingot_from_block.json │ │ │ ├── nethersteel_ingot_from_nuggets.json │ │ │ ├── nethersteel_nugget.json │ │ │ ├── nethersteel_screw_lock.json │ │ │ ├── pair_of_cannon_wheels.json │ │ │ ├── powder_charge.json │ │ │ ├── proximity_fuze.json │ │ │ ├── quickfiring_mechanism.json │ │ │ ├── ram_head.json │ │ │ ├── ram_rod.json │ │ │ ├── sequenced_assembly │ │ │ │ ├── assembling_machine_gun_round.json │ │ │ │ ├── bronze_autocannon_breech_extractor.json │ │ │ │ ├── cast_iron_autocannon_breech_extractor.json │ │ │ │ ├── filling_autocannon_cartridge.json │ │ │ │ ├── pressing_autocannon_cartridge.json │ │ │ │ ├── pressing_big_cartridge.json │ │ │ │ ├── recoil_spring.json │ │ │ │ └── steel_autocannon_breech_extractor.json │ │ │ ├── shot_balls.json │ │ │ ├── shrapnel_shell.json │ │ │ ├── smoke_shell.json │ │ │ ├── solid_shot.json │ │ │ ├── steel_screw_lock.json │ │ │ ├── steel_sliding_breechblock.json │ │ │ ├── timed_fuze.json │ │ │ ├── tracer_application.json │ │ │ ├── tracer_application_deployer.json │ │ │ ├── tracer_removal.json │ │ │ ├── tracer_tip.json │ │ │ ├── wired_fuze.json │ │ │ ├── worm.json │ │ │ ├── worm_head.json │ │ │ ├── wrought_iron_cannon_chamber.json │ │ │ ├── wrought_iron_cannon_end.json │ │ │ ├── wrought_iron_drop_mortar_end.json │ │ │ └── wrought_iron_drop_mortar_end_mirrored.json │ │ └── tags │ │ │ ├── blocks │ │ │ ├── concrete.json │ │ │ ├── drill_can_pass_through.json │ │ │ ├── glass_effect_on_impact.json │ │ │ ├── netherrack.json │ │ │ ├── obsidian.json │ │ │ ├── reduces_spread.json │ │ │ ├── sandstone.json │ │ │ ├── spark_effect_on_impact.json │ │ │ ├── splinter_effect_on_impact.json │ │ │ └── thick_tubing.json │ │ │ ├── fluids │ │ │ └── molten_metal.json │ │ │ └── items │ │ │ ├── autocannon_ammo_containers.json │ │ │ ├── autocannon_cartridges.json │ │ │ ├── autocannon_rounds.json │ │ │ ├── big_cannon_cartridges.json │ │ │ ├── big_cannon_projectiles.json │ │ │ ├── big_cannon_propellant.json │ │ │ ├── big_cannon_propellant_bags.json │ │ │ ├── block_bronze.json │ │ │ ├── block_cast_iron.json │ │ │ ├── block_nethersteel.json │ │ │ ├── block_steel.json │ │ │ ├── can_be_nitrated.json │ │ │ ├── dust_glowstone.json │ │ │ ├── dusts_redstone.json │ │ │ ├── fuzes.json │ │ │ ├── gas_masks.json │ │ │ ├── gelatinizers.json │ │ │ ├── gems_quartz.json │ │ │ ├── glass.json │ │ │ ├── guncotton.json │ │ │ ├── gunpowder.json │ │ │ ├── gunpowder_pinch.json │ │ │ ├── high_explosive_materials.json │ │ │ ├── impact_fuze_head.json │ │ │ ├── inexpensive_big_cartridge_sheet.json │ │ │ ├── ingot_brass.json │ │ │ ├── ingot_bronze.json │ │ │ ├── ingot_cast_iron.json │ │ │ ├── ingot_copper.json │ │ │ ├── ingot_iron.json │ │ │ ├── ingot_nethersteel.json │ │ │ ├── ingot_steel.json │ │ │ ├── nitro_acidifiers.json │ │ │ ├── nitropowder.json │ │ │ ├── nugget_bronze.json │ │ │ ├── nugget_cast_iron.json │ │ │ ├── nugget_copper.json │ │ │ ├── nugget_iron.json │ │ │ ├── nugget_nethersteel.json │ │ │ ├── nugget_steel.json │ │ │ ├── sheet_brass.json │ │ │ ├── sheet_copper.json │ │ │ ├── sheet_gold.json │ │ │ ├── sheet_iron.json │ │ │ ├── sheet_steel.json │ │ │ ├── spent_autocannon_casings.json │ │ │ └── stone.json │ │ ├── forge │ │ └── tags │ │ │ ├── fluids │ │ │ ├── molten_bronze.json │ │ │ ├── molten_cast_iron.json │ │ │ ├── molten_nethersteel.json │ │ │ └── molten_steel.json │ │ │ └── items │ │ │ ├── ingots │ │ │ ├── cast_iron.json │ │ │ └── nethersteel.json │ │ │ └── nuggets │ │ │ ├── bronze.json │ │ │ ├── cast_iron.json │ │ │ ├── nethersteel.json │ │ │ └── steel.json │ │ ├── minecraft │ │ └── tags │ │ │ └── blocks │ │ │ ├── mineable │ │ │ ├── axe.json │ │ │ ├── pickaxe.json │ │ │ └── shovel.json │ │ │ ├── needs_diamond_tool.json │ │ │ ├── needs_iron_tool.json │ │ │ └── needs_stone_tool.json │ │ └── ritchiesprojectilelib │ │ └── tags │ │ └── entity_types │ │ └── precise_motion.json │ └── main │ ├── java │ └── rbasamoyai │ │ └── createbigcannons │ │ ├── base │ │ └── fabric │ │ │ └── CBCRegistriesImpl.java │ │ ├── cannon_loading │ │ └── fabric │ │ │ └── CannonLoaderGenImpl.java │ │ ├── cannons │ │ └── big_cannons │ │ │ └── breeches │ │ │ └── sliding_breech │ │ │ └── fabric │ │ │ └── SlidingBreechBlockGenImpl.java │ │ ├── compat │ │ ├── emi │ │ │ ├── BuiltUpHeatingEmiRecipe.java │ │ │ ├── CBCEmiBlockRecipe.java │ │ │ ├── CBCEmiPlugin.java │ │ │ ├── CannonCastingEmiRecipe.java │ │ │ ├── DrillBoringEmiRecipe.java │ │ │ ├── IncompleteCannonBlockEmiRecipe.java │ │ │ └── MeltingEmiRecipe.java │ │ ├── jei │ │ │ ├── BuiltUpHeatingCategory.java │ │ │ ├── CBCBlockRecipeCategory.java │ │ │ ├── CBCJEI.java │ │ │ ├── CannonCastingCategory.java │ │ │ ├── DrillBoringCategory.java │ │ │ ├── IncompleteCannonBlockCategory.java │ │ │ ├── MeltingCategory.java │ │ │ └── animated │ │ │ │ ├── BasinFoundryLidElement.java │ │ │ │ └── CannonCastGuiElement.java │ │ ├── modmenu │ │ │ └── CBCModMenuCompat.java │ │ ├── rei │ │ │ ├── BuiltUpHeatingCategory.java │ │ │ ├── CBCBlockRecipeCategory.java │ │ │ ├── CBCDisplay.java │ │ │ ├── CBCREI.java │ │ │ ├── CannonCastingCategory.java │ │ │ ├── DrillBoringCategory.java │ │ │ ├── IncompleteCannonBlockCategory.java │ │ │ ├── MeltingCategory.java │ │ │ └── animated │ │ │ │ ├── BasinFoundryLidElement.java │ │ │ │ └── CannonCastGuiElement.java │ │ └── trinkets │ │ │ ├── CBCTrinketsClient.java │ │ │ ├── CBCTrinketsIntegration.java │ │ │ └── GasMaskTrinketRenderer.java │ │ ├── crafting │ │ ├── boring │ │ │ └── fabric │ │ │ │ └── CannonDrillGenImpl.java │ │ ├── builtup │ │ │ └── fabric │ │ │ │ └── CannonBuilderGenImpl.java │ │ └── incomplete │ │ │ └── fabric │ │ │ ├── IncompleteScrewBreechBlockGenImpl.java │ │ │ └── IncompleteSlidingBreechBlockGenImpl.java │ │ ├── datagen │ │ └── assets │ │ │ └── fabric │ │ │ └── CBCBuilderTransformersImpl.java │ │ ├── fabric │ │ ├── CBCClientFabric.java │ │ ├── CBCCommonFabricEvents.java │ │ ├── CBCDataFabric.java │ │ ├── CBCModsFabric.java │ │ ├── CreateBigCannonsFabric.java │ │ ├── ModGroupImpl.java │ │ ├── cannons │ │ │ ├── AutocannonBreechBlockEntity.java │ │ │ ├── AutocannonBreechInterface.java │ │ │ └── AutocannonBreechSlotView.java │ │ ├── crafting │ │ │ ├── CannonCastBlockEntity.java │ │ │ ├── CannonCastBlockEntityRenderer.java │ │ │ └── CannonDrillBlockEntity.java │ │ ├── datagen │ │ │ ├── CBCCompactingRecipeProvider.java │ │ │ ├── CBCCuttingRecipeProvider.java │ │ │ ├── CBCMillingRecipeProvider.java │ │ │ ├── CBCMixingRecipeProvider.java │ │ │ ├── CBCSequencedAssemblyRecipeProvider.java │ │ │ ├── MeltingRecipeProvider.java │ │ │ └── assets │ │ │ │ └── CBCBlockPartialsGen.java │ │ ├── index │ │ │ └── fluid_utils │ │ │ │ ├── CBCFluidData.java │ │ │ │ ├── FabricFluidBuilder.java │ │ │ │ └── RenderHandlerFactory.java │ │ ├── mixin │ │ │ ├── AbstractCannonProjectileMixin.java │ │ │ ├── ArmTileEntityMixin.java │ │ │ ├── AutocannonAmmoContainerBlockEntityMixin.java │ │ │ ├── BigCartridgeBlockMixin.java │ │ │ ├── CannonMountBlockEntityMixin.java │ │ │ ├── CannonMountExtensionBlockEntityMixin.java │ │ │ ├── CannonMountPointMixin.java │ │ │ ├── CreateInitMixin.java │ │ │ ├── ExplosionMixin.java │ │ │ ├── FireBlockMixin.java │ │ │ ├── FixedCannonMountBlockEntityMixin.java │ │ │ ├── GasMaskItemMixin.java │ │ │ ├── MountedAutocannonContraptionMixin.java │ │ │ ├── PitchOrientedContraptionEntityMixin.java │ │ │ ├── PowderChargeBlockMixin.java │ │ │ ├── YawControllerBlockEntityMixin.java │ │ │ ├── client │ │ │ │ ├── FabricFluidBuilderClientMixin.java │ │ │ │ ├── GasMaskModelMixin.java │ │ │ │ ├── GoggleOverlayRendererMixin.java │ │ │ │ ├── GuiMixin.java │ │ │ │ ├── KeyMappingAccessor.java │ │ │ │ ├── KeyboardHandlerMixin.java │ │ │ │ ├── MouseHandlerMixin.java │ │ │ │ └── ValueSettingsClientMixin.java │ │ │ └── compat │ │ │ │ └── fabric_api │ │ │ │ └── ItemStorageMixin.java │ │ ├── mixin_interface │ │ │ ├── CBCDynamicFlammableBlock.java │ │ │ ├── FabricFluidBuilderClient.java │ │ │ └── GetItemStorage.java │ │ ├── munitions │ │ │ ├── autocannon │ │ │ │ ├── AutocannonAmmoContainerInterface.java │ │ │ │ └── AutocannonAmmoContainerSlotView.java │ │ │ └── fluid_shell │ │ │ │ └── FluidShellBlockEntity.java │ │ └── network │ │ │ ├── CBCNetworkFabric.java │ │ │ └── FabricPacket.java │ │ ├── multiloader │ │ └── fabric │ │ │ ├── EntityTypeConfiguratorImpl.java │ │ │ ├── EnvExecuteImpl.java │ │ │ ├── IndexPlatformImpl.java │ │ │ ├── NetworkPlatformImpl.java │ │ │ ├── ParticlesPlatformImpl.java │ │ │ └── PonderPlatformImpl.java │ │ └── remix │ │ └── fabric │ │ └── ContraptionRemixImpl.java │ └── resources │ ├── createbigcannons.mixins.json │ ├── data │ └── trinkets │ │ ├── entity │ │ └── createbigcannons.json │ │ ├── slots │ │ └── head │ │ │ └── face.json │ │ └── tags │ │ └── items │ │ └── head │ │ └── face.json │ ├── fabric.mod.json │ └── icon.png ├── forge ├── build.gradle.kts ├── gradle.properties └── src │ ├── generated │ └── resources │ │ ├── assets │ │ └── createbigcannons │ │ │ ├── blockstates │ │ │ ├── ap_shell.json │ │ │ ├── ap_shot.json │ │ │ ├── autocannon_ammo_container.json │ │ │ ├── autocannon_barrel_cast_mould.json │ │ │ ├── autocannon_breech_cast_mould.json │ │ │ ├── autocannon_recoil_spring_cast_mould.json │ │ │ ├── bag_of_grapeshot.json │ │ │ ├── basin_foundry_lid.json │ │ │ ├── big_cartridge.json │ │ │ ├── bronze_autocannon_barrel.json │ │ │ ├── bronze_autocannon_breech.json │ │ │ ├── bronze_autocannon_recoil_spring.json │ │ │ ├── bronze_cannon_barrel.json │ │ │ ├── bronze_cannon_chamber.json │ │ │ ├── bronze_cannon_end.json │ │ │ ├── bronze_quickfiring_breech.json │ │ │ ├── bronze_sliding_breech.json │ │ │ ├── built_up_cannon.json │ │ │ ├── built_up_nethersteel_cannon_barrel.json │ │ │ ├── built_up_nethersteel_cannon_chamber.json │ │ │ ├── built_up_steel_cannon_barrel.json │ │ │ ├── built_up_steel_cannon_chamber.json │ │ │ ├── cannon_builder.json │ │ │ ├── cannon_builder_head.json │ │ │ ├── cannon_carriage.json │ │ │ ├── cannon_cast.json │ │ │ ├── cannon_drill.json │ │ │ ├── cannon_drill_bit.json │ │ │ ├── cannon_end_cast_mould.json │ │ │ ├── cannon_loader.json │ │ │ ├── cannon_mount.json │ │ │ ├── cannon_mount_extension.json │ │ │ ├── cast_iron_autocannon_barrel.json │ │ │ ├── cast_iron_autocannon_breech.json │ │ │ ├── cast_iron_autocannon_recoil_spring.json │ │ │ ├── cast_iron_block.json │ │ │ ├── cast_iron_cannon_barrel.json │ │ │ ├── cast_iron_cannon_chamber.json │ │ │ ├── cast_iron_cannon_end.json │ │ │ ├── cast_iron_quickfiring_breech.json │ │ │ ├── cast_iron_sliding_breech.json │ │ │ ├── casting_sand.json │ │ │ ├── creative_autocannon_ammo_container.json │ │ │ ├── drop_mortar_shell.json │ │ │ ├── finished_cannon_cast.json │ │ │ ├── fixed_cannon_mount.json │ │ │ ├── fluid_shell.json │ │ │ ├── he_shell.json │ │ │ ├── incomplete_bronze_autocannon_breech.json │ │ │ ├── incomplete_bronze_autocannon_recoil_spring.json │ │ │ ├── incomplete_bronze_sliding_breech.json │ │ │ ├── incomplete_cast_iron_autocannon_breech.json │ │ │ ├── incomplete_cast_iron_autocannon_recoil_spring.json │ │ │ ├── incomplete_cast_iron_sliding_breech.json │ │ │ ├── incomplete_nethersteel_screw_breech.json │ │ │ ├── incomplete_steel_autocannon_breech.json │ │ │ ├── incomplete_steel_autocannon_recoil_spring.json │ │ │ ├── incomplete_steel_screw_breech.json │ │ │ ├── incomplete_steel_sliding_breech.json │ │ │ ├── large_cast_mould.json │ │ │ ├── large_nethersteel_cannon_layer.json │ │ │ ├── large_steel_cannon_layer.json │ │ │ ├── log_cannon_chamber.json │ │ │ ├── log_cannon_end.json │ │ │ ├── medium_cast_mould.json │ │ │ ├── medium_nethersteel_cannon_layer.json │ │ │ ├── medium_steel_cannon_layer.json │ │ │ ├── molten_bronze.json │ │ │ ├── molten_cast_iron.json │ │ │ ├── molten_nethersteel.json │ │ │ ├── molten_steel.json │ │ │ ├── mortar_stone.json │ │ │ ├── mortar_stone_projectile.json │ │ │ ├── nethersteel_block.json │ │ │ ├── nethersteel_cannon_barrel.json │ │ │ ├── nethersteel_cannon_chamber.json │ │ │ ├── nethersteel_screw_breech.json │ │ │ ├── powder_charge.json │ │ │ ├── ram_head.json │ │ │ ├── screw_breech_cast_mould.json │ │ │ ├── shrapnel_shell.json │ │ │ ├── sliding_breech_cast_mould.json │ │ │ ├── small_cast_mould.json │ │ │ ├── small_nethersteel_cannon_layer.json │ │ │ ├── small_steel_cannon_layer.json │ │ │ ├── smoke_shell.json │ │ │ ├── solid_shot.json │ │ │ ├── steel_autocannon_barrel.json │ │ │ ├── steel_autocannon_breech.json │ │ │ ├── steel_autocannon_recoil_spring.json │ │ │ ├── steel_cannon_barrel.json │ │ │ ├── steel_cannon_chamber.json │ │ │ ├── steel_quickfiring_breech.json │ │ │ ├── steel_screw_breech.json │ │ │ ├── steel_sliding_breech.json │ │ │ ├── thick_nethersteel_cannon_chamber.json │ │ │ ├── thick_steel_cannon_chamber.json │ │ │ ├── traffic_cone.json │ │ │ ├── unbored_bronze_autocannon_barrel.json │ │ │ ├── unbored_bronze_autocannon_breech.json │ │ │ ├── unbored_bronze_autocannon_recoil_spring.json │ │ │ ├── unbored_bronze_cannon_barrel.json │ │ │ ├── unbored_bronze_cannon_chamber.json │ │ │ ├── unbored_bronze_sliding_breech.json │ │ │ ├── unbored_cast_iron_autocannon_barrel.json │ │ │ ├── unbored_cast_iron_autocannon_breech.json │ │ │ ├── unbored_cast_iron_autocannon_recoil_spring.json │ │ │ ├── unbored_cast_iron_cannon_barrel.json │ │ │ ├── unbored_cast_iron_cannon_chamber.json │ │ │ ├── unbored_cast_iron_sliding_breech.json │ │ │ ├── unbored_large_nethersteel_cannon_layer.json │ │ │ ├── unbored_large_steel_cannon_layer.json │ │ │ ├── unbored_medium_nethersteel_cannon_layer.json │ │ │ ├── unbored_medium_steel_cannon_layer.json │ │ │ ├── unbored_nethersteel_screw_breech.json │ │ │ ├── unbored_small_nethersteel_cannon_layer.json │ │ │ ├── unbored_small_steel_cannon_layer.json │ │ │ ├── unbored_steel_autocannon_barrel.json │ │ │ ├── unbored_steel_autocannon_breech.json │ │ │ ├── unbored_steel_autocannon_recoil_spring.json │ │ │ ├── unbored_steel_screw_breech.json │ │ │ ├── unbored_steel_sliding_breech.json │ │ │ ├── unbored_very_large_nethersteel_cannon_layer.json │ │ │ ├── unbored_very_large_steel_cannon_layer.json │ │ │ ├── unbored_very_small_nethersteel_cannon_layer.json │ │ │ ├── unbored_very_small_steel_cannon_layer.json │ │ │ ├── very_large_cast_mould.json │ │ │ ├── very_large_nethersteel_cannon_layer.json │ │ │ ├── very_large_steel_cannon_layer.json │ │ │ ├── very_small_cast_mould.json │ │ │ ├── very_small_nethersteel_cannon_layer.json │ │ │ ├── very_small_steel_cannon_layer.json │ │ │ ├── worm_head.json │ │ │ ├── wrought_iron_cannon_chamber.json │ │ │ ├── wrought_iron_cannon_end.json │ │ │ ├── wrought_iron_drop_mortar_end.json │ │ │ └── yaw_controller.json │ │ │ ├── lang │ │ │ ├── en_ud.json │ │ │ └── en_us.json │ │ │ ├── models │ │ │ ├── block │ │ │ │ ├── ap_shell.json │ │ │ │ ├── ap_shot.json │ │ │ │ ├── autocannon │ │ │ │ │ ├── bronze_autocannon_spring.json │ │ │ │ │ ├── cast_iron_autocannon_spring.json │ │ │ │ │ └── steel_autocannon_spring.json │ │ │ │ ├── bag_of_grapeshot.json │ │ │ │ ├── bronze_autocannon_barrel_assembled.json │ │ │ │ ├── bronze_autocannon_barrel_flanged.json │ │ │ │ ├── bronze_autocannon_barrel_nothing.json │ │ │ │ ├── bronze_autocannon_breech.json │ │ │ │ ├── bronze_autocannon_breech_handle.json │ │ │ │ ├── bronze_autocannon_recoil_spring.json │ │ │ │ ├── bronze_cannon_barrel.json │ │ │ │ ├── bronze_cannon_chamber.json │ │ │ │ ├── bronze_cannon_end.json │ │ │ │ ├── bronze_quickfiring_breech.json │ │ │ │ ├── bronze_quickfiring_breech_rotated.json │ │ │ │ ├── bronze_sliding_breech.json │ │ │ │ ├── bronze_sliding_breech_rotated.json │ │ │ │ ├── built_up_cannon.json │ │ │ │ ├── built_up_nethersteel_cannon_barrel.json │ │ │ │ ├── built_up_nethersteel_cannon_chamber.json │ │ │ │ ├── built_up_steel_cannon_barrel.json │ │ │ │ ├── built_up_steel_cannon_chamber.json │ │ │ │ ├── cannon_cast.json │ │ │ │ ├── cast_iron_autocannon_barrel_assembled.json │ │ │ │ ├── cast_iron_autocannon_barrel_flanged.json │ │ │ │ ├── cast_iron_autocannon_barrel_nothing.json │ │ │ │ ├── cast_iron_autocannon_breech.json │ │ │ │ ├── cast_iron_autocannon_breech_handle.json │ │ │ │ ├── cast_iron_autocannon_recoil_spring.json │ │ │ │ ├── cast_iron_block.json │ │ │ │ ├── cast_iron_cannon_barrel.json │ │ │ │ ├── cast_iron_cannon_chamber.json │ │ │ │ ├── cast_iron_cannon_end.json │ │ │ │ ├── cast_iron_quickfiring_breech.json │ │ │ │ ├── cast_iron_quickfiring_breech_rotated.json │ │ │ │ ├── cast_iron_sliding_breech.json │ │ │ │ ├── cast_iron_sliding_breech_rotated.json │ │ │ │ ├── casting_sand.json │ │ │ │ ├── finished_cannon_cast.json │ │ │ │ ├── fluid_shell.json │ │ │ │ ├── he_shell.json │ │ │ │ ├── incomplete_bronze_autocannon_breech.json │ │ │ │ ├── incomplete_bronze_autocannon_recoil_spring.json │ │ │ │ ├── incomplete_bronze_sliding_breech.json │ │ │ │ ├── incomplete_bronze_sliding_breech_axis.json │ │ │ │ ├── incomplete_bronze_sliding_breech_axis_rotated.json │ │ │ │ ├── incomplete_bronze_sliding_breech_rotated.json │ │ │ │ ├── incomplete_cast_iron_autocannon_breech.json │ │ │ │ ├── incomplete_cast_iron_autocannon_recoil_spring.json │ │ │ │ ├── incomplete_cast_iron_sliding_breech.json │ │ │ │ ├── incomplete_cast_iron_sliding_breech_axis.json │ │ │ │ ├── incomplete_cast_iron_sliding_breech_axis_rotated.json │ │ │ │ ├── incomplete_cast_iron_sliding_breech_rotated.json │ │ │ │ ├── incomplete_nethersteel_screw_breech.json │ │ │ │ ├── incomplete_nethersteel_screw_breech_axis.json │ │ │ │ ├── incomplete_steel_autocannon_breech.json │ │ │ │ ├── incomplete_steel_autocannon_recoil_spring.json │ │ │ │ ├── incomplete_steel_screw_breech.json │ │ │ │ ├── incomplete_steel_screw_breech_axis.json │ │ │ │ ├── incomplete_steel_sliding_breech.json │ │ │ │ ├── incomplete_steel_sliding_breech_axis.json │ │ │ │ ├── incomplete_steel_sliding_breech_axis_rotated.json │ │ │ │ ├── incomplete_steel_sliding_breech_rotated.json │ │ │ │ ├── large_nethersteel_cannon_layer.json │ │ │ │ ├── large_steel_cannon_layer.json │ │ │ │ ├── log_cannon_chamber.json │ │ │ │ ├── log_cannon_end.json │ │ │ │ ├── medium_nethersteel_cannon_layer.json │ │ │ │ ├── medium_steel_cannon_layer.json │ │ │ │ ├── molten_bronze.json │ │ │ │ ├── molten_cast_iron.json │ │ │ │ ├── molten_nethersteel.json │ │ │ │ ├── molten_steel.json │ │ │ │ ├── mortar_stone.json │ │ │ │ ├── nethersteel_block.json │ │ │ │ ├── nethersteel_cannon_barrel.json │ │ │ │ ├── nethersteel_cannon_chamber.json │ │ │ │ ├── nethersteel_screw_breech.json │ │ │ │ ├── shrapnel_shell.json │ │ │ │ ├── small_nethersteel_cannon_layer.json │ │ │ │ ├── small_steel_cannon_layer.json │ │ │ │ ├── smoke_shell.json │ │ │ │ ├── solid_shot.json │ │ │ │ ├── steel_autocannon_barrel_assembled.json │ │ │ │ ├── steel_autocannon_barrel_flanged.json │ │ │ │ ├── steel_autocannon_barrel_nothing.json │ │ │ │ ├── steel_autocannon_breech.json │ │ │ │ ├── steel_autocannon_breech_handle.json │ │ │ │ ├── steel_autocannon_recoil_spring.json │ │ │ │ ├── steel_cannon_barrel.json │ │ │ │ ├── steel_cannon_chamber.json │ │ │ │ ├── steel_quickfiring_breech.json │ │ │ │ ├── steel_quickfiring_breech_rotated.json │ │ │ │ ├── steel_screw_breech.json │ │ │ │ ├── steel_sliding_breech.json │ │ │ │ ├── steel_sliding_breech_rotated.json │ │ │ │ ├── thick_nethersteel_cannon_chamber.json │ │ │ │ ├── thick_steel_cannon_chamber.json │ │ │ │ ├── unbored_bronze_autocannon_barrel.json │ │ │ │ ├── unbored_bronze_autocannon_breech.json │ │ │ │ ├── unbored_bronze_autocannon_recoil_spring.json │ │ │ │ ├── unbored_bronze_cannon_barrel.json │ │ │ │ ├── unbored_bronze_cannon_chamber.json │ │ │ │ ├── unbored_bronze_sliding_breech.json │ │ │ │ ├── unbored_bronze_sliding_breech_rotated.json │ │ │ │ ├── unbored_cast_iron_autocannon_barrel.json │ │ │ │ ├── unbored_cast_iron_autocannon_breech.json │ │ │ │ ├── unbored_cast_iron_autocannon_recoil_spring.json │ │ │ │ ├── unbored_cast_iron_cannon_barrel.json │ │ │ │ ├── unbored_cast_iron_cannon_chamber.json │ │ │ │ ├── unbored_cast_iron_sliding_breech.json │ │ │ │ ├── unbored_cast_iron_sliding_breech_rotated.json │ │ │ │ ├── unbored_large_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_large_steel_cannon_layer.json │ │ │ │ ├── unbored_medium_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_medium_steel_cannon_layer.json │ │ │ │ ├── unbored_nethersteel_screw_breech.json │ │ │ │ ├── unbored_small_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_small_steel_cannon_layer.json │ │ │ │ ├── unbored_steel_autocannon_barrel.json │ │ │ │ ├── unbored_steel_autocannon_breech.json │ │ │ │ ├── unbored_steel_autocannon_recoil_spring.json │ │ │ │ ├── unbored_steel_screw_breech.json │ │ │ │ ├── unbored_steel_sliding_breech.json │ │ │ │ ├── unbored_steel_sliding_breech_rotated.json │ │ │ │ ├── unbored_very_large_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_very_large_steel_cannon_layer.json │ │ │ │ ├── unbored_very_small_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_very_small_steel_cannon_layer.json │ │ │ │ ├── very_large_nethersteel_cannon_layer.json │ │ │ │ ├── very_large_steel_cannon_layer.json │ │ │ │ ├── very_small_nethersteel_cannon_layer.json │ │ │ │ ├── very_small_steel_cannon_layer.json │ │ │ │ ├── wrought_iron_cannon_chamber.json │ │ │ │ ├── wrought_iron_cannon_end.json │ │ │ │ └── wrought_iron_drop_mortar_end.json │ │ │ └── item │ │ │ │ ├── ap_autocannon_round.json │ │ │ │ ├── ap_shell.json │ │ │ │ ├── ap_shell_base_fuze.json │ │ │ │ ├── ap_shell_head_fuze.json │ │ │ │ ├── ap_shot.json │ │ │ │ ├── autocannon_ammo_container.json │ │ │ │ ├── autocannon_barrel_cast_mould.json │ │ │ │ ├── autocannon_breech_cast_mould.json │ │ │ │ ├── autocannon_cartridge_sheet.json │ │ │ │ ├── autocannon_recoil_spring_cast_mould.json │ │ │ │ ├── bag_of_grapeshot.json │ │ │ │ ├── basin_foundry_lid.json │ │ │ │ ├── big_cartridge.json │ │ │ │ ├── block_armor_inspection_tool.json │ │ │ │ ├── bronze_autocannon_barrel.json │ │ │ │ ├── bronze_autocannon_breech.json │ │ │ │ ├── bronze_autocannon_breech_extractor.json │ │ │ │ ├── bronze_autocannon_recoil_spring.json │ │ │ │ ├── bronze_cannon_barrel.json │ │ │ │ ├── bronze_cannon_chamber.json │ │ │ │ ├── bronze_cannon_end.json │ │ │ │ ├── bronze_quickfiring_breech.json │ │ │ │ ├── bronze_scrap.json │ │ │ │ ├── bronze_sliding_breech.json │ │ │ │ ├── bronze_sliding_breechblock.json │ │ │ │ ├── built_up_nethersteel_cannon_barrel.json │ │ │ │ ├── built_up_nethersteel_cannon_chamber.json │ │ │ │ ├── built_up_steel_cannon_barrel.json │ │ │ │ ├── built_up_steel_cannon_chamber.json │ │ │ │ ├── cannon_carriage.json │ │ │ │ ├── cannon_end_cast_mould.json │ │ │ │ ├── cast_iron_autocannon_barrel.json │ │ │ │ ├── cast_iron_autocannon_breech.json │ │ │ │ ├── cast_iron_autocannon_breech_extractor.json │ │ │ │ ├── cast_iron_autocannon_recoil_spring.json │ │ │ │ ├── cast_iron_block.json │ │ │ │ ├── cast_iron_cannon_barrel.json │ │ │ │ ├── cast_iron_cannon_chamber.json │ │ │ │ ├── cast_iron_cannon_end.json │ │ │ │ ├── cast_iron_ingot.json │ │ │ │ ├── cast_iron_nugget.json │ │ │ │ ├── cast_iron_quickfiring_breech.json │ │ │ │ ├── cast_iron_sliding_breech.json │ │ │ │ ├── cast_iron_sliding_breechblock.json │ │ │ │ ├── casting_sand.json │ │ │ │ ├── congealed_nitro.json │ │ │ │ ├── creative_autocannon_ammo_container.json │ │ │ │ ├── delayed_impact_fuze.json │ │ │ │ ├── drop_mortar_shell.json │ │ │ │ ├── empty_machine_gun_round.json │ │ │ │ ├── empty_powder_charge.json │ │ │ │ ├── fixed_cannon_mount.json │ │ │ │ ├── flak_autocannon_round.json │ │ │ │ ├── fluid_shell.json │ │ │ │ ├── fluid_shell_base_fuze.json │ │ │ │ ├── fluid_shell_head_fuze.json │ │ │ │ ├── gas_mask.json │ │ │ │ ├── guncotton.json │ │ │ │ ├── gunpowder_pinch.json │ │ │ │ ├── hardened_nitro.json │ │ │ │ ├── he_shell.json │ │ │ │ ├── he_shell_base_fuze.json │ │ │ │ ├── he_shell_head_fuze.json │ │ │ │ ├── impact_fuze.json │ │ │ │ ├── incomplete_bronze_autocannon_breech.json │ │ │ │ ├── incomplete_bronze_autocannon_recoil_spring.json │ │ │ │ ├── incomplete_bronze_sliding_breech.json │ │ │ │ ├── incomplete_cast_iron_autocannon_breech.json │ │ │ │ ├── incomplete_cast_iron_autocannon_recoil_spring.json │ │ │ │ ├── incomplete_cast_iron_sliding_breech.json │ │ │ │ ├── incomplete_nethersteel_screw_breech.json │ │ │ │ ├── incomplete_steel_autocannon_breech.json │ │ │ │ ├── incomplete_steel_autocannon_recoil_spring.json │ │ │ │ ├── incomplete_steel_screw_breech.json │ │ │ │ ├── incomplete_steel_sliding_breech.json │ │ │ │ ├── large_cast_mould.json │ │ │ │ ├── large_nethersteel_cannon_layer.json │ │ │ │ ├── large_steel_cannon_layer.json │ │ │ │ ├── log_cannon_chamber.json │ │ │ │ ├── log_cannon_end.json │ │ │ │ ├── machine_gun_round.json │ │ │ │ ├── medium_cast_mould.json │ │ │ │ ├── medium_nethersteel_cannon_layer.json │ │ │ │ ├── medium_steel_cannon_layer.json │ │ │ │ ├── molten_bronze_bucket.json │ │ │ │ ├── molten_cast_iron_bucket.json │ │ │ │ ├── molten_nethersteel_bucket.json │ │ │ │ ├── molten_steel_bucket.json │ │ │ │ ├── mortar_stone.json │ │ │ │ ├── mortar_stone_projectile.json │ │ │ │ ├── nethersteel_block.json │ │ │ │ ├── nethersteel_cannon_barrel.json │ │ │ │ ├── nethersteel_cannon_chamber.json │ │ │ │ ├── nethersteel_ingot.json │ │ │ │ ├── nethersteel_nugget.json │ │ │ │ ├── nethersteel_screw_breech.json │ │ │ │ ├── nethersteel_screw_lock.json │ │ │ │ ├── nitropowder.json │ │ │ │ ├── packed_guncotton.json │ │ │ │ ├── packed_gunpowder.json │ │ │ │ ├── pair_of_cannon_wheels.json │ │ │ │ ├── partial_bronze_autocannon_breech_extractor.json │ │ │ │ ├── partial_cast_iron_autocannon_breech_extractor.json │ │ │ │ ├── partial_recoil_spring.json │ │ │ │ ├── partial_steel_autocannon_breech_extractor.json │ │ │ │ ├── powder_charge.json │ │ │ │ ├── proximity_fuze.json │ │ │ │ ├── quickfiring_mechanism.json │ │ │ │ ├── ram_head.json │ │ │ │ ├── recoil_spring.json │ │ │ │ ├── screw_breech_cast_mould.json │ │ │ │ ├── shot_balls.json │ │ │ │ ├── shrapnel_shell.json │ │ │ │ ├── shrapnel_shell_base_fuze.json │ │ │ │ ├── shrapnel_shell_head_fuze.json │ │ │ │ ├── sliding_breech_cast_mould.json │ │ │ │ ├── small_cast_mould.json │ │ │ │ ├── small_nethersteel_cannon_layer.json │ │ │ │ ├── small_steel_cannon_layer.json │ │ │ │ ├── smoke_shell.json │ │ │ │ ├── smoke_shell_base_fuze.json │ │ │ │ ├── smoke_shell_head_fuze.json │ │ │ │ ├── solid_shot.json │ │ │ │ ├── spring_wire.json │ │ │ │ ├── steel_autocannon_barrel.json │ │ │ │ ├── steel_autocannon_breech.json │ │ │ │ ├── steel_autocannon_breech_extractor.json │ │ │ │ ├── steel_autocannon_recoil_spring.json │ │ │ │ ├── steel_cannon_barrel.json │ │ │ │ ├── steel_cannon_chamber.json │ │ │ │ ├── steel_quickfiring_breech.json │ │ │ │ ├── steel_scrap.json │ │ │ │ ├── steel_screw_breech.json │ │ │ │ ├── steel_screw_lock.json │ │ │ │ ├── steel_sliding_breech.json │ │ │ │ ├── steel_sliding_breechblock.json │ │ │ │ ├── thick_nethersteel_cannon_chamber.json │ │ │ │ ├── thick_steel_cannon_chamber.json │ │ │ │ ├── timed_fuze.json │ │ │ │ ├── tracer_tip.json │ │ │ │ ├── traffic_cone.json │ │ │ │ ├── unbored_bronze_autocannon_barrel.json │ │ │ │ ├── unbored_bronze_autocannon_breech.json │ │ │ │ ├── unbored_bronze_autocannon_recoil_spring.json │ │ │ │ ├── unbored_bronze_cannon_barrel.json │ │ │ │ ├── unbored_bronze_cannon_chamber.json │ │ │ │ ├── unbored_bronze_sliding_breech.json │ │ │ │ ├── unbored_cast_iron_autocannon_barrel.json │ │ │ │ ├── unbored_cast_iron_autocannon_breech.json │ │ │ │ ├── unbored_cast_iron_autocannon_recoil_spring.json │ │ │ │ ├── unbored_cast_iron_cannon_barrel.json │ │ │ │ ├── unbored_cast_iron_cannon_chamber.json │ │ │ │ ├── unbored_cast_iron_sliding_breech.json │ │ │ │ ├── unbored_large_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_large_steel_cannon_layer.json │ │ │ │ ├── unbored_medium_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_medium_steel_cannon_layer.json │ │ │ │ ├── unbored_nethersteel_screw_breech.json │ │ │ │ ├── unbored_small_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_small_steel_cannon_layer.json │ │ │ │ ├── unbored_steel_autocannon_barrel.json │ │ │ │ ├── unbored_steel_autocannon_breech.json │ │ │ │ ├── unbored_steel_autocannon_recoil_spring.json │ │ │ │ ├── unbored_steel_screw_breech.json │ │ │ │ ├── unbored_steel_sliding_breech.json │ │ │ │ ├── unbored_very_large_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_very_large_steel_cannon_layer.json │ │ │ │ ├── unbored_very_small_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_very_small_steel_cannon_layer.json │ │ │ │ ├── very_large_cast_mould.json │ │ │ │ ├── very_large_nethersteel_cannon_layer.json │ │ │ │ ├── very_large_steel_cannon_layer.json │ │ │ │ ├── very_small_cast_mould.json │ │ │ │ ├── very_small_nethersteel_cannon_layer.json │ │ │ │ ├── very_small_steel_cannon_layer.json │ │ │ │ ├── wired_fuze.json │ │ │ │ ├── worm_head.json │ │ │ │ ├── wrought_iron_cannon_chamber.json │ │ │ │ ├── wrought_iron_cannon_end.json │ │ │ │ └── wrought_iron_drop_mortar_end.json │ │ │ └── sounds.json │ │ └── data │ │ ├── c │ │ └── tags │ │ │ ├── fluids │ │ │ ├── molten_bronze.json │ │ │ ├── molten_cast_iron.json │ │ │ ├── molten_nethersteel.json │ │ │ └── molten_steel.json │ │ │ └── items │ │ │ ├── bronze_nuggets.json │ │ │ ├── cast_iron_ingots.json │ │ │ ├── cast_iron_nuggets.json │ │ │ ├── ingots │ │ │ ├── cast_iron.json │ │ │ └── nethersteel.json │ │ │ ├── nethersteel_ingots.json │ │ │ ├── nethersteel_nuggets.json │ │ │ ├── nuggets │ │ │ ├── bronze.json │ │ │ ├── cast_iron.json │ │ │ ├── nethersteel.json │ │ │ └── steel.json │ │ │ └── steel_nuggets.json │ │ ├── create │ │ └── tags │ │ │ └── blocks │ │ │ └── safe_nbt.json │ │ ├── createbigcannons │ │ ├── advancements │ │ │ └── recipes │ │ │ │ ├── building_blocks │ │ │ │ ├── cast_iron_block.json │ │ │ │ ├── cast_iron_nugget.json │ │ │ │ ├── nethersteel_block.json │ │ │ │ └── nethersteel_nugget.json │ │ │ │ └── misc │ │ │ │ ├── ap_autocannon_round.json │ │ │ │ ├── ap_shot.json │ │ │ │ ├── autocannon_ammo_container.json │ │ │ │ ├── bag_of_grapeshot.json │ │ │ │ ├── basin_foundry_lid.json │ │ │ │ ├── big_cannon_sheet_inexpensive.json │ │ │ │ ├── big_cartridge_sheet.json │ │ │ │ ├── bronze_sliding_breechblock.json │ │ │ │ ├── cannon_builder.json │ │ │ │ ├── cannon_carriage.json │ │ │ │ ├── cannon_drill.json │ │ │ │ ├── cannon_loader.json │ │ │ │ ├── cannon_mount.json │ │ │ │ ├── cannon_mount_extension.json │ │ │ │ ├── cannon_welder.json │ │ │ │ ├── cannon_welder_mirrored.json │ │ │ │ ├── cast_iron_ingot_from_block.json │ │ │ │ ├── cast_iron_ingot_from_nuggets.json │ │ │ │ ├── cast_iron_sliding_breechblock.json │ │ │ │ ├── casting_sand.json │ │ │ │ ├── delayed_impact_fuze.json │ │ │ │ ├── drop_mortar_shell.json │ │ │ │ ├── empty_powder_charge.json │ │ │ │ ├── fixed_cannon_mount.json │ │ │ │ ├── flak_autocannon_round.json │ │ │ │ ├── gas_mask.json │ │ │ │ ├── gunpowder_from_pinches.json │ │ │ │ ├── gunpowder_pinch.json │ │ │ │ ├── hardened_nitro.json │ │ │ │ ├── impact_fuze.json │ │ │ │ ├── log_cannon_chamber.json │ │ │ │ ├── log_cannon_end.json │ │ │ │ ├── machine_gun_round.json │ │ │ │ ├── mortar_stone.json │ │ │ │ ├── nethersteel_ingot_from_block.json │ │ │ │ ├── nethersteel_ingot_from_nuggets.json │ │ │ │ ├── nethersteel_screw_lock.json │ │ │ │ ├── pair_of_cannon_wheels.json │ │ │ │ ├── powder_charge.json │ │ │ │ ├── proximity_fuze.json │ │ │ │ ├── quickfiring_mechanism.json │ │ │ │ ├── ram_head.json │ │ │ │ ├── ram_rod.json │ │ │ │ ├── shot_balls.json │ │ │ │ ├── smoke_shell.json │ │ │ │ ├── solid_shot.json │ │ │ │ ├── steel_screw_lock.json │ │ │ │ ├── steel_sliding_breechblock.json │ │ │ │ ├── timed_fuze.json │ │ │ │ ├── tracer_tip.json │ │ │ │ ├── wired_fuze.json │ │ │ │ ├── worm.json │ │ │ │ ├── worm_head.json │ │ │ │ ├── wrought_iron_cannon_chamber.json │ │ │ │ ├── wrought_iron_cannon_end.json │ │ │ │ ├── wrought_iron_drop_mortar_end.json │ │ │ │ └── wrought_iron_drop_mortar_end_mirrored.json │ │ ├── block_recipes │ │ │ ├── bronze_autocannon_barrel.json │ │ │ ├── bronze_cannon_barrel.json │ │ │ ├── bronze_cannon_chamber.json │ │ │ ├── bronze_cannon_end.json │ │ │ ├── built_up_nethersteel_cannon_barrel.json │ │ │ ├── built_up_nethersteel_cannon_chamber.json │ │ │ ├── built_up_steel_cannon_barrel.json │ │ │ ├── built_up_steel_cannon_chamber.json │ │ │ ├── cast_iron_autocannon_barrel.json │ │ │ ├── cast_iron_cannon_barrel.json │ │ │ ├── cast_iron_cannon_chamber.json │ │ │ ├── cast_iron_cannon_end.json │ │ │ ├── incomplete_bronze_autocannon_breech.json │ │ │ ├── incomplete_bronze_autocannon_recoil_spring.json │ │ │ ├── incomplete_bronze_sliding_breech.json │ │ │ ├── incomplete_cast_iron_autocannon_breech.json │ │ │ ├── incomplete_cast_iron_autocannon_recoil_spring.json │ │ │ ├── incomplete_cast_iron_sliding_breech.json │ │ │ ├── incomplete_nethersteel_screw_breech.json │ │ │ ├── incomplete_steel_autocannon_breech.json │ │ │ ├── incomplete_steel_autocannon_recoil_spring.json │ │ │ ├── incomplete_steel_screw_breech.json │ │ │ ├── incomplete_steel_sliding_breech.json │ │ │ ├── large_nethersteel_cannon_layer.json │ │ │ ├── large_steel_cannon_layer.json │ │ │ ├── medium_nethersteel_cannon_layer.json │ │ │ ├── medium_steel_cannon_layer.json │ │ │ ├── nethersteel_cannon_barrel.json │ │ │ ├── nethersteel_cannon_chamber.json │ │ │ ├── small_nethersteel_cannon_layer.json │ │ │ ├── small_steel_cannon_layer.json │ │ │ ├── steel_autocannon_barrel.json │ │ │ ├── steel_cannon_barrel.json │ │ │ ├── steel_cannon_chamber.json │ │ │ ├── thick_nethersteel_cannon_chamber.json │ │ │ ├── thick_steel_cannon_chamber.json │ │ │ ├── unbored_bronze_autocannon_barrel.json │ │ │ ├── unbored_bronze_autocannon_breech.json │ │ │ ├── unbored_bronze_autocannon_recoil_spring.json │ │ │ ├── unbored_bronze_cannon_barrel.json │ │ │ ├── unbored_bronze_cannon_chamber.json │ │ │ ├── unbored_bronze_sliding_breech.json │ │ │ ├── unbored_cast_iron_autocannon_barrel.json │ │ │ ├── unbored_cast_iron_autocannon_breech.json │ │ │ ├── unbored_cast_iron_autocannon_recoil_spring.json │ │ │ ├── unbored_cast_iron_cannon_barrel.json │ │ │ ├── unbored_cast_iron_cannon_chamber.json │ │ │ ├── unbored_cast_iron_sliding_breech.json │ │ │ ├── unbored_large_nethersteel_cannon_layer.json │ │ │ ├── unbored_large_steel_cannon_layer.json │ │ │ ├── unbored_medium_nethersteel_cannon_layer.json │ │ │ ├── unbored_medium_steel_cannon_layer.json │ │ │ ├── unbored_nethersteel_screw_breech.json │ │ │ ├── unbored_small_nethersteel_cannon_layer.json │ │ │ ├── unbored_small_steel_cannon_layer.json │ │ │ ├── unbored_steel_autocannon_barrel.json │ │ │ ├── unbored_steel_autocannon_breech.json │ │ │ ├── unbored_steel_autocannon_recoil_spring.json │ │ │ ├── unbored_steel_screw_breech.json │ │ │ ├── unbored_steel_sliding_breech.json │ │ │ ├── unbored_very_large_nethersteel_cannon_layer.json │ │ │ ├── unbored_very_large_steel_cannon_layer.json │ │ │ ├── unbored_very_small_nethersteel_cannon_layer.json │ │ │ ├── unbored_very_small_steel_cannon_layer.json │ │ │ ├── very_large_nethersteel_cannon_layer.json │ │ │ ├── very_large_steel_cannon_layer.json │ │ │ ├── very_small_nethersteel_cannon_layer.json │ │ │ └── very_small_steel_cannon_layer.json │ │ ├── loot_tables │ │ │ ├── blocks │ │ │ │ ├── ap_shell.json │ │ │ │ ├── ap_shot.json │ │ │ │ ├── autocannon_ammo_container.json │ │ │ │ ├── autocannon_barrel_cast_mould.json │ │ │ │ ├── autocannon_breech_cast_mould.json │ │ │ │ ├── autocannon_recoil_spring_cast_mould.json │ │ │ │ ├── bag_of_grapeshot.json │ │ │ │ ├── basin_foundry_lid.json │ │ │ │ ├── big_cartridge.json │ │ │ │ ├── bronze_autocannon_barrel.json │ │ │ │ ├── bronze_autocannon_breech.json │ │ │ │ ├── bronze_autocannon_recoil_spring.json │ │ │ │ ├── bronze_cannon_barrel.json │ │ │ │ ├── bronze_cannon_chamber.json │ │ │ │ ├── bronze_cannon_end.json │ │ │ │ ├── bronze_quickfiring_breech.json │ │ │ │ ├── bronze_sliding_breech.json │ │ │ │ ├── built_up_cannon.json │ │ │ │ ├── built_up_nethersteel_cannon_barrel.json │ │ │ │ ├── built_up_nethersteel_cannon_chamber.json │ │ │ │ ├── built_up_steel_cannon_barrel.json │ │ │ │ ├── built_up_steel_cannon_chamber.json │ │ │ │ ├── cannon_builder.json │ │ │ │ ├── cannon_builder_head.json │ │ │ │ ├── cannon_carriage.json │ │ │ │ ├── cannon_cast.json │ │ │ │ ├── cannon_drill.json │ │ │ │ ├── cannon_drill_bit.json │ │ │ │ ├── cannon_end_cast_mould.json │ │ │ │ ├── cannon_loader.json │ │ │ │ ├── cannon_mount.json │ │ │ │ ├── cannon_mount_extension.json │ │ │ │ ├── cast_iron_autocannon_barrel.json │ │ │ │ ├── cast_iron_autocannon_breech.json │ │ │ │ ├── cast_iron_autocannon_recoil_spring.json │ │ │ │ ├── cast_iron_block.json │ │ │ │ ├── cast_iron_cannon_barrel.json │ │ │ │ ├── cast_iron_cannon_chamber.json │ │ │ │ ├── cast_iron_cannon_end.json │ │ │ │ ├── cast_iron_quickfiring_breech.json │ │ │ │ ├── cast_iron_sliding_breech.json │ │ │ │ ├── casting_sand.json │ │ │ │ ├── creative_autocannon_ammo_container.json │ │ │ │ ├── drop_mortar_shell.json │ │ │ │ ├── finished_cannon_cast.json │ │ │ │ ├── fixed_cannon_mount.json │ │ │ │ ├── fluid_shell.json │ │ │ │ ├── he_shell.json │ │ │ │ ├── incomplete_bronze_autocannon_breech.json │ │ │ │ ├── incomplete_bronze_autocannon_recoil_spring.json │ │ │ │ ├── incomplete_bronze_sliding_breech.json │ │ │ │ ├── incomplete_cast_iron_autocannon_breech.json │ │ │ │ ├── incomplete_cast_iron_autocannon_recoil_spring.json │ │ │ │ ├── incomplete_cast_iron_sliding_breech.json │ │ │ │ ├── incomplete_nethersteel_screw_breech.json │ │ │ │ ├── incomplete_steel_autocannon_breech.json │ │ │ │ ├── incomplete_steel_autocannon_recoil_spring.json │ │ │ │ ├── incomplete_steel_screw_breech.json │ │ │ │ ├── incomplete_steel_sliding_breech.json │ │ │ │ ├── large_cast_mould.json │ │ │ │ ├── large_nethersteel_cannon_layer.json │ │ │ │ ├── large_steel_cannon_layer.json │ │ │ │ ├── log_cannon_chamber.json │ │ │ │ ├── log_cannon_end.json │ │ │ │ ├── medium_cast_mould.json │ │ │ │ ├── medium_nethersteel_cannon_layer.json │ │ │ │ ├── medium_steel_cannon_layer.json │ │ │ │ ├── mortar_stone.json │ │ │ │ ├── mortar_stone_projectile.json │ │ │ │ ├── nethersteel_block.json │ │ │ │ ├── nethersteel_cannon_barrel.json │ │ │ │ ├── nethersteel_cannon_chamber.json │ │ │ │ ├── nethersteel_screw_breech.json │ │ │ │ ├── powder_charge.json │ │ │ │ ├── ram_head.json │ │ │ │ ├── screw_breech_cast_mould.json │ │ │ │ ├── shrapnel_shell.json │ │ │ │ ├── sliding_breech_cast_mould.json │ │ │ │ ├── small_cast_mould.json │ │ │ │ ├── small_nethersteel_cannon_layer.json │ │ │ │ ├── small_steel_cannon_layer.json │ │ │ │ ├── smoke_shell.json │ │ │ │ ├── solid_shot.json │ │ │ │ ├── steel_autocannon_barrel.json │ │ │ │ ├── steel_autocannon_breech.json │ │ │ │ ├── steel_autocannon_recoil_spring.json │ │ │ │ ├── steel_cannon_barrel.json │ │ │ │ ├── steel_cannon_chamber.json │ │ │ │ ├── steel_quickfiring_breech.json │ │ │ │ ├── steel_screw_breech.json │ │ │ │ ├── steel_sliding_breech.json │ │ │ │ ├── thick_nethersteel_cannon_chamber.json │ │ │ │ ├── thick_steel_cannon_chamber.json │ │ │ │ ├── traffic_cone.json │ │ │ │ ├── unbored_bronze_autocannon_barrel.json │ │ │ │ ├── unbored_bronze_autocannon_breech.json │ │ │ │ ├── unbored_bronze_autocannon_recoil_spring.json │ │ │ │ ├── unbored_bronze_cannon_barrel.json │ │ │ │ ├── unbored_bronze_cannon_chamber.json │ │ │ │ ├── unbored_bronze_sliding_breech.json │ │ │ │ ├── unbored_cast_iron_autocannon_barrel.json │ │ │ │ ├── unbored_cast_iron_autocannon_breech.json │ │ │ │ ├── unbored_cast_iron_autocannon_recoil_spring.json │ │ │ │ ├── unbored_cast_iron_cannon_barrel.json │ │ │ │ ├── unbored_cast_iron_cannon_chamber.json │ │ │ │ ├── unbored_cast_iron_sliding_breech.json │ │ │ │ ├── unbored_large_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_large_steel_cannon_layer.json │ │ │ │ ├── unbored_medium_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_medium_steel_cannon_layer.json │ │ │ │ ├── unbored_nethersteel_screw_breech.json │ │ │ │ ├── unbored_small_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_small_steel_cannon_layer.json │ │ │ │ ├── unbored_steel_autocannon_barrel.json │ │ │ │ ├── unbored_steel_autocannon_breech.json │ │ │ │ ├── unbored_steel_autocannon_recoil_spring.json │ │ │ │ ├── unbored_steel_screw_breech.json │ │ │ │ ├── unbored_steel_sliding_breech.json │ │ │ │ ├── unbored_very_large_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_very_large_steel_cannon_layer.json │ │ │ │ ├── unbored_very_small_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_very_small_steel_cannon_layer.json │ │ │ │ ├── very_large_cast_mould.json │ │ │ │ ├── very_large_nethersteel_cannon_layer.json │ │ │ │ ├── very_large_steel_cannon_layer.json │ │ │ │ ├── very_small_cast_mould.json │ │ │ │ ├── very_small_nethersteel_cannon_layer.json │ │ │ │ ├── very_small_steel_cannon_layer.json │ │ │ │ ├── worm_head.json │ │ │ │ ├── wrought_iron_cannon_chamber.json │ │ │ │ ├── wrought_iron_cannon_end.json │ │ │ │ ├── wrought_iron_drop_mortar_end.json │ │ │ │ └── yaw_controller.json │ │ │ └── boring_scrap │ │ │ │ ├── unbored_bronze_autocannon_barrel.json │ │ │ │ ├── unbored_bronze_autocannon_breech.json │ │ │ │ ├── unbored_bronze_autocannon_recoil_spring.json │ │ │ │ ├── unbored_bronze_cannon_barrel.json │ │ │ │ ├── unbored_bronze_cannon_chamber.json │ │ │ │ ├── unbored_bronze_sliding_breech.json │ │ │ │ ├── unbored_cast_iron_autocannon_barrel.json │ │ │ │ ├── unbored_cast_iron_autocannon_breech.json │ │ │ │ ├── unbored_cast_iron_autocannon_recoil_spring.json │ │ │ │ ├── unbored_cast_iron_cannon_barrel.json │ │ │ │ ├── unbored_cast_iron_cannon_chamber.json │ │ │ │ ├── unbored_cast_iron_sliding_breech.json │ │ │ │ ├── unbored_large_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_large_steel_cannon_layer.json │ │ │ │ ├── unbored_medium_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_medium_steel_cannon_layer.json │ │ │ │ ├── unbored_nethersteel_screw_breech.json │ │ │ │ ├── unbored_small_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_small_steel_cannon_layer.json │ │ │ │ ├── unbored_steel_autocannon_barrel.json │ │ │ │ ├── unbored_steel_autocannon_breech.json │ │ │ │ ├── unbored_steel_autocannon_recoil_spring.json │ │ │ │ ├── unbored_steel_screw_breech.json │ │ │ │ ├── unbored_steel_sliding_breech.json │ │ │ │ ├── unbored_very_large_nethersteel_cannon_layer.json │ │ │ │ ├── unbored_very_large_steel_cannon_layer.json │ │ │ │ ├── unbored_very_small_nethersteel_cannon_layer.json │ │ │ │ └── unbored_very_small_steel_cannon_layer.json │ │ ├── recipes │ │ │ ├── ap_autocannon_round.json │ │ │ ├── ap_shell.json │ │ │ ├── ap_shot.json │ │ │ ├── autocannon_ammo_container.json │ │ │ ├── autocannon_ammo_container_filling_deployer.json │ │ │ ├── bag_of_grapeshot.json │ │ │ ├── basin_foundry_lid.json │ │ │ ├── big_cannon_sheet_inexpensive.json │ │ │ ├── big_cartridge_filling.json │ │ │ ├── big_cartridge_filling_deployer.json │ │ │ ├── big_cartridge_sheet.json │ │ │ ├── bronze_sliding_breechblock.json │ │ │ ├── cannon_builder.json │ │ │ ├── cannon_carriage.json │ │ │ ├── cannon_drill.json │ │ │ ├── cannon_loader.json │ │ │ ├── cannon_mount.json │ │ │ ├── cannon_mount_extension.json │ │ │ ├── cannon_welder.json │ │ │ ├── cannon_welder_mirrored.json │ │ │ ├── cartridge_assembly.json │ │ │ ├── cartridge_assembly_deployer.json │ │ │ ├── cast_iron_block.json │ │ │ ├── cast_iron_ingot_from_block.json │ │ │ ├── cast_iron_ingot_from_nuggets.json │ │ │ ├── cast_iron_nugget.json │ │ │ ├── cast_iron_sliding_breechblock.json │ │ │ ├── casting_sand.json │ │ │ ├── compacting │ │ │ │ ├── forge_bronze_ingot.json │ │ │ │ ├── forge_cast_iron_ingot.json │ │ │ │ ├── forge_cast_iron_nugget.json │ │ │ │ ├── forge_nethersteel_ingot.json │ │ │ │ ├── forge_nethersteel_nugget.json │ │ │ │ ├── forge_steel_ingot.json │ │ │ │ ├── iron_to_cast_iron_block.json │ │ │ │ ├── iron_to_cast_iron_ingot.json │ │ │ │ ├── packed_guncotton.json │ │ │ │ └── packed_gunpowder.json │ │ │ ├── cutting │ │ │ │ ├── autocannon_barrel_cast_mould.json │ │ │ │ ├── autocannon_breech_cast_mould.json │ │ │ │ ├── autocannon_cartridge_sheet_brass.json │ │ │ │ ├── autocannon_cartridge_sheet_copper.json │ │ │ │ ├── autocannon_cartridge_sheet_gold.json │ │ │ │ ├── autocannon_cartridge_sheet_iron.json │ │ │ │ ├── autocannon_recoil_spring_cast_mould.json │ │ │ │ ├── cannon_end_cast_mould.json │ │ │ │ ├── empty_machine_gun_round.json │ │ │ │ ├── large_cast_mould.json │ │ │ │ ├── medium_cast_mould.json │ │ │ │ ├── screw_breech_cast_mould.json │ │ │ │ ├── sliding_breech_cast_mould.json │ │ │ │ ├── small_cast_mould.json │ │ │ │ ├── spring_wire_iron.json │ │ │ │ ├── spring_wire_steel.json │ │ │ │ ├── very_large_cast_mould.json │ │ │ │ └── very_small_cast_mould.json │ │ │ ├── delayed_impact_fuze.json │ │ │ ├── drop_mortar_shell.json │ │ │ ├── empty_powder_charge.json │ │ │ ├── fixed_cannon_mount.json │ │ │ ├── flak_autocannon_round.json │ │ │ ├── fluid_shell.json │ │ │ ├── fuze_removal.json │ │ │ ├── gas_mask.json │ │ │ ├── gunpowder_from_pinches.json │ │ │ ├── gunpowder_pinch.json │ │ │ ├── hardened_nitro.json │ │ │ ├── he_shell.json │ │ │ ├── impact_fuze.json │ │ │ ├── log_cannon_chamber.json │ │ │ ├── log_cannon_end.json │ │ │ ├── machine_gun_round.json │ │ │ ├── melting │ │ │ │ ├── melt_bronze_block.json │ │ │ │ ├── melt_bronze_ingot.json │ │ │ │ ├── melt_bronze_nugget.json │ │ │ │ ├── melt_cast_iron_block.json │ │ │ │ ├── melt_cast_iron_ingot.json │ │ │ │ ├── melt_cast_iron_nugget.json │ │ │ │ ├── melt_nethersteel_block.json │ │ │ │ ├── melt_nethersteel_ingot.json │ │ │ │ ├── melt_nethersteel_nugget.json │ │ │ │ ├── melt_steel_block.json │ │ │ │ ├── melt_steel_ingot.json │ │ │ │ └── melt_steel_nugget.json │ │ │ ├── milling │ │ │ │ └── nitropowder.json │ │ │ ├── mixing │ │ │ │ ├── alloy_nethersteel_cast_iron.json │ │ │ │ ├── alloy_nethersteel_steel.json │ │ │ │ ├── congealed_nitro.json │ │ │ │ ├── congealed_nitro_no_nether.json │ │ │ │ └── guncotton.json │ │ │ ├── mortar_stone.json │ │ │ ├── munition_fuzing.json │ │ │ ├── munition_fuzing_deployer.json │ │ │ ├── nethersteel_block.json │ │ │ ├── nethersteel_ingot_from_block.json │ │ │ ├── nethersteel_ingot_from_nuggets.json │ │ │ ├── nethersteel_nugget.json │ │ │ ├── nethersteel_screw_lock.json │ │ │ ├── pair_of_cannon_wheels.json │ │ │ ├── powder_charge.json │ │ │ ├── proximity_fuze.json │ │ │ ├── quickfiring_mechanism.json │ │ │ ├── ram_head.json │ │ │ ├── ram_rod.json │ │ │ ├── sequenced_assembly │ │ │ │ ├── assembling_machine_gun_round.json │ │ │ │ ├── bronze_autocannon_breech_extractor.json │ │ │ │ ├── cast_iron_autocannon_breech_extractor.json │ │ │ │ ├── filling_autocannon_cartridge.json │ │ │ │ ├── pressing_autocannon_cartridge.json │ │ │ │ ├── pressing_big_cartridge.json │ │ │ │ ├── recoil_spring.json │ │ │ │ └── steel_autocannon_breech_extractor.json │ │ │ ├── shot_balls.json │ │ │ ├── shrapnel_shell.json │ │ │ ├── smoke_shell.json │ │ │ ├── solid_shot.json │ │ │ ├── steel_screw_lock.json │ │ │ ├── steel_sliding_breechblock.json │ │ │ ├── timed_fuze.json │ │ │ ├── tracer_application.json │ │ │ ├── tracer_application_deployer.json │ │ │ ├── tracer_removal.json │ │ │ ├── tracer_tip.json │ │ │ ├── wired_fuze.json │ │ │ ├── worm.json │ │ │ ├── worm_head.json │ │ │ ├── wrought_iron_cannon_chamber.json │ │ │ ├── wrought_iron_cannon_end.json │ │ │ ├── wrought_iron_drop_mortar_end.json │ │ │ └── wrought_iron_drop_mortar_end_mirrored.json │ │ └── tags │ │ │ ├── blocks │ │ │ ├── concrete.json │ │ │ ├── drill_can_pass_through.json │ │ │ ├── glass_effect_on_impact.json │ │ │ ├── netherrack.json │ │ │ ├── obsidian.json │ │ │ ├── reduces_spread.json │ │ │ ├── sandstone.json │ │ │ ├── spark_effect_on_impact.json │ │ │ ├── splinter_effect_on_impact.json │ │ │ └── thick_tubing.json │ │ │ ├── fluids │ │ │ └── molten_metal.json │ │ │ └── items │ │ │ ├── autocannon_ammo_containers.json │ │ │ ├── autocannon_cartridges.json │ │ │ ├── autocannon_rounds.json │ │ │ ├── big_cannon_cartridges.json │ │ │ ├── big_cannon_projectiles.json │ │ │ ├── big_cannon_propellant.json │ │ │ ├── big_cannon_propellant_bags.json │ │ │ ├── block_bronze.json │ │ │ ├── block_cast_iron.json │ │ │ ├── block_nethersteel.json │ │ │ ├── block_steel.json │ │ │ ├── can_be_nitrated.json │ │ │ ├── dust_glowstone.json │ │ │ ├── dusts_redstone.json │ │ │ ├── fuzes.json │ │ │ ├── gas_masks.json │ │ │ ├── gelatinizers.json │ │ │ ├── gems_quartz.json │ │ │ ├── glass.json │ │ │ ├── guncotton.json │ │ │ ├── gunpowder.json │ │ │ ├── gunpowder_pinch.json │ │ │ ├── high_explosive_materials.json │ │ │ ├── impact_fuze_head.json │ │ │ ├── inexpensive_big_cartridge_sheet.json │ │ │ ├── ingot_brass.json │ │ │ ├── ingot_bronze.json │ │ │ ├── ingot_cast_iron.json │ │ │ ├── ingot_copper.json │ │ │ ├── ingot_iron.json │ │ │ ├── ingot_nethersteel.json │ │ │ ├── ingot_steel.json │ │ │ ├── nitro_acidifiers.json │ │ │ ├── nitropowder.json │ │ │ ├── nugget_bronze.json │ │ │ ├── nugget_cast_iron.json │ │ │ ├── nugget_copper.json │ │ │ ├── nugget_iron.json │ │ │ ├── nugget_nethersteel.json │ │ │ ├── nugget_steel.json │ │ │ ├── sheet_brass.json │ │ │ ├── sheet_copper.json │ │ │ ├── sheet_gold.json │ │ │ ├── sheet_iron.json │ │ │ ├── sheet_steel.json │ │ │ ├── spent_autocannon_casings.json │ │ │ └── stone.json │ │ ├── forge │ │ └── tags │ │ │ ├── fluids │ │ │ ├── molten_bronze.json │ │ │ ├── molten_cast_iron.json │ │ │ ├── molten_nethersteel.json │ │ │ └── molten_steel.json │ │ │ └── items │ │ │ ├── ingots │ │ │ ├── cast_iron.json │ │ │ └── nethersteel.json │ │ │ └── nuggets │ │ │ ├── bronze.json │ │ │ ├── cast_iron.json │ │ │ ├── nethersteel.json │ │ │ └── steel.json │ │ ├── minecraft │ │ └── tags │ │ │ └── blocks │ │ │ ├── mineable │ │ │ ├── axe.json │ │ │ ├── pickaxe.json │ │ │ └── shovel.json │ │ │ ├── needs_diamond_tool.json │ │ │ ├── needs_iron_tool.json │ │ │ └── needs_stone_tool.json │ │ └── ritchiesprojectilelib │ │ └── tags │ │ └── entity_types │ │ └── precise_motion.json │ └── main │ ├── java │ └── rbasamoyai │ │ └── createbigcannons │ │ ├── base │ │ └── forge │ │ │ └── CBCRegistriesImpl.java │ │ ├── cannon_loading │ │ └── forge │ │ │ └── CannonLoaderGenImpl.java │ │ ├── cannons │ │ └── big_cannons │ │ │ └── breeches │ │ │ └── sliding_breech │ │ │ └── forge │ │ │ └── SlidingBreechBlockGenImpl.java │ │ ├── compat │ │ ├── curios │ │ │ ├── CBCCuriosIntegration.java │ │ │ ├── CBCCuriosRenderers.java │ │ │ └── GasMaskCurioRenderer.java │ │ ├── framedblocks │ │ │ ├── FramedAdjustableDoubleBlockArmorProperties.java │ │ │ ├── FramedAdjustibleDoubleBlockArmorPropertiesSerializer.java │ │ │ ├── FramedBlocksCompat.java │ │ │ ├── FramedCollapsibleBlockArmorProperties.java │ │ │ ├── FramedCollapsibleCopycatBlockArmorProperties.java │ │ │ ├── FramedDoubleBlockArmorProperties.java │ │ │ ├── FramedDoubleBlockArmorPropertiesSerializer.java │ │ │ └── SingleFramedBlockArmorProperties.java │ │ └── jei │ │ │ ├── BuiltUpHeatingCategory.java │ │ │ ├── CBCBlockRecipeCategory.java │ │ │ ├── CBCJEI.java │ │ │ ├── CannonCastingCategory.java │ │ │ ├── DrillBoringCategory.java │ │ │ ├── IncompleteCannonBlockCategory.java │ │ │ ├── MeltingCategory.java │ │ │ └── animated │ │ │ ├── BasinFoundryLidElement.java │ │ │ └── CannonCastGuiElement.java │ │ ├── crafting │ │ ├── boring │ │ │ └── forge │ │ │ │ └── CannonDrillGenImpl.java │ │ ├── builtup │ │ │ └── forge │ │ │ │ └── CannonBuilderGenImpl.java │ │ └── incomplete │ │ │ └── forge │ │ │ ├── IncompleteScrewBreechBlockGenImpl.java │ │ │ └── IncompleteSlidingBreechBlockGenImpl.java │ │ ├── datagen │ │ ├── assets │ │ │ └── forge │ │ │ │ ├── CBCBlockPartialsGen.java │ │ │ │ └── CBCBuilderTransformersImpl.java │ │ └── forge │ │ │ ├── CBCCompactingRecipeProvider.java │ │ │ ├── CBCCuttingRecipeProvider.java │ │ │ ├── CBCMillingRecipeProvider.java │ │ │ ├── CBCMixingRecipeProvider.java │ │ │ ├── CBCSequencedAssemblyRecipeProvider.java │ │ │ └── MeltingRecipeProvider.java │ │ ├── forge │ │ ├── CBCClientForge.java │ │ ├── CBCCommonForgeEvents.java │ │ ├── CBCDataForge.java │ │ ├── CBCForgeRegisterEvent.java │ │ ├── CBCModsForge.java │ │ ├── CBCRemapperForge.java │ │ ├── CreateBigCannonsForge.java │ │ ├── ModGroupImpl.java │ │ ├── cannons │ │ │ ├── AutocannonBreechBlockEntity.java │ │ │ └── AutocannonBreechInterface.java │ │ ├── crafting │ │ │ ├── CannonCastBlockEntity.java │ │ │ ├── CannonCastBlockEntityRenderer.java │ │ │ └── CannonDrillBlockEntity.java │ │ ├── index │ │ │ └── fluid_utils │ │ │ │ └── ForgeFluidBuilder.java │ │ ├── mixin │ │ │ ├── AbstractCannonProjectileMixin.java │ │ │ ├── AutocannonAmmoContainerBlockEntityMixin.java │ │ │ ├── BigCartridgeBlockMixin.java │ │ │ ├── CBCFlowingFluidMixin.java │ │ │ ├── CBCLiquidBlockMixin.java │ │ │ ├── CannonMountBlockEntityMixin.java │ │ │ ├── CannonMountExtensionBlockEntityMixin.java │ │ │ ├── CannonMountPointMixin.java │ │ │ ├── FixedCannonMountBlockEntityMixin.java │ │ │ ├── GasMaskItemMixin.java │ │ │ ├── MountedAutocannonContraptionMixin.java │ │ │ ├── PitchOrientedContraptionEntityMixin.java │ │ │ ├── PowderChargeBlockMixin.java │ │ │ ├── ProjectileBlockMixin.java │ │ │ ├── YawControllerBlockEntityMixin.java │ │ │ ├── client │ │ │ │ ├── GasMaskModelMixin.java │ │ │ │ ├── GoggleOverlayRendererMixin.java │ │ │ │ └── ValueSettingsClientMixin.java │ │ │ └── compat │ │ │ │ └── FramedAdjustableDoubleBlockEntityAccessor.java │ │ ├── mixin_interface │ │ │ └── GetItemStorage.java │ │ ├── munitions │ │ │ ├── autocannon │ │ │ │ └── AutocannonAmmoContainerInterface.java │ │ │ └── fluid_shell │ │ │ │ └── FluidShellBlockEntity.java │ │ └── network │ │ │ ├── CBCNetworkForge.java │ │ │ ├── ForgeClientPacket.java │ │ │ └── ForgeServerPacket.java │ │ ├── multiloader │ │ └── forge │ │ │ ├── EntityTypeConfiguratorImpl.java │ │ │ ├── EnvExecuteImpl.java │ │ │ ├── IndexPlatformImpl.java │ │ │ ├── NetworkPlatformImpl.java │ │ │ ├── ParticlesPlatformImpl.java │ │ │ └── PonderPlatformImpl.java │ │ └── remix │ │ └── forge │ │ └── ContraptionRemixImpl.java │ └── resources │ ├── META-INF │ └── mods.toml │ ├── createbigcannons.mixins.json │ ├── data │ ├── curios │ │ └── tags │ │ │ └── items │ │ │ └── head.json │ └── framedblocks │ │ └── block_armor │ │ ├── framed_activator_rail_slope.json │ │ ├── framed_adj_double_copycat_panel.json │ │ ├── framed_adj_double_copycat_slab.json │ │ ├── framed_adj_double_panel.json │ │ ├── framed_adj_double_slab.json │ │ ├── framed_bars.json │ │ ├── framed_bookshelf.json │ │ ├── framed_bouncy_cube.json │ │ ├── framed_button.json │ │ ├── framed_centered_panel.json │ │ ├── framed_centered_slab.json │ │ ├── framed_checkered_cube.json │ │ ├── framed_checkered_cube_segment.json │ │ ├── framed_checkered_panel.json │ │ ├── framed_checkered_panel_segment.json │ │ ├── framed_checkered_slab.json │ │ ├── framed_checkered_slab_segment.json │ │ ├── framed_chest.json │ │ ├── framed_chiseled_bookshelf.json │ │ ├── framed_collapsible_block.json │ │ ├── framed_collapsible_copycat_block.json │ │ ├── framed_compound_slope_panel.json │ │ ├── framed_compound_slope_slab.json │ │ ├── framed_corner_pillar.json │ │ ├── framed_corner_slope.json │ │ ├── framed_corner_strip.json │ │ ├── framed_cube.json │ │ ├── framed_detector_rail_slope.json │ │ ├── framed_divided_panel_horizontal.json │ │ ├── framed_divided_panel_vertical.json │ │ ├── framed_divided_slab.json │ │ ├── framed_divided_slope.json │ │ ├── framed_divided_stairs.json │ │ ├── framed_door.json │ │ ├── framed_double_corner.json │ │ ├── framed_double_half_slope.json │ │ ├── framed_double_half_stairs.json │ │ ├── framed_double_panel.json │ │ ├── framed_double_prism.json │ │ ├── framed_double_prism_corner.json │ │ ├── framed_double_slab.json │ │ ├── framed_double_slope.json │ │ ├── framed_double_slope_panel.json │ │ ├── framed_double_slope_slab.json │ │ ├── framed_double_sloped_prism.json │ │ ├── framed_double_stairs.json │ │ ├── framed_double_threeway_corner.json │ │ ├── framed_double_threeway_corner_pillar.json │ │ ├── framed_elevated_double_slope_edge.json │ │ ├── framed_elevated_double_slope_slab.json │ │ ├── framed_elevated_slope_edge.json │ │ ├── framed_elevated_slope_slab.json │ │ ├── framed_ext_corner_slope_panel.json │ │ ├── framed_ext_corner_slope_panel_w.json │ │ ├── framed_ext_double_corner_slope_panel.json │ │ ├── framed_ext_double_corner_slope_panel_w.json │ │ ├── framed_ext_inner_corner_slope_panel.json │ │ ├── framed_ext_inner_corner_slope_panel_w.json │ │ ├── framed_ext_inner_double_corner_slope_panel.json │ │ ├── framed_ext_inner_double_corner_slope_panel_w.json │ │ ├── framed_extended_double_slope_panel.json │ │ ├── framed_extended_slope_panel.json │ │ ├── framed_fancy_activator_rail.json │ │ ├── framed_fancy_activator_rail_slope.json │ │ ├── framed_fancy_detector_rail.json │ │ ├── framed_fancy_detector_rail_slope.json │ │ ├── framed_fancy_powered_rail.json │ │ ├── framed_fancy_powered_rail_slope.json │ │ ├── framed_fancy_rail.json │ │ ├── framed_fancy_rail_slope.json │ │ ├── framed_fence.json │ │ ├── framed_fence_gate.json │ │ ├── framed_flat_double_slope_panel_corner.json │ │ ├── framed_flat_double_slope_slab_corner.json │ │ ├── framed_flat_elev_double_slope_slab_corner.json │ │ ├── framed_flat_elev_inner_double_slope_slab_corner.json │ │ ├── framed_flat_elev_inner_slope_slab_corner.json │ │ ├── framed_flat_elev_slope_slab_corner.json │ │ ├── framed_flat_ext_double_slope_panel_corner.json │ │ ├── framed_flat_ext_inner_double_slope_panel_corner.json │ │ ├── framed_flat_ext_inner_slope_panel_corner.json │ │ ├── framed_flat_ext_slope_panel_corner.json │ │ ├── framed_flat_inner_slope_panel_corner.json │ │ ├── framed_flat_inner_slope_slab_corner.json │ │ ├── framed_flat_inv_double_slope_panel_corner.json │ │ ├── framed_flat_inv_double_slope_slab_corner.json │ │ ├── framed_flat_slope_panel_corner.json │ │ ├── framed_flat_slope_slab_corner.json │ │ ├── framed_flat_stacked_inner_slope_panel_corner.json │ │ ├── framed_flat_stacked_inner_slope_slab_corner.json │ │ ├── framed_flat_stacked_slope_panel_corner.json │ │ ├── framed_flat_stacked_slope_slab_corner.json │ │ ├── framed_floor_board.json │ │ ├── framed_flower_pot.json │ │ ├── framed_gate.json │ │ ├── framed_glowing_cube.json │ │ ├── framed_glowing_item_frame.json │ │ ├── framed_gold_pressure_plate.json │ │ ├── framed_half_pillar.json │ │ ├── framed_half_slope.json │ │ ├── framed_half_stairs.json │ │ ├── framed_hanging_sign.json │ │ ├── framed_horizontal_pane.json │ │ ├── framed_inner_corner_slope.json │ │ ├── framed_inner_prism.json │ │ ├── framed_inner_prism_corner.json │ │ ├── framed_inner_sloped_prism.json │ │ ├── framed_inner_threeway_corner.json │ │ ├── framed_inv_double_corner_slope_panel.json │ │ ├── framed_inv_double_corner_slope_panel_w.json │ │ ├── framed_inv_double_slope_panel.json │ │ ├── framed_inv_double_slope_slab.json │ │ ├── framed_iron_door.json │ │ ├── framed_iron_gate.json │ │ ├── framed_iron_pressure_plate.json │ │ ├── framed_iron_trapdoor.json │ │ ├── framed_item_frame.json │ │ ├── framed_ladder.json │ │ ├── framed_large_button.json │ │ ├── framed_large_corner_slope_panel.json │ │ ├── framed_large_corner_slope_panel_w.json │ │ ├── framed_large_double_corner_slope_panel.json │ │ ├── framed_large_double_corner_slope_panel_w.json │ │ ├── framed_large_inner_corner_slope_panel.json │ │ ├── framed_large_inner_corner_slope_panel_w.json │ │ ├── framed_large_stone_button.json │ │ ├── framed_lattice_block.json │ │ ├── framed_lever.json │ │ ├── framed_masonry_corner.json │ │ ├── framed_masonry_corner_segment.json │ │ ├── framed_mini_cube.json │ │ ├── framed_obsidian_pressure_plate.json │ │ ├── framed_one_way_window.json │ │ ├── framed_pane.json │ │ ├── framed_panel.json │ │ ├── framed_pillar.json │ │ ├── framed_post.json │ │ ├── framed_powered_rail_slope.json │ │ ├── framed_pressure_plate.json │ │ ├── framed_prism.json │ │ ├── framed_prism_corner.json │ │ ├── framed_pyramid.json │ │ ├── framed_pyramid_slab.json │ │ ├── framed_rail_slope.json │ │ ├── framed_redstone_block.json │ │ ├── framed_redstone_torch.json │ │ ├── framed_redstone_wall_torch.json │ │ ├── framed_secret_storage.json │ │ ├── framed_sign.json │ │ ├── framed_slab.json │ │ ├── framed_slab_corner.json │ │ ├── framed_slab_edge.json │ │ ├── framed_sliced_stairs_panel.json │ │ ├── framed_sliced_stairs_slab.json │ │ ├── framed_slope.json │ │ ├── framed_slope_edge.json │ │ ├── framed_slope_panel.json │ │ ├── framed_slope_slab.json │ │ ├── framed_sloped_prism.json │ │ ├── framed_sloped_stairs.json │ │ ├── framed_small_corner_slope_panel.json │ │ ├── framed_small_corner_slope_panel_w.json │ │ ├── framed_small_double_corner_slope_panel.json │ │ ├── framed_small_double_corner_slope_panel_w.json │ │ ├── framed_small_inner_corner_slope_panel.json │ │ ├── framed_small_inner_corner_slope_panel_w.json │ │ ├── framed_soul_torch.json │ │ ├── framed_soul_wall_torch.json │ │ ├── framed_stacked_corner_slope_panel.json │ │ ├── framed_stacked_corner_slope_panel_w.json │ │ ├── framed_stacked_inner_corner_slope_panel.json │ │ ├── framed_stacked_inner_corner_slope_panel_w.json │ │ ├── framed_stacked_slope_edge.json │ │ ├── framed_stacked_slope_panel.json │ │ ├── framed_stacked_slope_slab.json │ │ ├── framed_stairs.json │ │ ├── framed_stone_button.json │ │ ├── framed_stone_pressure_plate.json │ │ ├── framed_target.json │ │ ├── framed_thick_lattice.json │ │ ├── framed_threeway_corner.json │ │ ├── framed_threeway_corner_pillar.json │ │ ├── framed_torch.json │ │ ├── framed_trapdoor.json │ │ ├── framed_tube.json │ │ ├── framed_vertical_divided_stairs.json │ │ ├── framed_vertical_double_half_slope.json │ │ ├── framed_vertical_double_half_stairs.json │ │ ├── framed_vertical_double_stairs.json │ │ ├── framed_vertical_half_slope.json │ │ ├── framed_vertical_half_stairs.json │ │ ├── framed_vertical_sliced_stairs.json │ │ ├── framed_vertical_sloped_stairs.json │ │ ├── framed_vertical_stairs.json │ │ ├── framed_wall.json │ │ ├── framed_wall_board.json │ │ ├── framed_wall_hanging_sign.json │ │ ├── framed_wall_sign.json │ │ ├── framed_wall_torch.json │ │ ├── framed_waterloggable_gold_pressure_plate.json │ │ ├── framed_waterloggable_iron_pressure_plate.json │ │ ├── framed_waterloggable_obsidian_pressure_plate.json │ │ ├── framed_waterloggable_pressure_plate.json │ │ └── framed_waterloggable_stone_pressure_plate.json │ ├── icon.png │ └── pack.mcmeta ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── promotional ├── ammo_and_cannons.png ├── autocannon_firing_flak.png ├── casemate_gun.png ├── inside_casemate.png ├── translationguide1.png ├── translationguide2.png └── translationguide3.png ├── settings.gradle.kts ├── src └── main │ ├── java │ └── rbasamoyai │ │ └── createbigcannons │ │ ├── CBCClientCommon.java │ │ ├── CBCCommonEvents.java │ │ ├── CBCTags.java │ │ ├── CreateBigCannons.java │ │ ├── ModGroup.java │ │ ├── base │ │ ├── BlockStatePredicateHelper.java │ │ ├── CBCDefaultStress.java │ │ ├── CBCJsonResourceReloadListener.java │ │ ├── CBCRegistries.java │ │ ├── CBCTooltip.java │ │ ├── ItemStackServerData.java │ │ ├── LazySupplier.java │ │ ├── PartialBlockDamageManager.java │ │ ├── PartialBlockDamageSaveData.java │ │ ├── PoleContraption.java │ │ ├── PoleMoverBlockEntity.java │ │ ├── PropertySetter.java │ │ ├── SimpleValueContainer.java │ │ ├── goggles │ │ │ ├── EntityGoggleOverlayRenderer.java │ │ │ ├── IDisplayEntityAssemblyExceptions.java │ │ │ ├── IHaveEntityGoggleInformation.java │ │ │ └── IHaveEntityHoverInformation.java │ │ ├── multiple_kinetic_interface │ │ │ └── HasMultipleKineticInterfaces.java │ │ └── tag_utils │ │ │ ├── FluidTypeDataHolder.java │ │ │ ├── ForcedTagEntry.java │ │ │ ├── MultiEntryTypeAndTagDataHolder.java │ │ │ └── TypeAndTagDataHolder.java │ │ ├── block_armor_properties │ │ ├── BlockArmorInspectionToolItem.java │ │ ├── BlockArmorPropertiesHandler.java │ │ ├── BlockArmorPropertiesProvider.java │ │ ├── BlockArmorPropertiesSerializer.java │ │ ├── SimpleBlockArmorProperties.java │ │ ├── VariantBlockArmorProperties.java │ │ └── mimicking_blocks │ │ │ ├── AbstractMimickingBlockArmorProperties.java │ │ │ ├── CopycatBlockArmorProperties.java │ │ │ └── MimickingBlockArmorUnit.java │ │ ├── block_hit_effects │ │ ├── BackupBlockHitEffects.java │ │ ├── BlockHitEffect.java │ │ ├── BlockHitEffectsHandler.java │ │ ├── BlockImpactTransformationHandler.java │ │ ├── BlockTransformation.java │ │ ├── DefaultParticleModifiers.java │ │ ├── ProjectileHitEffect.java │ │ ├── ProjectileHitEffectsHandler.java │ │ └── ProjectileParticleEffectModifiers.java │ │ ├── cannon_control │ │ ├── ControlPitchContraption.java │ │ ├── cannon_mount │ │ │ ├── CannonMountBlock.java │ │ │ ├── CannonMountBlockEntity.java │ │ │ ├── CannonMountBlockEntityRenderer.java │ │ │ ├── CannonMountDisplaySource.java │ │ │ ├── CannonMountExtensionBlock.java │ │ │ ├── CannonMountExtensionBlockEntity.java │ │ │ ├── CannonMountInterfaceBlockEntity.java │ │ │ ├── CannonMountVisual.java │ │ │ ├── ExtendsCannonMount.java │ │ │ ├── YawControllerBlock.java │ │ │ └── YawControllerBlockEntity.java │ │ ├── cannon_types │ │ │ ├── CBCCannonContraptionTypes.java │ │ │ ├── CannonContraptionTypeRegistry.java │ │ │ └── ICannonContraptionType.java │ │ ├── carriage │ │ │ ├── CannonCarriageBlock.java │ │ │ ├── CannonCarriageBlockEntity.java │ │ │ ├── CannonCarriageBlockItem.java │ │ │ ├── CannonCarriageEntity.java │ │ │ └── CannonCarriageRenderer.java │ │ ├── config │ │ │ ├── CannonMountBlockPropertiesProvider.java │ │ │ ├── CannonMountBlockPropertiesSerializer.java │ │ │ ├── CannonMountEntityPropertiesProvider.java │ │ │ ├── CannonMountEntityPropertiesSerializer.java │ │ │ ├── CannonMountPropertiesHandler.java │ │ │ ├── DefaultCannonMountPropertiesSerializers.java │ │ │ ├── GeneralMountProperties.java │ │ │ ├── SimpleBlockMountProperties.java │ │ │ └── SimpleEntityMountProperties.java │ │ ├── contraption │ │ │ ├── AbstractMountedCannonContraption.java │ │ │ ├── CBCContraptionRotationState.java │ │ │ ├── ItemCannon.java │ │ │ ├── MountedAutocannonContraption.java │ │ │ ├── MountedBigCannonContraption.java │ │ │ └── PitchOrientedContraptionEntity.java │ │ └── fixed_cannon_mount │ │ │ ├── FixedCannonMountBlock.java │ │ │ ├── FixedCannonMountBlockEntity.java │ │ │ ├── FixedCannonMountBoxRenderer.java │ │ │ └── FixedCannonMountValueScreen.java │ │ ├── cannon_loading │ │ ├── CBCModifiedContraptionRegistry.java │ │ ├── CanLoadBigCannon.java │ │ ├── CannonLoaderBlock.java │ │ ├── CannonLoaderBlockEntity.java │ │ ├── CannonLoaderGen.java │ │ ├── CannonLoadingContraption.java │ │ ├── RamHeadBlock.java │ │ └── WormHeadBlock.java │ │ ├── cannons │ │ ├── CannonBehavior.java │ │ ├── CannonContraptionProviderBlock.java │ │ ├── ICannonBlockEntity.java │ │ ├── IncompleteItemCannonBehavior.java │ │ ├── InteractableCannonBlock.java │ │ ├── ItemCannonBehavior.java │ │ ├── autocannon │ │ │ ├── AbstractIncompleteAutocannonBlock.java │ │ │ ├── AnimatedAutocannon.java │ │ │ ├── AutocannonBarrelBlock.java │ │ │ ├── AutocannonBaseBlock.java │ │ │ ├── AutocannonBlock.java │ │ │ ├── AutocannonBlockEntity.java │ │ │ ├── AutocannonBlockItem.java │ │ │ ├── IAutocannonBlockEntity.java │ │ │ ├── MovesWithAutocannonRecoilSpring.java │ │ │ ├── breech │ │ │ │ ├── AbstractAutocannonBreechBlockEntity.java │ │ │ │ ├── AutocannonBreechBlock.java │ │ │ │ ├── AutocannonBreechRenderer.java │ │ │ │ └── AutocannonBreechVisual.java │ │ │ ├── material │ │ │ │ ├── AutocannonMaterial.java │ │ │ │ ├── AutocannonMaterialProperties.java │ │ │ │ └── AutocannonMaterialPropertiesHandler.java │ │ │ └── recoil_spring │ │ │ │ ├── AutocannonRecoilSpringBlock.java │ │ │ │ ├── AutocannonRecoilSpringBlockEntity.java │ │ │ │ ├── AutocannonRecoilSpringRenderer.java │ │ │ │ └── AutocannonRecoilSpringVisual.java │ │ └── big_cannons │ │ │ ├── BigCannonBaseBlock.java │ │ │ ├── BigCannonBehavior.java │ │ │ ├── BigCannonBlock.java │ │ │ ├── BigCannonBlockEntity.java │ │ │ ├── BigCannonBlockItem.java │ │ │ ├── BigCannonTubeBlock.java │ │ │ ├── BuiltUpCannonCTBehavior.java │ │ │ ├── IBigCannonBlockEntity.java │ │ │ ├── SolidBigCannonBlock.java │ │ │ ├── breeches │ │ │ ├── AbstractBigCannonBreechBlockEntity.java │ │ │ ├── BigCannonBreechStrengthHandler.java │ │ │ ├── quickfiring_breech │ │ │ │ ├── CannonMountPoint.java │ │ │ │ ├── QuickfiringBreechBlock.java │ │ │ │ ├── QuickfiringBreechBlockEntity.java │ │ │ │ ├── QuickfiringBreechBlockEntityRenderer.java │ │ │ │ ├── QuickfiringBreechVisual.java │ │ │ │ └── QuickfiringMechanismItem.java │ │ │ ├── screw_breech │ │ │ │ ├── ScrewBreechBlock.java │ │ │ │ ├── ScrewBreechBlockEntity.java │ │ │ │ ├── ScrewBreechBlockEntityRenderer.java │ │ │ │ └── ScrewBreechVisual.java │ │ │ └── sliding_breech │ │ │ │ ├── SlidingBreechBlock.java │ │ │ │ ├── SlidingBreechBlockEntity.java │ │ │ │ ├── SlidingBreechBlockEntityRenderer.java │ │ │ │ ├── SlidingBreechBlockGen.java │ │ │ │ ├── SlidingBreechCTBehavior.java │ │ │ │ └── SlidingBreechVisual.java │ │ │ ├── cannon_end │ │ │ ├── BigCannonEnd.java │ │ │ ├── BigCannonEndBlock.java │ │ │ └── BigCannonEndBlockEntity.java │ │ │ ├── drop_mortar │ │ │ └── DropMortarEndBlock.java │ │ │ └── material │ │ │ ├── BigCannonMaterial.java │ │ │ ├── BigCannonMaterialProperties.java │ │ │ └── BigCannonMaterialPropertiesHandler.java │ │ ├── compat │ │ ├── common_jei │ │ │ ├── HardcodedBlockRecipe.java │ │ │ ├── IncompleteCannonBlockRecipe.java │ │ │ └── MunitionAssemblyRecipes.java │ │ ├── copycats │ │ │ └── CopycatsCompat.java │ │ └── create │ │ │ └── DefaultCreateCompat.java │ │ ├── config │ │ ├── CBCCfgCannons.java │ │ ├── CBCCfgClient.java │ │ ├── CBCCfgCommon.java │ │ ├── CBCCfgCrafting.java │ │ ├── CBCCfgFailure.java │ │ ├── CBCCfgKinetics.java │ │ ├── CBCCfgMunitions.java │ │ ├── CBCCfgServer.java │ │ ├── CBCCfgStress.java │ │ ├── CBCConfigBase.java │ │ └── CBCConfigs.java │ │ ├── connected_textures │ │ ├── CBCCTSpriteShiftEntry.java │ │ └── CBCCTSpriteShifter.java │ │ ├── crafting │ │ ├── BlockRecipe.java │ │ ├── BlockRecipeFinder.java │ │ ├── BlockRecipeIngredient.java │ │ ├── BlockRecipeSerializer.java │ │ ├── BlockRecipeType.java │ │ ├── BlockRecipesManager.java │ │ ├── CannonCraftingWandItem.java │ │ ├── WandActionable.java │ │ ├── boring │ │ │ ├── AbstractCannonDrillBlockEntity.java │ │ │ ├── CannonDrillBlock.java │ │ │ ├── CannonDrillGen.java │ │ │ ├── CannonDrillingContraption.java │ │ │ ├── DrillBitBlock.java │ │ │ ├── DrillBoringBlockRecipe.java │ │ │ ├── UnboredAutocannonBlock.java │ │ │ ├── UnboredBigCannonBlock.java │ │ │ ├── UnboredScrewBreechBlock.java │ │ │ └── UnboredSlidingBreechBlock.java │ │ ├── builtup │ │ │ ├── BigCannonLayerBlock.java │ │ │ ├── BuiltUpCannonBlock.java │ │ │ ├── BuiltUpHeatingRecipe.java │ │ │ ├── CannonBuilderBlock.java │ │ │ ├── CannonBuilderBlockEntity.java │ │ │ ├── CannonBuilderGen.java │ │ │ ├── CannonBuilderHeadBlock.java │ │ │ ├── CannonBuildingContraption.java │ │ │ ├── LayeredBigCannonBlockEntity.java │ │ │ └── LayeredCannonBlockEntityRenderer.java │ │ ├── casting │ │ │ ├── AbstractCannonCastBlockEntity.java │ │ │ ├── AbstractCannonCastBlockEntityRenderer.java │ │ │ ├── CannonCastBlock.java │ │ │ ├── CannonCastMouldBlock.java │ │ │ ├── CannonCastShape.java │ │ │ ├── CannonCastingRecipe.java │ │ │ ├── FinishedCannonCastBlock.java │ │ │ ├── FinishedCannonCastBlockEntity.java │ │ │ ├── FinishedCannonCastBlockEntityRenderer.java │ │ │ ├── FluidCastingTimeHandler.java │ │ │ └── InvalidCastingError.java │ │ ├── foundry │ │ │ ├── BasinFoundryBlockEntity.java │ │ │ ├── BasinFoundryLidBlock.java │ │ │ ├── MeltingRecipe.java │ │ │ └── MoltenMetalLiquidBlock.java │ │ ├── incomplete │ │ │ ├── IncompleteAutocannonBlock.java │ │ │ ├── IncompleteAutocannonBlockEntity.java │ │ │ ├── IncompleteBigCannonBlockEntity.java │ │ │ ├── IncompleteCannonBlockTooltip.java │ │ │ ├── IncompleteScrewBreechBlock.java │ │ │ ├── IncompleteScrewBreechBlockGen.java │ │ │ ├── IncompleteSlidingBreechBlock.java │ │ │ ├── IncompleteSlidingBreechBlockGen.java │ │ │ └── IncompleteWithItemsCannonBlock.java │ │ ├── munition_assembly │ │ │ ├── AutocannonAmmoContainerFillingDeployerRecipe.java │ │ │ ├── BigCartridgeFillingDeployerRecipe.java │ │ │ ├── BigCartridgeFillingRecipe.java │ │ │ ├── CartridgeAssemblyDeployerRecipe.java │ │ │ ├── CartridgeAssemblyRecipe.java │ │ │ ├── FuzeRemovalRecipe.java │ │ │ ├── MunitionFuzingDeployerRecipe.java │ │ │ ├── MunitionFuzingRecipe.java │ │ │ ├── TracerApplicationDeployerRecipe.java │ │ │ ├── TracerApplicationRecipe.java │ │ │ └── TracerRemovalRecipe.java │ │ └── welding │ │ │ ├── CannonWelderItem.java │ │ │ ├── CannonWelderSelectionHandler.java │ │ │ └── WeldableBlock.java │ │ ├── datagen │ │ ├── CBCDatagenCommon.java │ │ ├── CBCDatagenPlatform.java │ │ ├── assets │ │ │ ├── CBCBuilderTransformers.java │ │ │ └── CBCLangGen.java │ │ ├── loot │ │ │ └── BoringScrapLoot.java │ │ ├── recipes │ │ │ ├── BlockRecipeProvider.java │ │ │ ├── BuiltUpHeatingRecipeProvider.java │ │ │ ├── CBCCraftingRecipeProvider.java │ │ │ ├── CannonCastRecipeProvider.java │ │ │ ├── DrillBoringRecipeProvider.java │ │ │ └── FinishedBlockRecipe.java │ │ └── values │ │ │ └── CBCDataProvider.java │ │ ├── effects │ │ ├── CBCScreenShakeHandler.java │ │ ├── particles │ │ │ ├── ParticleWindHandler.java │ │ │ ├── explosions │ │ │ │ ├── AbstractBlastWaveEffectParticleData.java │ │ │ │ ├── BlastWaveEffectParticle.java │ │ │ │ ├── CannonBlastWaveEffectParticleData.java │ │ │ │ ├── FlakCloudParticle.java │ │ │ │ ├── FlakCloudParticleData.java │ │ │ │ ├── FluidCloudParticle.java │ │ │ │ ├── FluidCloudParticleData.java │ │ │ │ ├── ShellBlastWaveEffectParticleData.java │ │ │ │ ├── ShellExplosionCloudParticle.java │ │ │ │ ├── ShellExplosionCloudParticleData.java │ │ │ │ ├── ShrapnelCloudParticle.java │ │ │ │ └── ShrapnelCloudParticleData.java │ │ │ ├── impacts │ │ │ │ ├── CBCBlockParticle.java │ │ │ │ ├── CBCBlockParticleData.java │ │ │ │ ├── DebrisMatterParticle.java │ │ │ │ ├── DebrisMatterParticleData.java │ │ │ │ ├── DebrisSmokeBurstParticle.java │ │ │ │ ├── DebrisSmokeBurstParticleData.java │ │ │ │ ├── GlassBurstParticle.java │ │ │ │ ├── GlassBurstParticleData.java │ │ │ │ ├── GlassShardParticle.java │ │ │ │ ├── GlassShardParticleData.java │ │ │ │ ├── LeafBurstParticle.java │ │ │ │ ├── LeafBurstParticleData.java │ │ │ │ ├── LeafParticle.java │ │ │ │ ├── LeafParticleData.java │ │ │ │ ├── SparkBurstParticle.java │ │ │ │ ├── SparkBurstParticleData.java │ │ │ │ ├── SparkParticle.java │ │ │ │ ├── SparkParticleData.java │ │ │ │ ├── SplinterBurstParticle.java │ │ │ │ ├── SplinterBurstParticleData.java │ │ │ │ ├── SplinterParticle.java │ │ │ │ └── SplinterParticleData.java │ │ │ ├── plumes │ │ │ │ ├── AutocannonPlumeParticle.java │ │ │ │ ├── AutocannonPlumeParticleData.java │ │ │ │ ├── BigCannonPlumeParticle.java │ │ │ │ ├── BigCannonPlumeParticleData.java │ │ │ │ ├── DropMortarPlumeParticle.java │ │ │ │ └── DropMortarPlumeParticleData.java │ │ │ ├── smoke │ │ │ │ ├── CannonSmokeParticle.java │ │ │ │ ├── CannonSmokeParticleData.java │ │ │ │ ├── DebrisSmokeParticle.java │ │ │ │ ├── DebrisSmokeParticleData.java │ │ │ │ ├── FallbackCannonSmokeParticle.java │ │ │ │ ├── FallbackCannonSmokeParticleData.java │ │ │ │ ├── FlakSmokeParticle.java │ │ │ │ ├── FlakSmokeParticleData.java │ │ │ │ ├── GasCloudParticle.java │ │ │ │ ├── GasCloudParticleData.java │ │ │ │ ├── QuickFiringBreechSmokeParticle.java │ │ │ │ ├── QuickFiringBreechSmokeParticleData.java │ │ │ │ ├── ShellExplosionSmokeParticle.java │ │ │ │ ├── ShellExplosionSmokeParticleData.java │ │ │ │ ├── ShrapnelSmokeParticle.java │ │ │ │ ├── ShrapnelSmokeParticleData.java │ │ │ │ ├── SmokeShellSmokeParticle.java │ │ │ │ ├── SmokeShellSmokeParticleData.java │ │ │ │ ├── TrailSmokeParticle.java │ │ │ │ └── TrailSmokeParticleData.java │ │ │ └── splashes │ │ │ │ ├── ProjectileSplashParticle.java │ │ │ │ ├── ProjectileSplashParticleData.java │ │ │ │ ├── SplashSprayParticle.java │ │ │ │ └── SplashSprayParticleData.java │ │ └── sounds │ │ │ ├── AirAbsorptionWrapper.java │ │ │ ├── HasAirAbsorptionSound.java │ │ │ ├── ShellFlyingSoundInstance.java │ │ │ └── SoundInstanceWrapper.java │ │ ├── equipment │ │ ├── gas_mask │ │ │ ├── GasMaskItem.java │ │ │ ├── GasMaskModel.java │ │ │ └── GasMaskOverlay.java │ │ └── manual_loading │ │ │ ├── HandloadingTool.java │ │ │ ├── RamRodItem.java │ │ │ └── WormItem.java │ │ ├── index │ │ ├── CBCArmInteractionPointTypes.java │ │ ├── CBCAutocannonMaterials.java │ │ ├── CBCBigCannonMaterials.java │ │ ├── CBCBlockEntities.java │ │ ├── CBCBlockPartials.java │ │ ├── CBCBlocks.java │ │ ├── CBCCTTypes.java │ │ ├── CBCChecks.java │ │ ├── CBCContraptionTypes.java │ │ ├── CBCDamageTypes.java │ │ ├── CBCDisplaySources.java │ │ ├── CBCEntityTypes.java │ │ ├── CBCFluids.java │ │ ├── CBCGuiTextures.java │ │ ├── CBCItems.java │ │ ├── CBCMenuTypes.java │ │ ├── CBCMunitionPropertiesHandlers.java │ │ ├── CBCParticleTypes.java │ │ ├── CBCRecipeTypes.java │ │ ├── CBCRenderTypes.java │ │ ├── CBCRenderingParts.java │ │ ├── CBCShapes.java │ │ ├── CBCSoundEvents.java │ │ ├── CBCSpriteShifts.java │ │ └── fluid_utils │ │ │ ├── CBCFlowingFluid.java │ │ │ ├── CBCLiquidBlock.java │ │ │ ├── FluidBuilder.java │ │ │ └── FluidGetter.java │ │ ├── mixin │ │ ├── ArmorStandMixin.java │ │ ├── EntityMixin.java │ │ ├── ExplosionMixin.java │ │ ├── LivingEntityMixin.java │ │ ├── PlayerMixin.java │ │ ├── ServerEntityMixin.java │ │ ├── ServerLevelMixin.java │ │ ├── TagAppenderAccessor.java │ │ ├── client │ │ │ ├── Blaze3DAudioChannelAccessor.java │ │ │ ├── CameraAccessor.java │ │ │ ├── CannonMountDisplaySourceMixin.java │ │ │ ├── ClientLevelAccessor.java │ │ │ ├── EntityClientMixin.java │ │ │ ├── EntityRenderDispatcherMixin.java │ │ │ ├── HumanoidPoseMixin.java │ │ │ ├── LevelRendererMixin.java │ │ │ ├── LightingMixin.java │ │ │ ├── PitchOrientedContraptionEntityMixin.java │ │ │ ├── RPLClientHandlersMixin.java │ │ │ ├── SoundEngineMixin.java │ │ │ └── ValueSettingsClientMixin.java │ │ └── compat │ │ │ └── create │ │ │ ├── AbstractContraptionEntityMixin.java │ │ │ ├── AllSoundEventsMixin.java │ │ │ ├── BeltMovementHandlerMixin.java │ │ │ ├── ChassisBlockEntityMixin.java │ │ │ ├── ContraptionColliderMixin.java │ │ │ ├── ContraptionMixin.java │ │ │ ├── FilterItemMixin.java │ │ │ ├── GantryContraptionMixin.java │ │ │ ├── MechanicalBearingBlockEntityMixin.java │ │ │ ├── MechanicalPistonBlockMixin.java │ │ │ ├── PistonContraptionMixin.java │ │ │ ├── PulleyBlockEntityMixin.java │ │ │ ├── PulleyBlockMixin.java │ │ │ ├── PulleyContraptionMixin.java │ │ │ ├── RopeBlockBaseMixin.java │ │ │ ├── TranslatingContraptionMixin.java │ │ │ └── rotation_propagation │ │ │ ├── KineticBlockAccessor.java │ │ │ ├── KineticBlockEntityMixin.java │ │ │ ├── KineticNetworkMixin.java │ │ │ └── RotationPropagatorMixin.java │ │ ├── multiloader │ │ ├── CBCLootTableProvider.java │ │ ├── EntityTypeConfigurator.java │ │ ├── EnvExecute.java │ │ ├── IndexPlatform.java │ │ ├── NetworkPlatform.java │ │ ├── ParticlesPlatform.java │ │ └── PonderPlatform.java │ │ ├── munitions │ │ ├── AbstractCannonProjectile.java │ │ ├── CannonDamageSource.java │ │ ├── FuzedItemMunition.java │ │ ├── FuzedProjectileBlockItem.java │ │ ├── GasCloudEntity.java │ │ ├── ImpactExplosion.java │ │ ├── ProjectileContext.java │ │ ├── ShellExplosion.java │ │ ├── autocannon │ │ │ ├── AbstractAutocannonProjectile.java │ │ │ ├── AutocannonAmmoItem.java │ │ │ ├── AutocannonAmmoType.java │ │ │ ├── AutocannonCartridgeItem.java │ │ │ ├── AutocannonProjectileRenderer.java │ │ │ ├── AutocannonRoundItem.java │ │ │ ├── ammo_container │ │ │ │ ├── AutocannonAmmoContainerBlock.java │ │ │ │ ├── AutocannonAmmoContainerBlockEntity.java │ │ │ │ ├── AutocannonAmmoContainerBlockEntityContainerWrapper.java │ │ │ │ ├── AutocannonAmmoContainerItem.java │ │ │ │ ├── AutocannonAmmoContainerItemContainer.java │ │ │ │ ├── AutocannonAmmoContainerMenu.java │ │ │ │ ├── AutocannonAmmoContainerMenuSlot.java │ │ │ │ ├── AutocannonAmmoContainerScreen.java │ │ │ │ ├── AutocannonAmmoContainerServerData.java │ │ │ │ └── IAutocannonAmmoContainerContainer.java │ │ │ ├── ap_round │ │ │ │ ├── APAutocannonProjectile.java │ │ │ │ └── APAutocannonRoundItem.java │ │ │ ├── bullet │ │ │ │ ├── MachineGunProjectile.java │ │ │ │ └── MachineGunRoundItem.java │ │ │ ├── config │ │ │ │ ├── AutocannonProjectilePropertiesComponent.java │ │ │ │ ├── InertAutocannonProjectileProperties.java │ │ │ │ └── InertAutocannonProjectilePropertiesHandler.java │ │ │ └── flak │ │ │ │ ├── FlakAutocannonProjectile.java │ │ │ │ ├── FlakAutocannonProjectileProperties.java │ │ │ │ ├── FlakAutocannonProjectilePropertiesHandler.java │ │ │ │ ├── FlakAutocannonRoundItem.java │ │ │ │ ├── FlakBurst.java │ │ │ │ └── FlakExplosion.java │ │ ├── big_cannon │ │ │ ├── AbstractBigCannonProjectile.java │ │ │ ├── BigCannonMunitionBlock.java │ │ │ ├── BigCannonProjectileBlockEntity.java │ │ │ ├── BigCannonProjectileRenderer.java │ │ │ ├── DisintegratingBigCannonProjectile.java │ │ │ ├── DropMortarMunition.java │ │ │ ├── DropMortarProjectile.java │ │ │ ├── FuzedBigCannonProjectile.java │ │ │ ├── FuzedBlockEntity.java │ │ │ ├── FuzedBlockEntityRenderer.java │ │ │ ├── FuzedBlockVisual.java │ │ │ ├── FuzedProjectileBlock.java │ │ │ ├── InertProjectileBlock.java │ │ │ ├── ProjectileBlock.java │ │ │ ├── ProjectileBlockItem.java │ │ │ ├── SimpleShellBlock.java │ │ │ ├── ap_shell │ │ │ │ ├── APShellBlock.java │ │ │ │ └── APShellProjectile.java │ │ │ ├── ap_shot │ │ │ │ ├── APShotBlock.java │ │ │ │ └── APShotProjectile.java │ │ │ ├── config │ │ │ │ ├── BigCannonCommonShellProperties.java │ │ │ │ ├── BigCannonCommonShellPropertiesHandler.java │ │ │ │ ├── BigCannonFuzePropertiesComponent.java │ │ │ │ ├── BigCannonProjectilePropertiesComponent.java │ │ │ │ ├── DropMortarProjectileProperties.java │ │ │ │ ├── DropMortarProjectilePropertiesComponent.java │ │ │ │ ├── InertBigCannonProjectileProperties.java │ │ │ │ └── InertBigCannonProjectilePropertiesHandler.java │ │ │ ├── drop_mortar_shell │ │ │ │ ├── DropMortarShellBlock.java │ │ │ │ ├── DropMortarShellProjectile.java │ │ │ │ ├── DropMortarShellProperties.java │ │ │ │ ├── DropMortarShellPropertiesHandler.java │ │ │ │ └── DropMortarShellRenderer.java │ │ │ ├── fluid_shell │ │ │ │ ├── AbstractFluidShellBlockEntity.java │ │ │ │ ├── DefaultFluidCompat.java │ │ │ │ ├── EndFluidStack.java │ │ │ │ ├── FluidBlobBurst.java │ │ │ │ ├── FluidBlobEffectRegistry.java │ │ │ │ ├── FluidBlobParticle.java │ │ │ │ ├── FluidBlobParticleData.java │ │ │ │ ├── FluidExplosion.java │ │ │ │ ├── FluidShellBlock.java │ │ │ │ ├── FluidShellBlockItem.java │ │ │ │ ├── FluidShellProjectile.java │ │ │ │ ├── FluidShellProperties.java │ │ │ │ └── FluidShellPropertiesHandler.java │ │ │ ├── grapeshot │ │ │ │ ├── GrapeshotBagProjectile.java │ │ │ │ ├── GrapeshotBagProperties.java │ │ │ │ ├── GrapeshotBagPropertiesHandler.java │ │ │ │ ├── GrapeshotBlock.java │ │ │ │ ├── GrapeshotBurst.java │ │ │ │ └── GrapeshotBurstRenderer.java │ │ │ ├── he_shell │ │ │ │ ├── HEShellBlock.java │ │ │ │ └── HEShellProjectile.java │ │ │ ├── mortar_stone │ │ │ │ ├── MortarStoneBlock.java │ │ │ │ ├── MortarStoneExplosion.java │ │ │ │ ├── MortarStoneItem.java │ │ │ │ ├── MortarStoneProjectile.java │ │ │ │ ├── MortarStoneProperties.java │ │ │ │ └── MortarStonePropertiesHandler.java │ │ │ ├── propellant │ │ │ │ ├── BigCannonPropellantBlock.java │ │ │ │ ├── BigCartridgeBlock.java │ │ │ │ ├── BigCartridgeBlockEntity.java │ │ │ │ ├── BigCartridgeBlockItem.java │ │ │ │ ├── IntegratedPropellantProjectile.java │ │ │ │ ├── PowderChargeBlock.java │ │ │ │ ├── PowderChargeItem.java │ │ │ │ ├── PrimedPropellant.java │ │ │ │ ├── PrimedPropellantRenderer.java │ │ │ │ └── config │ │ │ │ │ ├── BigCannonPropellantPropertiesComponent.java │ │ │ │ │ ├── BigCartridgeProperties.java │ │ │ │ │ ├── BigCartridgePropertiesHandler.java │ │ │ │ │ ├── PowderChargeProperties.java │ │ │ │ │ └── PowderChargePropertiesHandler.java │ │ │ ├── shrapnel │ │ │ │ ├── ShrapnelBurst.java │ │ │ │ ├── ShrapnelBurstRenderer.java │ │ │ │ ├── ShrapnelExplosion.java │ │ │ │ ├── ShrapnelShellBlock.java │ │ │ │ ├── ShrapnelShellProjectile.java │ │ │ │ ├── ShrapnelShellProperties.java │ │ │ │ └── ShrapnelShellPropertiesHandler.java │ │ │ ├── smoke_shell │ │ │ │ ├── SmokeEmitterEntity.java │ │ │ │ ├── SmokeExplosion.java │ │ │ │ ├── SmokeShellBlock.java │ │ │ │ ├── SmokeShellProjectile.java │ │ │ │ ├── SmokeShellProperties.java │ │ │ │ └── SmokeShellPropertiesHandler.java │ │ │ ├── solid_shot │ │ │ │ ├── SolidShotBlock.java │ │ │ │ └── SolidShotProjectile.java │ │ │ └── traffic_cone │ │ │ │ ├── TrafficConeBlock.java │ │ │ │ ├── TrafficConeBlockItem.java │ │ │ │ └── TrafficConeProjectile.java │ │ ├── config │ │ │ ├── BigCannonPropellantCompatibilities.java │ │ │ ├── BigCannonPropellantCompatibilityHandler.java │ │ │ ├── BlockPropertiesTypeHandler.java │ │ │ ├── DimensionMunitionProperties.java │ │ │ ├── DimensionMunitionPropertiesHandler.java │ │ │ ├── EntityPropertiesTypeHandler.java │ │ │ ├── FluidDragHandler.java │ │ │ ├── ItemPropertiesTypeHandler.java │ │ │ ├── MunitionPropertiesHandler.java │ │ │ ├── PropertiesTypeHandler.java │ │ │ └── components │ │ │ │ ├── BallisticPropertiesComponent.java │ │ │ │ ├── EntityDamagePropertiesComponent.java │ │ │ │ └── ExplosionPropertiesComponent.java │ │ ├── fragment_burst │ │ │ ├── CBCProjectileBurst.java │ │ │ ├── ProjectileBurstParentPropertiesComponent.java │ │ │ ├── ProjectileBurstProperties.java │ │ │ └── ProjectileBurstPropertiesHandler.java │ │ └── fuzes │ │ │ ├── AbstractFuzeContainer.java │ │ │ ├── AbstractFuzeScreen.java │ │ │ ├── DelayedImpactFuzeContainer.java │ │ │ ├── DelayedImpactFuzeItem.java │ │ │ ├── DelayedImpactFuzeScreen.java │ │ │ ├── FuzeItem.java │ │ │ ├── FuzeSelectionHandler.java │ │ │ ├── ImpactFuzeItem.java │ │ │ ├── ProximityFuzeContainer.java │ │ │ ├── ProximityFuzeItem.java │ │ │ ├── ProximityFuzeScreen.java │ │ │ ├── TimedFuzeContainer.java │ │ │ ├── TimedFuzeItem.java │ │ │ ├── TimedFuzeScreen.java │ │ │ └── WiredFuzeItem.java │ │ ├── network │ │ ├── CBCClientHandlers.java │ │ ├── CBCRootNetwork.java │ │ ├── ClientboundAnimateCannonContraptionPacket.java │ │ ├── ClientboundBlastSoundPacket.java │ │ ├── ClientboundCBCExplodePacket.java │ │ ├── ClientboundCheckChannelVersionPacket.java │ │ ├── ClientboundFluidBlobStackSyncPacket.java │ │ ├── ClientboundFluidExplodePacket.java │ │ ├── ClientboundNotifyTagReloadPacket.java │ │ ├── ClientboundPlayBlockHitEffectPacket.java │ │ ├── ClientboundPreciseRotationSyncPacket.java │ │ ├── ClientboundSendCustomBreakProgressPacket.java │ │ ├── ClientboundUpdateContraptionPacket.java │ │ ├── RootPacket.java │ │ ├── ServerboundCarriageWheelPacket.java │ │ ├── ServerboundFiringActionPacket.java │ │ ├── ServerboundSetContainerValuePacket.java │ │ ├── ServerboundSetFireRatePacket.java │ │ ├── ServerboundSetFixedCannonMountValuePacket.java │ │ └── ServerboundUseWelderPacket.java │ │ ├── ponder │ │ ├── CBCAnimateBlockEntityInstruction.java │ │ ├── CBCPonderPlugin.java │ │ ├── CBCPonderScenes.java │ │ ├── CBCPonderTags.java │ │ ├── CannonCraftingScenes.java │ │ ├── CannonKineticsScenes.java │ │ ├── CannonLoadingScenes.java │ │ └── CannonMountScenes.java │ │ ├── remix │ │ ├── CBCExplodableBlock.java │ │ ├── ContraptionRemix.java │ │ ├── CustomBlockDamageDisplay.java │ │ ├── CustomExplosion.java │ │ ├── EffectsRemix.java │ │ ├── HasCannonLightingVolume.java │ │ ├── HasFragileContraption.java │ │ ├── LightingRemix.java │ │ └── RotationPropagatorRemix.java │ │ └── utils │ │ ├── CBCRegistryUtils.java │ │ └── CBCUtils.java │ └── resources │ ├── architectury.common.json │ ├── assets │ ├── createbigcannons │ │ ├── block_hit_effects │ │ │ └── block │ │ │ │ └── tags │ │ │ │ ├── glass_effect_on_impact.json │ │ │ │ ├── spark_effect_on_impact.json │ │ │ │ └── splinter_effect_on_impact.json │ │ ├── lang │ │ │ ├── de_de.json │ │ │ ├── es_es.json │ │ │ ├── fi_fi.json │ │ │ ├── fr_fr.json │ │ │ ├── ja_jp.json │ │ │ ├── ko_kr.json │ │ │ ├── nl_nl.json │ │ │ ├── pl_pl.json │ │ │ ├── ru_ru.json │ │ │ ├── uk_ua.json │ │ │ └── zh_cn.json │ │ ├── models │ │ │ ├── block │ │ │ │ ├── autocannon │ │ │ │ │ ├── barrel.json │ │ │ │ │ ├── barrel_flanged.json │ │ │ │ │ ├── breech.json │ │ │ │ │ ├── breech_handle.json │ │ │ │ │ ├── breech_item.json │ │ │ │ │ ├── extractor.json │ │ │ │ │ ├── recoil_spring.json │ │ │ │ │ ├── recoil_spring_item.json │ │ │ │ │ ├── seat.json │ │ │ │ │ ├── seat_black.json │ │ │ │ │ ├── seat_blue.json │ │ │ │ │ ├── seat_brown.json │ │ │ │ │ ├── seat_cyan.json │ │ │ │ │ ├── seat_gray.json │ │ │ │ │ ├── seat_green.json │ │ │ │ │ ├── seat_light_blue.json │ │ │ │ │ ├── seat_light_gray.json │ │ │ │ │ ├── seat_lime.json │ │ │ │ │ ├── seat_magenta.json │ │ │ │ │ ├── seat_orange.json │ │ │ │ │ ├── seat_pink.json │ │ │ │ │ ├── seat_purple.json │ │ │ │ │ ├── seat_red.json │ │ │ │ │ ├── seat_white.json │ │ │ │ │ ├── seat_yellow.json │ │ │ │ │ ├── spring.json │ │ │ │ │ ├── unbored_barrel.json │ │ │ │ │ ├── unbored_breech.json │ │ │ │ │ └── unbored_recoil_spring.json │ │ │ │ ├── autocannon_ammo_containers │ │ │ │ │ ├── creative.json │ │ │ │ │ ├── creative_empty.json │ │ │ │ │ ├── creative_filled.json │ │ │ │ │ ├── regular.json │ │ │ │ │ ├── regular_empty.json │ │ │ │ │ └── regular_filled.json │ │ │ │ ├── basin_foundry_lid.json │ │ │ │ ├── big_cartridge_base.json │ │ │ │ ├── big_cartridge_empty.json │ │ │ │ ├── big_cartridge_filled.json │ │ │ │ ├── built_up_cannon_barrel.json │ │ │ │ ├── built_up_cannon_chamber.json │ │ │ │ ├── cannon_barrel.json │ │ │ │ ├── cannon_builder │ │ │ │ │ ├── activated.json │ │ │ │ │ ├── activated_rotated.json │ │ │ │ │ ├── cannon_builder_head.json │ │ │ │ │ ├── cannon_builder_head_attached.json │ │ │ │ │ ├── extended.json │ │ │ │ │ ├── extended_rotated.json │ │ │ │ │ ├── moving.json │ │ │ │ │ ├── moving_rotated.json │ │ │ │ │ ├── unactivated.json │ │ │ │ │ └── unactivated_rotated.json │ │ │ │ ├── cannon_carriage │ │ │ │ │ ├── block.json │ │ │ │ │ ├── block_saddle.json │ │ │ │ │ ├── carriage.json │ │ │ │ │ ├── carriage_axle.json │ │ │ │ │ ├── carriage_saddle.json │ │ │ │ │ ├── carriage_wheel.json │ │ │ │ │ ├── carriage_wheel.mtl │ │ │ │ │ ├── carriage_wheel.obj │ │ │ │ │ ├── complete.mtl │ │ │ │ │ ├── complete.obj │ │ │ │ │ ├── complete_saddled.mtl │ │ │ │ │ ├── complete_saddled.obj │ │ │ │ │ └── textures.json │ │ │ │ ├── cannon_cast │ │ │ │ │ ├── autocannon_barrel_cast.json │ │ │ │ │ ├── autocannon_breech_cast.json │ │ │ │ │ ├── autocannon_recoil_spring_cast.json │ │ │ │ │ ├── cannon_end_cast.json │ │ │ │ │ ├── large_cannon_cast.json │ │ │ │ │ ├── medium_cannon_cast.json │ │ │ │ │ ├── screw_breech_cast.json │ │ │ │ │ ├── sliding_breech_cast.json │ │ │ │ │ ├── small_cannon_cast.json │ │ │ │ │ ├── very_large_cannon_cast.json │ │ │ │ │ └── very_small_cannon_cast.json │ │ │ │ ├── cannon_drill │ │ │ │ │ ├── extended.json │ │ │ │ │ ├── extended_rotated.json │ │ │ │ │ ├── moving.json │ │ │ │ │ ├── moving_rotated.json │ │ │ │ │ ├── retracted.json │ │ │ │ │ └── retracted_rotated.json │ │ │ │ ├── cannon_drill_bit.json │ │ │ │ ├── cannon_end.json │ │ │ │ ├── cannon_loader │ │ │ │ │ ├── moving.json │ │ │ │ │ ├── moving_rotated.json │ │ │ │ │ ├── stopped.json │ │ │ │ │ └── stopped_rotated.json │ │ │ │ ├── cannon_mount │ │ │ │ │ ├── cannon_mount.json │ │ │ │ │ ├── cannon_mount_extension.json │ │ │ │ │ ├── cannon_mount_flipped.json │ │ │ │ │ ├── fixed_cannon_mount_east.json │ │ │ │ │ ├── fixed_cannon_mount_north.json │ │ │ │ │ ├── fixed_cannon_mount_south.json │ │ │ │ │ ├── fixed_cannon_mount_west.json │ │ │ │ │ ├── rotating_mount.json │ │ │ │ │ └── yaw_controller.json │ │ │ │ ├── cast_mould │ │ │ │ │ ├── autocannon_barrel_cast_mould.json │ │ │ │ │ ├── autocannon_breech_cast_mould.json │ │ │ │ │ ├── autocannon_recoil_spring_cast_mould.json │ │ │ │ │ ├── cannon_end_cast_mould.json │ │ │ │ │ ├── large_cast_mould.json │ │ │ │ │ ├── medium_cast_mould.json │ │ │ │ │ ├── screw_breech_cast_mould.json │ │ │ │ │ ├── sliding_breech_cast_mould.json │ │ │ │ │ ├── small_cast_mould.json │ │ │ │ │ ├── very_large_cast_mould.json │ │ │ │ │ └── very_small_cast_mould.json │ │ │ │ ├── drop_mortar_end.json │ │ │ │ ├── drop_mortar_shell.json │ │ │ │ ├── drop_mortar_shell_base_fuze.json │ │ │ │ ├── drop_mortar_shell_flying.json │ │ │ │ ├── drop_mortar_shell_head_fuze.json │ │ │ │ ├── fuze.json │ │ │ │ ├── gas_mask.json │ │ │ │ ├── large_cannon_tube.json │ │ │ │ ├── medium_cannon_tube.json │ │ │ │ ├── mortar_stone_projectile.json │ │ │ │ ├── powder_charge.json │ │ │ │ ├── projectile_block.json │ │ │ │ ├── projectile_block_fuze_base.json │ │ │ │ ├── projectile_block_fuze_head.json │ │ │ │ ├── quickfiring_breech_lever.json │ │ │ │ ├── ram_head.json │ │ │ │ ├── screw_breech.json │ │ │ │ ├── screw_breech_axis.json │ │ │ │ ├── screw_breech_item.json │ │ │ │ ├── sliding_breech.json │ │ │ │ ├── sliding_breech_axis.json │ │ │ │ ├── sliding_breech_axis_rotated.json │ │ │ │ ├── sliding_breech_item.json │ │ │ │ ├── sliding_breech_rotated.json │ │ │ │ ├── small_cannon_tube.json │ │ │ │ ├── standard_projectile_block.json │ │ │ │ ├── thick_cannon_chamber.json │ │ │ │ ├── traffic_cone.json │ │ │ │ ├── very_large_cannon_tube.json │ │ │ │ ├── very_small_cannon_tube.json │ │ │ │ └── worm_head.json │ │ │ ├── entity │ │ │ │ └── autocannon_round.json │ │ │ └── item │ │ │ │ ├── autocannon_cartridge.json │ │ │ │ ├── big_cartridge_sheet.json │ │ │ │ ├── cannon_builder.json │ │ │ │ ├── cannon_crafting_wand.json │ │ │ │ ├── cannon_drill.json │ │ │ │ ├── cannon_loader.json │ │ │ │ ├── cannon_mount.json │ │ │ │ ├── cannon_mount_extension.json │ │ │ │ ├── cannon_welder.json │ │ │ │ ├── empty_autocannon_cartridge.json │ │ │ │ ├── filled_autocannon_cartridge.json │ │ │ │ ├── partially_assembled_machine_gun_round.json │ │ │ │ ├── partially_filled_autocannon_cartridge.json │ │ │ │ ├── partially_formed_autocannon_cartridge.json │ │ │ │ ├── partially_formed_autocannon_cartridge1.json │ │ │ │ ├── partially_formed_autocannon_cartridge2.json │ │ │ │ ├── partially_formed_autocannon_cartridge3.json │ │ │ │ ├── partially_formed_autocannon_cartridge4.json │ │ │ │ ├── partially_formed_big_cartridge.json │ │ │ │ ├── partially_formed_big_cartridge1.json │ │ │ │ ├── partially_formed_big_cartridge2.json │ │ │ │ ├── partially_formed_big_cartridge3.json │ │ │ │ ├── ram_rod.json │ │ │ │ ├── screw_lock.json │ │ │ │ ├── sliding_breechblock.json │ │ │ │ ├── worm.json │ │ │ │ └── yaw_controller.json │ │ ├── particles │ │ │ ├── autocannon_plume.json │ │ │ ├── big_cannon_plume.json │ │ │ ├── block.json │ │ │ ├── cannon_blast_wave.json │ │ │ ├── cannon_smoke.json │ │ │ ├── cannon_smoke_fallback.json │ │ │ ├── debris_matter.json │ │ │ ├── debris_smoke.json │ │ │ ├── debris_smoke_burst.json │ │ │ ├── drop_mortar_plume.json │ │ │ ├── flak_cloud.json │ │ │ ├── flak_smoke.json │ │ │ ├── fluid_blob.json │ │ │ ├── fluid_cloud.json │ │ │ ├── gas_cloud.json │ │ │ ├── glass_burst.json │ │ │ ├── glass_shard.json │ │ │ ├── leaf.json │ │ │ ├── leaf_burst.json │ │ │ ├── projectile_splash.json │ │ │ ├── quick_firing_breech_smoke.json │ │ │ ├── shell_blast_wave.json │ │ │ ├── shell_explosion_cloud.json │ │ │ ├── shell_explosion_smoke.json │ │ │ ├── shrapnel_cloud.json │ │ │ ├── shrapnel_smoke.json │ │ │ ├── smoke_shell_smoke.json │ │ │ ├── spark.json │ │ │ ├── spark_burst.json │ │ │ ├── splash_spray.json │ │ │ ├── splinter.json │ │ │ ├── splinter_burst.json │ │ │ └── trail_smoke.json │ │ ├── ponder │ │ │ ├── cannon_crafting │ │ │ │ ├── basin_foundry.nbt │ │ │ │ ├── cannon_boring.nbt │ │ │ │ ├── cannon_building.nbt │ │ │ │ ├── cannon_casting.nbt │ │ │ │ ├── cannon_welder.nbt │ │ │ │ ├── finishing_built_up_cannons.nbt │ │ │ │ ├── incomplete_cannon_blocks.nbt │ │ │ │ ├── making_quick_firing_breeches.nbt │ │ │ │ └── moving_cannons.nbt │ │ │ ├── cannon_kinetics │ │ │ │ ├── quick_firing_breech.nbt │ │ │ │ ├── screw_breech.nbt │ │ │ │ └── sliding_breech.nbt │ │ │ ├── cannon_loader │ │ │ │ ├── base_contraption_loading.nbt │ │ │ │ ├── handloading_tools.nbt │ │ │ │ └── loading_big_cannons.nbt │ │ │ ├── cannon_mount │ │ │ │ ├── assembly_and_use.nbt │ │ │ │ ├── customizing_autocannons.nbt │ │ │ │ ├── firing_big_cannons.nbt │ │ │ │ ├── upside_down_cannon_mounts.nbt │ │ │ │ ├── using_autocannons.nbt │ │ │ │ ├── using_cannon_mount_extensions.nbt │ │ │ │ └── using_fixed_cannon_mounts.nbt │ │ │ └── munitions │ │ │ │ ├── adding_tracers.nbt │ │ │ │ ├── automating_autocannon_ammo_container.nbt │ │ │ │ ├── cannon_loads.nbt │ │ │ │ ├── filling_autocannon_ammo_container.nbt │ │ │ │ ├── fuzing_munitions.nbt │ │ │ │ ├── using_autocannon_ammo_container.nbt │ │ │ │ └── wet_ammo_storage.nbt │ │ ├── projectile_hit_effects │ │ │ ├── ap_autocannon.json │ │ │ ├── flak_autocannon.json │ │ │ └── machine_gun_bullet.json │ │ ├── shaders │ │ │ └── core │ │ │ │ ├── cannon_smoke_particle.fsh │ │ │ │ ├── cannon_smoke_particle.json │ │ │ │ ├── cannon_smoke_particle.vsh │ │ │ │ ├── splinter_particle.fsh │ │ │ │ ├── splinter_particle.json │ │ │ │ └── splinter_particle.vsh │ │ ├── sounds │ │ │ ├── autocannon_round_flyby.ogg │ │ │ ├── cartridge_extract.ogg │ │ │ ├── fire_autocannon.ogg │ │ │ ├── fire_big_cannon.ogg │ │ │ ├── fire_drop_mortar.ogg │ │ │ ├── fire_drop_mortar1.ogg │ │ │ ├── fire_machine_gun.ogg │ │ │ ├── flak_round_explosion.ogg │ │ │ ├── fluid_shell_explosion.ogg │ │ │ ├── machine_gun_round_flyby.ogg │ │ │ ├── mortar_stone_explode.ogg │ │ │ ├── mortar_stone_explode1.ogg │ │ │ ├── mortar_stone_explode2.ogg │ │ │ ├── projectile_splash.ogg │ │ │ ├── projectile_splash1.ogg │ │ │ ├── shell_explosion.ogg │ │ │ ├── shell_explosion1.ogg │ │ │ ├── shell_explosion2.ogg │ │ │ ├── shell_flying.ogg │ │ │ ├── shrapnel_shell_explosion.ogg │ │ │ ├── wood_splinters.ogg │ │ │ ├── wood_splinters1.ogg │ │ │ ├── wood_splinters2.ogg │ │ │ └── wood_splinters3.ogg │ │ └── textures │ │ │ ├── block │ │ │ ├── autocannon │ │ │ │ ├── bronze_autocannon.png │ │ │ │ ├── bronze_autocannon_1.png │ │ │ │ ├── cast_iron_autocannon.png │ │ │ │ ├── cast_iron_autocannon_1.png │ │ │ │ ├── steel_autocannon.png │ │ │ │ └── steel_autocannon_1.png │ │ │ ├── autocannon_ammo_container │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── lid.png │ │ │ │ ├── lid_bottom.png │ │ │ │ ├── lid_top.png │ │ │ │ ├── side.png │ │ │ │ ├── top_empty.png │ │ │ │ └── top_filled.png │ │ │ ├── basin_foundry_lid.png │ │ │ ├── basin_foundry_lid_bottom.png │ │ │ ├── basin_foundry_lid_inside.png │ │ │ ├── basin_foundry_lid_top.png │ │ │ ├── big_cartridge_bottom.png │ │ │ ├── big_cartridge_empty.png │ │ │ ├── big_cartridge_filled.png │ │ │ ├── big_cartridge_side.png │ │ │ ├── cannon_barrel │ │ │ │ ├── bronze_cannon_barrel_end.png │ │ │ │ ├── bronze_cannon_barrel_side.png │ │ │ │ ├── built_up_nethersteel_cannon_barrel_end.png │ │ │ │ ├── built_up_nethersteel_cannon_barrel_side.png │ │ │ │ ├── built_up_nethersteel_cannon_barrel_side_connected.png │ │ │ │ ├── built_up_steel_cannon_barrel_end.png │ │ │ │ ├── built_up_steel_cannon_barrel_side.png │ │ │ │ ├── built_up_steel_cannon_barrel_side_connected.png │ │ │ │ ├── cast_iron_cannon_barrel_end.png │ │ │ │ ├── cast_iron_cannon_barrel_side.png │ │ │ │ ├── nethersteel_cannon_barrel_end.png │ │ │ │ ├── nethersteel_cannon_barrel_side.png │ │ │ │ ├── nethersteel_cannon_barrel_side_connected.png │ │ │ │ ├── steel_cannon_barrel_end.png │ │ │ │ ├── steel_cannon_barrel_side.png │ │ │ │ ├── steel_cannon_barrel_side_connected.png │ │ │ │ ├── unbored_bronze_cannon_barrel_end.png │ │ │ │ ├── unbored_built_up_nethersteel_cannon_barrel_end.png │ │ │ │ ├── unbored_built_up_steel_cannon_barrel_end.png │ │ │ │ ├── unbored_cast_iron_cannon_barrel_end.png │ │ │ │ ├── unbored_nethersteel_cannon_barrel_end.png │ │ │ │ └── unbored_steel_cannon_barrel_end.png │ │ │ ├── cannon_builder_end.png │ │ │ ├── cannon_builder_side.png │ │ │ ├── cannon_builder_side_activated.png │ │ │ ├── cannon_carriage │ │ │ │ ├── back.png │ │ │ │ ├── block.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── saddle.png │ │ │ │ ├── side.png │ │ │ │ ├── top.png │ │ │ │ └── wheel.png │ │ │ ├── cannon_cast_side1.png │ │ │ ├── cannon_cast_side2.png │ │ │ ├── cannon_cast_top.png │ │ │ ├── cannon_chamber │ │ │ │ ├── bronze_cannon_chamber_end.png │ │ │ │ ├── bronze_cannon_chamber_side.png │ │ │ │ ├── built_up_nethersteel_cannon_chamber_end.png │ │ │ │ ├── built_up_nethersteel_cannon_chamber_side.png │ │ │ │ ├── built_up_nethersteel_cannon_chamber_side_connected.png │ │ │ │ ├── built_up_steel_cannon_chamber_end.png │ │ │ │ ├── built_up_steel_cannon_chamber_side.png │ │ │ │ ├── built_up_steel_cannon_chamber_side_connected.png │ │ │ │ ├── cast_iron_cannon_chamber_end.png │ │ │ │ ├── cast_iron_cannon_chamber_side.png │ │ │ │ ├── log_cannon_chamber_end.png │ │ │ │ ├── log_cannon_chamber_side.png │ │ │ │ ├── nethersteel_cannon_chamber_end.png │ │ │ │ ├── nethersteel_cannon_chamber_side.png │ │ │ │ ├── nethersteel_cannon_chamber_side_connected.png │ │ │ │ ├── steel_cannon_chamber_end.png │ │ │ │ ├── steel_cannon_chamber_side.png │ │ │ │ ├── steel_cannon_chamber_side_connected.png │ │ │ │ ├── thick_nethersteel_cannon_chamber_end.png │ │ │ │ ├── thick_nethersteel_cannon_chamber_side.png │ │ │ │ ├── thick_nethersteel_cannon_chamber_side_connected.png │ │ │ │ ├── thick_steel_cannon_chamber_end.png │ │ │ │ ├── thick_steel_cannon_chamber_side.png │ │ │ │ ├── thick_steel_cannon_chamber_side_connected.png │ │ │ │ ├── unbored_bronze_cannon_chamber_end.png │ │ │ │ ├── unbored_built_up_nethersteel_cannon_chamber_end.png │ │ │ │ ├── unbored_built_up_steel_cannon_chamber_end.png │ │ │ │ ├── unbored_cast_iron_cannon_chamber_end.png │ │ │ │ ├── unbored_nethersteel_cannon_chamber_end.png │ │ │ │ ├── unbored_steel_cannon_chamber_end.png │ │ │ │ ├── unbored_thick_nethersteel_cannon_chamber_end.png │ │ │ │ ├── unbored_thick_steel_cannon_chamber_end.png │ │ │ │ ├── wrought_iron_cannon_chamber_end.png │ │ │ │ └── wrought_iron_cannon_chamber_side.png │ │ │ ├── cannon_drill_bit.png │ │ │ ├── cannon_end │ │ │ │ ├── bronze_cannon_end_bottom.png │ │ │ │ ├── bronze_cannon_end_knob.png │ │ │ │ ├── bronze_cannon_end_side.png │ │ │ │ ├── bronze_cannon_end_top.png │ │ │ │ ├── cast_iron_cannon_end_bottom.png │ │ │ │ ├── cast_iron_cannon_end_knob.png │ │ │ │ ├── cast_iron_cannon_end_side.png │ │ │ │ ├── cast_iron_cannon_end_top.png │ │ │ │ ├── log_cannon_end_bottom.png │ │ │ │ ├── log_cannon_end_knob.png │ │ │ │ ├── log_cannon_end_side.png │ │ │ │ ├── log_cannon_end_top.png │ │ │ │ ├── wrought_iron_cannon_end_bottom.png │ │ │ │ ├── wrought_iron_cannon_end_knob.png │ │ │ │ ├── wrought_iron_cannon_end_side.png │ │ │ │ ├── wrought_iron_cannon_end_top.png │ │ │ │ └── wrought_iron_drop_mortar_end_spike.png │ │ │ ├── cannon_mount │ │ │ │ ├── cannon_loader_nook.png │ │ │ │ ├── cannon_mount_extension_side.png │ │ │ │ ├── cannon_mount_firing.png │ │ │ │ ├── cannon_mount_side_shaft.png │ │ │ │ ├── cannon_mount_toggle.png │ │ │ │ ├── cannon_mount_top.png │ │ │ │ ├── rotating_mount_plate.png │ │ │ │ ├── rotating_mount_side.png │ │ │ │ ├── rotating_mount_side1.png │ │ │ │ ├── rotating_mount_side_top.png │ │ │ │ └── yaw_controller_side.png │ │ │ ├── cannon_tubing │ │ │ │ ├── nethersteel_cannon_tube.png │ │ │ │ ├── steel_cannon_tube.png │ │ │ │ ├── unbored_nethersteel_cannon_tube.png │ │ │ │ └── unbored_steel_cannon_tube.png │ │ │ ├── cast_iron_block.png │ │ │ ├── cast_mould.png │ │ │ ├── casting_sand.png │ │ │ ├── compact_casting_sand.png │ │ │ ├── creative_autocannon_ammo_container │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── lid.png │ │ │ │ ├── lid_bottom.png │ │ │ │ ├── lid_top.png │ │ │ │ ├── side.png │ │ │ │ ├── top_empty.png │ │ │ │ └── top_filled.png │ │ │ ├── fuze.png │ │ │ ├── gas_mask.png │ │ │ ├── nethersteel_block.png │ │ │ ├── pole_contraption_bottom.png │ │ │ ├── pole_contraption_nook.png │ │ │ ├── pole_contraption_side.png │ │ │ ├── pole_contraption_side1.png │ │ │ ├── pole_contraption_top.png │ │ │ ├── powder_charge.png │ │ │ ├── powder_charge_top.png │ │ │ ├── projectile │ │ │ │ ├── ap_shell.png │ │ │ │ ├── ap_shell_bottom.png │ │ │ │ ├── ap_shell_top.png │ │ │ │ ├── ap_shot.png │ │ │ │ ├── ap_shot_bottom.png │ │ │ │ ├── ap_shot_top.png │ │ │ │ ├── drop_mortar_shell_bottom.png │ │ │ │ ├── drop_mortar_shell_bottom1.png │ │ │ │ ├── drop_mortar_shell_fins.png │ │ │ │ ├── drop_mortar_shell_side.png │ │ │ │ ├── drop_mortar_shell_top.png │ │ │ │ ├── fluid_shell.png │ │ │ │ ├── fluid_shell_bottom.png │ │ │ │ ├── fluid_shell_top.png │ │ │ │ ├── grapeshot.png │ │ │ │ ├── grapeshot_top.png │ │ │ │ ├── he_shell.png │ │ │ │ ├── he_shell_bottom.png │ │ │ │ ├── he_shell_top.png │ │ │ │ ├── mortar_stone.png │ │ │ │ ├── mortar_stone_top.png │ │ │ │ ├── shrapnel_shell.png │ │ │ │ ├── shrapnel_shell_bottom.png │ │ │ │ ├── shrapnel_shell_top.png │ │ │ │ ├── smoke_shell.png │ │ │ │ ├── smoke_shell_bottom.png │ │ │ │ ├── smoke_shell_top.png │ │ │ │ ├── solid_shot.png │ │ │ │ ├── solid_shot_bottom.png │ │ │ │ ├── solid_shot_top.png │ │ │ │ └── standard_bottom.png │ │ │ ├── quickfiring_breech_lever.png │ │ │ ├── ram_head.png │ │ │ ├── screw_breech │ │ │ │ ├── nethersteel_screw_breech_bottom.png │ │ │ │ ├── nethersteel_screw_breech_side.png │ │ │ │ ├── nethersteel_screw_breech_top.png │ │ │ │ ├── nethersteel_screw_lock.png │ │ │ │ ├── steel_screw_breech_bottom.png │ │ │ │ ├── steel_screw_breech_side.png │ │ │ │ ├── steel_screw_breech_top.png │ │ │ │ ├── steel_screw_lock.png │ │ │ │ ├── unbored_nethersteel_screw_breech_bottom.png │ │ │ │ ├── unbored_nethersteel_screw_breech_top.png │ │ │ │ ├── unbored_steel_screw_breech_bottom.png │ │ │ │ └── unbored_steel_screw_breech_top.png │ │ │ ├── sliding_breech │ │ │ │ ├── bronze_sliding_breech_breechblock_bottom.png │ │ │ │ ├── bronze_sliding_breech_breechblock_end.png │ │ │ │ ├── bronze_sliding_breech_breechblock_side.png │ │ │ │ ├── bronze_sliding_breech_breechblock_top.png │ │ │ │ ├── bronze_sliding_breech_hole.png │ │ │ │ ├── bronze_sliding_breech_inside.png │ │ │ │ ├── bronze_sliding_breech_side.png │ │ │ │ ├── bronze_sliding_breech_side_hole.png │ │ │ │ ├── cast_iron_sliding_breech_breechblock_bottom.png │ │ │ │ ├── cast_iron_sliding_breech_breechblock_end.png │ │ │ │ ├── cast_iron_sliding_breech_breechblock_side.png │ │ │ │ ├── cast_iron_sliding_breech_breechblock_top.png │ │ │ │ ├── cast_iron_sliding_breech_hole.png │ │ │ │ ├── cast_iron_sliding_breech_inside.png │ │ │ │ ├── cast_iron_sliding_breech_side.png │ │ │ │ ├── cast_iron_sliding_breech_side_hole.png │ │ │ │ ├── steel_sliding_breech_breechblock_bottom.png │ │ │ │ ├── steel_sliding_breech_breechblock_end.png │ │ │ │ ├── steel_sliding_breech_breechblock_side.png │ │ │ │ ├── steel_sliding_breech_breechblock_top.png │ │ │ │ ├── steel_sliding_breech_hole.png │ │ │ │ ├── steel_sliding_breech_inside.png │ │ │ │ ├── steel_sliding_breech_side.png │ │ │ │ ├── steel_sliding_breech_side_connected.png │ │ │ │ ├── steel_sliding_breech_side_hole.png │ │ │ │ ├── steel_sliding_breech_side_hole_connected.png │ │ │ │ ├── unbored_bronze_sliding_breech_hole.png │ │ │ │ ├── unbored_bronze_sliding_breech_inside.png │ │ │ │ ├── unbored_bronze_sliding_breech_side.png │ │ │ │ ├── unbored_bronze_sliding_breech_side_hole.png │ │ │ │ ├── unbored_cast_iron_sliding_breech_hole.png │ │ │ │ ├── unbored_cast_iron_sliding_breech_inside.png │ │ │ │ ├── unbored_cast_iron_sliding_breech_side.png │ │ │ │ ├── unbored_cast_iron_sliding_breech_side_hole.png │ │ │ │ ├── unbored_steel_sliding_breech_hole.png │ │ │ │ ├── unbored_steel_sliding_breech_inside.png │ │ │ │ ├── unbored_steel_sliding_breech_side.png │ │ │ │ └── unbored_steel_sliding_breech_side_hole.png │ │ │ ├── traffic_cone.png │ │ │ └── worm_head.png │ │ │ ├── entity │ │ │ ├── color.png │ │ │ ├── shrapnel.png │ │ │ ├── tracer_glow0.png │ │ │ ├── tracer_glow1.png │ │ │ ├── tracer_glow2.png │ │ │ └── tracer_glow3.png │ │ │ ├── fluid │ │ │ ├── molten_bronze_flow.png │ │ │ ├── molten_bronze_flow.png.mcmeta │ │ │ ├── molten_bronze_still.png │ │ │ ├── molten_bronze_still.png.mcmeta │ │ │ ├── molten_cast_iron_flow.png │ │ │ ├── molten_cast_iron_flow.png.mcmeta │ │ │ ├── molten_cast_iron_still.png │ │ │ ├── molten_cast_iron_still.png.mcmeta │ │ │ ├── molten_nethersteel_flow.png │ │ │ ├── molten_nethersteel_flow.png.mcmeta │ │ │ ├── molten_nethersteel_still.png │ │ │ ├── molten_nethersteel_still.png.mcmeta │ │ │ ├── molten_steel_flow.png │ │ │ ├── molten_steel_flow.png.mcmeta │ │ │ ├── molten_steel_still.png │ │ │ └── molten_steel_still.png.mcmeta │ │ │ ├── gui │ │ │ ├── backgrounds1.png │ │ │ ├── backgrounds2.png │ │ │ └── jei_icons.png │ │ │ ├── item │ │ │ ├── ap_autocannon_round.png │ │ │ ├── autocannon_cartridge.png │ │ │ ├── autocannon_cartridge_sheet.png │ │ │ ├── block_armor_inspection_tool.png │ │ │ ├── bronze_scrap.png │ │ │ ├── cannon_crafting_wand.png │ │ │ ├── cannon_welder.png │ │ │ ├── cast_iron_ingot.png │ │ │ ├── cast_iron_nugget.png │ │ │ ├── congealed_nitro.png │ │ │ ├── delayed_impact_fuze.png │ │ │ ├── empty_machine_gun_round.png │ │ │ ├── empty_powder_charge.png │ │ │ ├── flak_autocannon_round.png │ │ │ ├── fuze_base.png │ │ │ ├── gas_mask.png │ │ │ ├── guncotton.png │ │ │ ├── gunpowder_pinch.png │ │ │ ├── hardened_nitro.png │ │ │ ├── impact_fuze.png │ │ │ ├── machine_gun_round.png │ │ │ ├── molten_bronze_bucket.png │ │ │ ├── molten_cast_iron_bucket.png │ │ │ ├── molten_nethersteel_bucket.png │ │ │ ├── molten_steel_bucket.png │ │ │ ├── nethersteel_ingot.png │ │ │ ├── nethersteel_nugget.png │ │ │ ├── nitropowder.png │ │ │ ├── packed_guncotton.png │ │ │ ├── packed_gunpowder.png │ │ │ ├── pair_of_cannon_wheels.png │ │ │ ├── partial_recoil_spring.png │ │ │ ├── proximity_fuze.png │ │ │ ├── quickfiring_mechanism.png │ │ │ ├── recoil_spring.png │ │ │ ├── shot_balls.png │ │ │ ├── spring_wire.png │ │ │ ├── steel_scrap.png │ │ │ ├── timed_fuze.png │ │ │ ├── tracer_slot.png │ │ │ ├── tracer_tip.png │ │ │ └── wired_fuze.png │ │ │ ├── misc │ │ │ └── gas_mask_overlay.png │ │ │ └── particle │ │ │ ├── cannon_smoke_0.png │ │ │ ├── cannon_smoke_1.png │ │ │ ├── cannon_smoke_10.png │ │ │ ├── cannon_smoke_2.png │ │ │ ├── cannon_smoke_3.png │ │ │ ├── cannon_smoke_4.png │ │ │ ├── cannon_smoke_5.png │ │ │ ├── cannon_smoke_6.png │ │ │ ├── cannon_smoke_7.png │ │ │ ├── cannon_smoke_8.png │ │ │ ├── cannon_smoke_9.png │ │ │ ├── cannon_smoke_fallback0.png │ │ │ ├── cannon_smoke_fallback1.png │ │ │ ├── cannon_smoke_fallback10.png │ │ │ ├── cannon_smoke_fallback2.png │ │ │ ├── cannon_smoke_fallback3.png │ │ │ ├── cannon_smoke_fallback4.png │ │ │ ├── cannon_smoke_fallback5.png │ │ │ ├── cannon_smoke_fallback6.png │ │ │ ├── cannon_smoke_fallback7.png │ │ │ ├── cannon_smoke_fallback8.png │ │ │ ├── cannon_smoke_fallback9.png │ │ │ ├── cannon_smoke_particle_gradient.png │ │ │ ├── explosion_smoke0.png │ │ │ ├── explosion_smoke1.png │ │ │ ├── explosion_smoke10.png │ │ │ ├── explosion_smoke2.png │ │ │ ├── explosion_smoke3.png │ │ │ ├── explosion_smoke4.png │ │ │ ├── explosion_smoke5.png │ │ │ ├── explosion_smoke6.png │ │ │ ├── explosion_smoke7.png │ │ │ ├── explosion_smoke8.png │ │ │ ├── explosion_smoke9.png │ │ │ ├── flak_smoke0.png │ │ │ ├── flak_smoke1.png │ │ │ ├── flak_smoke2.png │ │ │ ├── flak_smoke3.png │ │ │ ├── flak_smoke4.png │ │ │ ├── flak_smoke5.png │ │ │ ├── flak_smoke6.png │ │ │ ├── flak_smoke7.png │ │ │ ├── glass_shard0.png │ │ │ ├── glass_shard1.png │ │ │ ├── glass_shard2.png │ │ │ ├── glass_shard3.png │ │ │ ├── leaf0.png │ │ │ ├── leaf1.png │ │ │ ├── leaf2.png │ │ │ ├── leaf3.png │ │ │ ├── shrapnel_smoke0.png │ │ │ ├── shrapnel_smoke1.png │ │ │ ├── shrapnel_smoke2.png │ │ │ ├── shrapnel_smoke3.png │ │ │ ├── shrapnel_smoke4.png │ │ │ ├── shrapnel_smoke5.png │ │ │ ├── shrapnel_smoke6.png │ │ │ ├── shrapnel_smoke7.png │ │ │ ├── smoke_shell_smoke_1.png │ │ │ ├── smoke_shell_smoke_2.png │ │ │ ├── smoke_shell_smoke_3.png │ │ │ ├── smoke_shell_smoke_4.png │ │ │ ├── splash_spray0.png │ │ │ ├── splash_spray1.png │ │ │ ├── splash_spray2.png │ │ │ ├── splash_spray3.png │ │ │ ├── splinter0.png │ │ │ ├── splinter1.png │ │ │ ├── splinter2.png │ │ │ └── splinter3.png │ └── minecraft │ │ ├── atlases │ │ └── blocks.json │ │ └── block_hit_effects │ │ └── block │ │ └── tags │ │ └── leaves.json │ ├── createbigcannons-common.mixins.json │ ├── createbigcannons.accesswidener │ └── data │ ├── c │ └── fluid_casting_time │ │ └── tags │ │ ├── molten_bronze.json │ │ ├── molten_cast_iron.json │ │ └── molten_steel.json │ ├── copycats │ └── block_armor │ │ ├── copycat_beam.json │ │ ├── copycat_block.json │ │ ├── copycat_board.json │ │ ├── copycat_byte.json │ │ ├── copycat_cogwheel.json │ │ ├── copycat_fence.json │ │ ├── copycat_fence_gate.json │ │ ├── copycat_fluid_pipe.json │ │ ├── copycat_glass_fluid_pipe.json │ │ ├── copycat_half_layer.json │ │ ├── copycat_half_panel.json │ │ ├── copycat_heavy_weighted_pressure_plate.json │ │ ├── copycat_iron_trapdoor.json │ │ ├── copycat_ladder.json │ │ ├── copycat_large_cogwheel.json │ │ ├── copycat_layer.json │ │ ├── copycat_light_weighted_pressure_plate.json │ │ ├── copycat_shaft.json │ │ ├── copycat_slab.json │ │ ├── copycat_slice.json │ │ ├── copycat_slope.json │ │ ├── copycat_slope_layer.json │ │ ├── copycat_stairs.json │ │ ├── copycat_stone_button.json │ │ ├── copycat_stone_pressure_plate.json │ │ ├── copycat_trapdoor.json │ │ ├── copycat_vertical_slice.json │ │ ├── copycat_vertical_slope.json │ │ ├── copycat_vertical_stairs.json │ │ ├── copycat_vertical_step.json │ │ ├── copycat_wall.json │ │ ├── copycat_wooden_button.json │ │ └── copycat_wooden_pressure_plate.json │ ├── create │ ├── block_armor │ │ ├── copycat_panel.json │ │ ├── copycat_step.json │ │ ├── industrial_iron_block.json │ │ └── item_vault.json │ └── fluid_drag │ │ ├── chocolate.json │ │ └── honey.json │ ├── createbigcannons │ ├── big_cannon_breech_strength │ │ ├── bronze_quickfiring_breech.json │ │ ├── bronze_sliding_breech.json │ │ ├── cast_iron_quickfiring_breech.json │ │ ├── cast_iron_sliding_breech.json │ │ ├── incomplete_bronze_sliding_breech.json │ │ ├── incomplete_cast_iron_sliding_breech.json │ │ ├── incomplete_steel_sliding_breech.json │ │ ├── nethersteel_screw_breech.json │ │ ├── steel_quickfiring_breech.json │ │ ├── steel_screw_breech.json │ │ ├── steel_sliding_breech.json │ │ ├── unbored_bronze_sliding_breech.json │ │ ├── unbored_cast_iron_sliding_breech.json │ │ └── unbored_steel_sliding_breech.json │ ├── big_cannon_propellant_compatibility │ │ ├── big_cartridge.json │ │ └── powder_charge.json │ ├── block_armor │ │ └── tags │ │ │ ├── concrete.json │ │ │ ├── netherrack.json │ │ │ ├── obsidian.json │ │ │ └── sandstone.json │ ├── cannon_mounts │ │ ├── block_entities │ │ │ ├── cannon_mount │ │ │ │ └── createbigcannons │ │ │ │ │ ├── autocannon.json │ │ │ │ │ ├── big_cannon.json │ │ │ │ │ ├── drop_mortar.json │ │ │ │ │ └── handle_autocannon.json │ │ │ └── fixed_cannon_mount │ │ │ │ └── createbigcannons │ │ │ │ ├── autocannon.json │ │ │ │ ├── big_cannon.json │ │ │ │ ├── drop_mortar.json │ │ │ │ └── handle_autocannon.json │ │ └── entities │ │ │ └── cannon_carriage │ │ │ └── createbigcannons │ │ │ ├── autocannon.json │ │ │ ├── big_cannon.json │ │ │ ├── drop_mortar.json │ │ │ └── handle_autocannon.json │ ├── damage_type │ │ ├── big_cannon_projectile.json │ │ ├── cannon_projectile.json │ │ ├── flak.json │ │ ├── grapeshot.json │ │ ├── machine_gun_fire.json │ │ ├── machine_gun_fire_in_water.json │ │ ├── molten_metal.json │ │ ├── shrapnel.json │ │ └── traffic_cone.json │ ├── fluid_casting_time │ │ └── molten_nethersteel.json │ └── munition_properties │ │ ├── block_propellant │ │ ├── big_cartridge.json │ │ └── powder_charge.json │ │ └── projectiles │ │ ├── ap_autocannon.json │ │ ├── ap_shell.json │ │ ├── ap_shot.json │ │ ├── bag_of_grapeshot.json │ │ ├── drop_mortar_shell.json │ │ ├── flak_autocannon.json │ │ ├── flak_burst.json │ │ ├── fluid_blob_burst.json │ │ ├── fluid_shell.json │ │ ├── grapeshot_burst.json │ │ ├── he_shell.json │ │ ├── machine_gun_bullet.json │ │ ├── mortar_stone.json │ │ ├── shot.json │ │ ├── shrapnel_burst.json │ │ ├── shrapnel_shell.json │ │ ├── smoke_shell.json │ │ └── traffic_cone.json │ ├── example_createbigcannons │ ├── autocannon_materials │ │ └── example.json │ └── big_cannon_materials │ │ └── example.json │ ├── forge │ └── fluid_casting_time │ │ └── tags │ │ ├── molten_bronze.json │ │ ├── molten_cast_iron.json │ │ └── molten_steel.json │ └── minecraft │ ├── block_armor │ ├── crying_obsidian.json │ ├── iron_block.json │ └── tags │ │ ├── anvil.json │ │ └── terracotta.json │ ├── block_impact_transforms │ ├── chiseled_deepslate.json │ ├── chiseled_nether_bricks.json │ ├── chiseled_polished_blackstone.json │ ├── chiseled_red_sandstone.json │ ├── chiseled_sandstone.json │ ├── chiseled_stone_bricks.json │ ├── cracked_deepslate_bricks.json │ ├── cracked_deepslate_tiles.json │ ├── cracked_polished_blackstone_bricks.json │ ├── cracked_stone_bricks.json │ ├── crimson_nylium.json │ ├── cut_red_sandstone.json │ ├── cut_red_sandstone_slab.json │ ├── cut_sandstone.json │ ├── cut_sandstone_slab.json │ ├── deepslate.json │ ├── deepslate_brick_slab.json │ ├── deepslate_brick_stairs.json │ ├── deepslate_brick_wall.json │ ├── deepslate_bricks.json │ ├── deepslate_tile_slab.json │ ├── deepslate_tile_stairs.json │ ├── deepslate_tile_wall.json │ ├── deepslate_tiles.json │ ├── dirt.json │ ├── end_stone_bricks.json │ ├── grass_block.json │ ├── infested_chiseled_stone_bricks.json │ ├── infested_cracked_stone_bricks.json │ ├── infested_mossy_stone_bricks.json │ ├── infested_stone.json │ ├── infested_stone_bricks.json │ ├── mossy_cobblestone.json │ ├── mossy_cobblestone_slab.json │ ├── mossy_cobblestone_stairs.json │ ├── mossy_cobblestone_wall.json │ ├── mossy_stone_brick_slab.json │ ├── mossy_stone_brick_stairs.json │ ├── mossy_stone_brick_wall.json │ ├── mossy_stone_bricks.json │ ├── mycelium.json │ ├── nether_bricks.json │ ├── podzol.json │ ├── polished_andesite.json │ ├── polished_andesite_slab.json │ ├── polished_andesite_stairs.json │ ├── polished_basalt.json │ ├── polished_blackstone.json │ ├── polished_blackstone_brick_slab.json │ ├── polished_blackstone_brick_stairs.json │ ├── polished_blackstone_brick_wall.json │ ├── polished_blackstone_bricks.json │ ├── polished_blackstone_slab.json │ ├── polished_blackstone_stairs.json │ ├── polished_blackstone_wall.json │ ├── polished_deepslate.json │ ├── polished_deepslate_slab.json │ ├── polished_deepslate_stairs.json │ ├── polished_deepslate_wall.json │ ├── polished_diorite.json │ ├── polished_diorite_slab.json │ ├── polished_diorite_stairs.json │ ├── polished_granite.json │ ├── polished_granite_slab.json │ ├── polished_granite_stairs.json │ ├── rooted_dirt.json │ ├── smooth_basalt.json │ ├── smooth_red_sandstone.json │ ├── smooth_red_sandstone_slab.json │ ├── smooth_red_sandstone_stairs.json │ ├── smooth_sandstone.json │ ├── smooth_sandstone_slab.json │ ├── smooth_sandstone_stairs.json │ ├── smooth_stone.json │ ├── smooth_stone_slab.json │ ├── soul_soil.json │ ├── stone.json │ ├── stone_brick_slab.json │ ├── stone_brick_stairs.json │ ├── stone_brick_wall.json │ ├── stone_bricks.json │ ├── stone_slab.json │ ├── stone_stairs.json │ └── warped_nylium.json │ ├── dimension_munition_properties │ ├── overworld.json │ ├── the_end.json │ └── the_nether.json │ ├── fluid_drag │ ├── lava.json │ └── water.json │ └── tags │ └── damage_type │ ├── is_explosion.json │ └── is_fire.json ├── stonecutter.gradle.kts └── versions └── 1.20.1 └── gradle.properties /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/.github/workflows/pull_request.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE-CCBYNCSA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/LICENSE-CCBYNCSA.md -------------------------------------------------------------------------------- /LICENSE-MIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/LICENSE-MIT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/README.md -------------------------------------------------------------------------------- /Translators-Changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/Translators-Changes.md -------------------------------------------------------------------------------- /Translators-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/Translators-README.md -------------------------------------------------------------------------------- /download_nightly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/download_nightly.md -------------------------------------------------------------------------------- /fabric/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/build.gradle.kts -------------------------------------------------------------------------------- /fabric/gradle.properties: -------------------------------------------------------------------------------- 1 | loom.platform=fabric 2 | -------------------------------------------------------------------------------- /fabric/run/config/fabric_loader_dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/run/config/fabric_loader_dependencies.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/assets/createbigcannons/blockstates/ap_shell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/assets/createbigcannons/blockstates/ap_shell.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/assets/createbigcannons/blockstates/ap_shot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/assets/createbigcannons/blockstates/ap_shot.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/assets/createbigcannons/blockstates/he_shell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/assets/createbigcannons/blockstates/he_shell.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/assets/createbigcannons/blockstates/ram_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/assets/createbigcannons/blockstates/ram_head.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/assets/createbigcannons/lang/en_ud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/assets/createbigcannons/lang/en_ud.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/assets/createbigcannons/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/assets/createbigcannons/lang/en_us.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/assets/createbigcannons/models/block/ap_shot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/assets/createbigcannons/models/block/ap_shot.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/assets/createbigcannons/models/item/ap_shell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/assets/createbigcannons/models/item/ap_shell.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/assets/createbigcannons/models/item/ap_shot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:block/ap_shot" 3 | } -------------------------------------------------------------------------------- /fabric/src/generated/resources/assets/createbigcannons/models/item/bag_of_grapeshot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:block/bag_of_grapeshot" 3 | } -------------------------------------------------------------------------------- /fabric/src/generated/resources/assets/createbigcannons/models/item/basin_foundry_lid.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:block/basin_foundry_lid" 3 | } -------------------------------------------------------------------------------- /fabric/src/generated/resources/assets/createbigcannons/models/item/casting_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:block/casting_sand" 3 | } -------------------------------------------------------------------------------- /fabric/src/generated/resources/assets/createbigcannons/models/item/gas_mask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/assets/createbigcannons/models/item/gas_mask.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/assets/createbigcannons/models/item/he_shell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/assets/createbigcannons/models/item/he_shell.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/assets/createbigcannons/models/item/incomplete_steel_screw_breech.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:block/incomplete_steel_screw_breech" 3 | } -------------------------------------------------------------------------------- /fabric/src/generated/resources/assets/createbigcannons/models/item/mortar_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:block/mortar_stone" 3 | } -------------------------------------------------------------------------------- /fabric/src/generated/resources/assets/createbigcannons/models/item/mortar_stone_projectile.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:block/mortar_stone_projectile" 3 | } -------------------------------------------------------------------------------- /fabric/src/generated/resources/assets/createbigcannons/models/item/powder_charge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:block/powder_charge" 3 | } -------------------------------------------------------------------------------- /fabric/src/generated/resources/assets/createbigcannons/models/item/ram_head.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:block/ram_head" 3 | } -------------------------------------------------------------------------------- /fabric/src/generated/resources/assets/createbigcannons/models/item/solid_shot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:block/solid_shot" 3 | } -------------------------------------------------------------------------------- /fabric/src/generated/resources/assets/createbigcannons/models/item/traffic_cone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:block/traffic_cone" 3 | } -------------------------------------------------------------------------------- /fabric/src/generated/resources/assets/createbigcannons/models/item/unbored_steel_screw_breech.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:block/unbored_steel_screw_breech" 3 | } -------------------------------------------------------------------------------- /fabric/src/generated/resources/assets/createbigcannons/models/item/worm_head.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:block/worm_head" 3 | } -------------------------------------------------------------------------------- /fabric/src/generated/resources/assets/createbigcannons/models/item/wrought_iron_drop_mortar_end.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:block/wrought_iron_drop_mortar_end" 3 | } -------------------------------------------------------------------------------- /fabric/src/generated/resources/assets/createbigcannons/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/assets/createbigcannons/sounds.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/c/tags/fluids/molten_bronze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/c/tags/fluids/molten_bronze.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/c/tags/fluids/molten_cast_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/c/tags/fluids/molten_cast_iron.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/c/tags/fluids/molten_nethersteel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/c/tags/fluids/molten_nethersteel.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/c/tags/fluids/molten_steel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/c/tags/fluids/molten_steel.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/c/tags/items/bronze_nuggets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/c/tags/items/bronze_nuggets.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/c/tags/items/cast_iron_ingots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/c/tags/items/cast_iron_ingots.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/c/tags/items/cast_iron_nuggets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/c/tags/items/cast_iron_nuggets.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/c/tags/items/ingots/cast_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/c/tags/items/ingots/cast_iron.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/c/tags/items/ingots/nethersteel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/c/tags/items/ingots/nethersteel.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/c/tags/items/nethersteel_ingots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/c/tags/items/nethersteel_ingots.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/c/tags/items/nethersteel_nuggets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/c/tags/items/nethersteel_nuggets.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/c/tags/items/nuggets/bronze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/c/tags/items/nuggets/bronze.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/c/tags/items/nuggets/cast_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/c/tags/items/nuggets/cast_iron.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/c/tags/items/nuggets/nethersteel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/c/tags/items/nuggets/nethersteel.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/c/tags/items/nuggets/steel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/c/tags/items/nuggets/steel.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/c/tags/items/steel_nuggets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/c/tags/items/steel_nuggets.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/create/tags/blocks/safe_nbt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/create/tags/blocks/safe_nbt.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/ap_shell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/ap_shell.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/ap_shot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/ap_shot.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/cannon_builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/cannon_builder.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/cannon_drill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/cannon_drill.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/cannon_loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/cannon_loader.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/cannon_mount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/cannon_mount.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/cannon_welder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/cannon_welder.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/casting_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/casting_sand.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/fluid_shell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/fluid_shell.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/fuze_removal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/fuze_removal.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/gas_mask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/gas_mask.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/hardened_nitro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/hardened_nitro.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/he_shell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/he_shell.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/impact_fuze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/impact_fuze.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/log_cannon_end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/log_cannon_end.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/mortar_stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/mortar_stone.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/powder_charge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/powder_charge.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/proximity_fuze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/proximity_fuze.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/ram_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/ram_head.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/ram_rod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/ram_rod.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/shot_balls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/shot_balls.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/shrapnel_shell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/shrapnel_shell.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/smoke_shell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/smoke_shell.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/solid_shot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/solid_shot.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/timed_fuze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/timed_fuze.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/tracer_removal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/tracer_removal.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/tracer_tip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/tracer_tip.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/wired_fuze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/wired_fuze.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/worm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/worm.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/recipes/worm_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/recipes/worm_head.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/tags/blocks/concrete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/tags/blocks/concrete.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/tags/blocks/netherrack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/tags/blocks/netherrack.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/tags/blocks/obsidian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/tags/blocks/obsidian.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/tags/blocks/sandstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/tags/blocks/sandstone.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/tags/items/block_steel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/tags/items/block_steel.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/tags/items/fuzes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/tags/items/fuzes.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/tags/items/gas_masks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/tags/items/gas_masks.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/tags/items/gems_quartz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/tags/items/gems_quartz.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/tags/items/glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/tags/items/glass.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/tags/items/guncotton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/tags/items/guncotton.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/tags/items/gunpowder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/tags/items/gunpowder.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/tags/items/ingot_brass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/tags/items/ingot_brass.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/tags/items/ingot_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/tags/items/ingot_iron.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/tags/items/ingot_steel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/tags/items/ingot_steel.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/tags/items/nitropowder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/tags/items/nitropowder.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/tags/items/nugget_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/tags/items/nugget_iron.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/tags/items/sheet_brass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/tags/items/sheet_brass.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/tags/items/sheet_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/tags/items/sheet_gold.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/tags/items/sheet_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/tags/items/sheet_iron.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/tags/items/sheet_steel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/tags/items/sheet_steel.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/createbigcannons/tags/items/stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/createbigcannons/tags/items/stone.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/forge/tags/fluids/molten_bronze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/forge/tags/fluids/molten_bronze.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/forge/tags/fluids/molten_cast_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/forge/tags/fluids/molten_cast_iron.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/forge/tags/fluids/molten_nethersteel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/forge/tags/fluids/molten_nethersteel.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/forge/tags/fluids/molten_steel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/forge/tags/fluids/molten_steel.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/forge/tags/items/ingots/cast_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/forge/tags/items/ingots/cast_iron.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/forge/tags/items/ingots/nethersteel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/forge/tags/items/ingots/nethersteel.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/forge/tags/items/nuggets/bronze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/forge/tags/items/nuggets/bronze.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/forge/tags/items/nuggets/cast_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/forge/tags/items/nuggets/cast_iron.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/forge/tags/items/nuggets/nethersteel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/forge/tags/items/nuggets/nethersteel.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/forge/tags/items/nuggets/steel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/forge/tags/items/nuggets/steel.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/minecraft/tags/blocks/mineable/axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/minecraft/tags/blocks/mineable/axe.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/minecraft/tags/blocks/mineable/pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/minecraft/tags/blocks/mineable/pickaxe.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/minecraft/tags/blocks/mineable/shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/minecraft/tags/blocks/mineable/shovel.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/minecraft/tags/blocks/needs_iron_tool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/minecraft/tags/blocks/needs_iron_tool.json -------------------------------------------------------------------------------- /fabric/src/generated/resources/data/minecraft/tags/blocks/needs_stone_tool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/generated/resources/data/minecraft/tags/blocks/needs_stone_tool.json -------------------------------------------------------------------------------- /fabric/src/main/java/rbasamoyai/createbigcannons/compat/emi/CBCEmiPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/main/java/rbasamoyai/createbigcannons/compat/emi/CBCEmiPlugin.java -------------------------------------------------------------------------------- /fabric/src/main/java/rbasamoyai/createbigcannons/compat/jei/CBCJEI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/main/java/rbasamoyai/createbigcannons/compat/jei/CBCJEI.java -------------------------------------------------------------------------------- /fabric/src/main/java/rbasamoyai/createbigcannons/compat/jei/MeltingCategory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/main/java/rbasamoyai/createbigcannons/compat/jei/MeltingCategory.java -------------------------------------------------------------------------------- /fabric/src/main/java/rbasamoyai/createbigcannons/compat/rei/CBCDisplay.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/main/java/rbasamoyai/createbigcannons/compat/rei/CBCDisplay.java -------------------------------------------------------------------------------- /fabric/src/main/java/rbasamoyai/createbigcannons/compat/rei/CBCREI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/main/java/rbasamoyai/createbigcannons/compat/rei/CBCREI.java -------------------------------------------------------------------------------- /fabric/src/main/java/rbasamoyai/createbigcannons/compat/rei/MeltingCategory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/main/java/rbasamoyai/createbigcannons/compat/rei/MeltingCategory.java -------------------------------------------------------------------------------- /fabric/src/main/java/rbasamoyai/createbigcannons/fabric/CBCClientFabric.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/main/java/rbasamoyai/createbigcannons/fabric/CBCClientFabric.java -------------------------------------------------------------------------------- /fabric/src/main/java/rbasamoyai/createbigcannons/fabric/CBCDataFabric.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/main/java/rbasamoyai/createbigcannons/fabric/CBCDataFabric.java -------------------------------------------------------------------------------- /fabric/src/main/java/rbasamoyai/createbigcannons/fabric/CBCModsFabric.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/main/java/rbasamoyai/createbigcannons/fabric/CBCModsFabric.java -------------------------------------------------------------------------------- /fabric/src/main/java/rbasamoyai/createbigcannons/fabric/ModGroupImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/main/java/rbasamoyai/createbigcannons/fabric/ModGroupImpl.java -------------------------------------------------------------------------------- /fabric/src/main/resources/createbigcannons.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/main/resources/createbigcannons.mixins.json -------------------------------------------------------------------------------- /fabric/src/main/resources/data/trinkets/entity/createbigcannons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/main/resources/data/trinkets/entity/createbigcannons.json -------------------------------------------------------------------------------- /fabric/src/main/resources/data/trinkets/slots/head/face.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/main/resources/data/trinkets/slots/head/face.json -------------------------------------------------------------------------------- /fabric/src/main/resources/data/trinkets/tags/items/head/face.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/main/resources/data/trinkets/tags/items/head/face.json -------------------------------------------------------------------------------- /fabric/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /fabric/src/main/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/fabric/src/main/resources/icon.png -------------------------------------------------------------------------------- /forge/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/build.gradle.kts -------------------------------------------------------------------------------- /forge/gradle.properties: -------------------------------------------------------------------------------- 1 | loom.platform=forge 2 | -------------------------------------------------------------------------------- /forge/src/generated/resources/assets/createbigcannons/blockstates/ap_shell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/assets/createbigcannons/blockstates/ap_shell.json -------------------------------------------------------------------------------- /forge/src/generated/resources/assets/createbigcannons/blockstates/ap_shot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/assets/createbigcannons/blockstates/ap_shot.json -------------------------------------------------------------------------------- /forge/src/generated/resources/assets/createbigcannons/lang/en_ud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/assets/createbigcannons/lang/en_ud.json -------------------------------------------------------------------------------- /forge/src/generated/resources/assets/createbigcannons/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/assets/createbigcannons/lang/en_us.json -------------------------------------------------------------------------------- /forge/src/generated/resources/assets/createbigcannons/models/item/ap_shot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:block/ap_shot" 3 | } -------------------------------------------------------------------------------- /forge/src/generated/resources/assets/createbigcannons/models/item/bag_of_grapeshot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:block/bag_of_grapeshot" 3 | } -------------------------------------------------------------------------------- /forge/src/generated/resources/assets/createbigcannons/models/item/basin_foundry_lid.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:block/basin_foundry_lid" 3 | } -------------------------------------------------------------------------------- /forge/src/generated/resources/assets/createbigcannons/models/item/casting_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:block/casting_sand" 3 | } -------------------------------------------------------------------------------- /forge/src/generated/resources/assets/createbigcannons/models/item/incomplete_steel_screw_breech.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:block/incomplete_steel_screw_breech" 3 | } -------------------------------------------------------------------------------- /forge/src/generated/resources/assets/createbigcannons/models/item/mortar_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:block/mortar_stone" 3 | } -------------------------------------------------------------------------------- /forge/src/generated/resources/assets/createbigcannons/models/item/mortar_stone_projectile.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:block/mortar_stone_projectile" 3 | } -------------------------------------------------------------------------------- /forge/src/generated/resources/assets/createbigcannons/models/item/powder_charge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:block/powder_charge" 3 | } -------------------------------------------------------------------------------- /forge/src/generated/resources/assets/createbigcannons/models/item/ram_head.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:block/ram_head" 3 | } -------------------------------------------------------------------------------- /forge/src/generated/resources/assets/createbigcannons/models/item/solid_shot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:block/solid_shot" 3 | } -------------------------------------------------------------------------------- /forge/src/generated/resources/assets/createbigcannons/models/item/traffic_cone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:block/traffic_cone" 3 | } -------------------------------------------------------------------------------- /forge/src/generated/resources/assets/createbigcannons/models/item/unbored_steel_screw_breech.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:block/unbored_steel_screw_breech" 3 | } -------------------------------------------------------------------------------- /forge/src/generated/resources/assets/createbigcannons/models/item/worm_head.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:block/worm_head" 3 | } -------------------------------------------------------------------------------- /forge/src/generated/resources/assets/createbigcannons/models/item/wrought_iron_drop_mortar_end.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:block/wrought_iron_drop_mortar_end" 3 | } -------------------------------------------------------------------------------- /forge/src/generated/resources/assets/createbigcannons/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/assets/createbigcannons/sounds.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/c/tags/fluids/molten_bronze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/c/tags/fluids/molten_bronze.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/c/tags/fluids/molten_cast_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/c/tags/fluids/molten_cast_iron.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/c/tags/fluids/molten_nethersteel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/c/tags/fluids/molten_nethersteel.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/c/tags/fluids/molten_steel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/c/tags/fluids/molten_steel.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/c/tags/items/bronze_nuggets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/c/tags/items/bronze_nuggets.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/c/tags/items/cast_iron_ingots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/c/tags/items/cast_iron_ingots.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/c/tags/items/cast_iron_nuggets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/c/tags/items/cast_iron_nuggets.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/c/tags/items/ingots/cast_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/c/tags/items/ingots/cast_iron.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/c/tags/items/ingots/nethersteel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/c/tags/items/ingots/nethersteel.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/c/tags/items/nethersteel_ingots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/c/tags/items/nethersteel_ingots.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/c/tags/items/nethersteel_nuggets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/c/tags/items/nethersteel_nuggets.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/c/tags/items/nuggets/bronze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/c/tags/items/nuggets/bronze.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/c/tags/items/nuggets/cast_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/c/tags/items/nuggets/cast_iron.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/c/tags/items/nuggets/nethersteel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/c/tags/items/nuggets/nethersteel.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/c/tags/items/nuggets/steel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/c/tags/items/nuggets/steel.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/c/tags/items/steel_nuggets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/c/tags/items/steel_nuggets.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/create/tags/blocks/safe_nbt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/create/tags/blocks/safe_nbt.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/recipes/ap_shell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/recipes/ap_shell.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/recipes/ap_shot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/recipes/ap_shot.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/recipes/cannon_drill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/recipes/cannon_drill.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/recipes/cannon_mount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/recipes/cannon_mount.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/recipes/casting_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/recipes/casting_sand.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/recipes/fluid_shell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/recipes/fluid_shell.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/recipes/fuze_removal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/recipes/fuze_removal.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/recipes/gas_mask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/recipes/gas_mask.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/recipes/he_shell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/recipes/he_shell.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/recipes/impact_fuze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/recipes/impact_fuze.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/recipes/mortar_stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/recipes/mortar_stone.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/recipes/ram_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/recipes/ram_head.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/recipes/ram_rod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/recipes/ram_rod.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/recipes/shot_balls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/recipes/shot_balls.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/recipes/smoke_shell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/recipes/smoke_shell.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/recipes/solid_shot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/recipes/solid_shot.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/recipes/timed_fuze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/recipes/timed_fuze.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/recipes/tracer_tip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/recipes/tracer_tip.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/recipes/wired_fuze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/recipes/wired_fuze.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/recipes/worm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/recipes/worm.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/recipes/worm_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/recipes/worm_head.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/tags/blocks/concrete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/tags/blocks/concrete.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/tags/blocks/obsidian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/tags/blocks/obsidian.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/tags/items/fuzes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/tags/items/fuzes.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/tags/items/gas_masks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/tags/items/gas_masks.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/tags/items/glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/tags/items/glass.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/tags/items/guncotton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/tags/items/guncotton.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/tags/items/gunpowder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/tags/items/gunpowder.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/createbigcannons/tags/items/stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/createbigcannons/tags/items/stone.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/forge/tags/fluids/molten_bronze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/forge/tags/fluids/molten_bronze.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/forge/tags/fluids/molten_cast_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/forge/tags/fluids/molten_cast_iron.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/forge/tags/fluids/molten_nethersteel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/forge/tags/fluids/molten_nethersteel.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/forge/tags/fluids/molten_steel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/forge/tags/fluids/molten_steel.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/forge/tags/items/ingots/cast_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/forge/tags/items/ingots/cast_iron.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/forge/tags/items/ingots/nethersteel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/forge/tags/items/ingots/nethersteel.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/forge/tags/items/nuggets/bronze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/forge/tags/items/nuggets/bronze.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/forge/tags/items/nuggets/cast_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/forge/tags/items/nuggets/cast_iron.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/forge/tags/items/nuggets/nethersteel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/forge/tags/items/nuggets/nethersteel.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/forge/tags/items/nuggets/steel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/forge/tags/items/nuggets/steel.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/minecraft/tags/blocks/mineable/axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/minecraft/tags/blocks/mineable/axe.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/minecraft/tags/blocks/mineable/shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/minecraft/tags/blocks/mineable/shovel.json -------------------------------------------------------------------------------- /forge/src/generated/resources/data/minecraft/tags/blocks/needs_iron_tool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/generated/resources/data/minecraft/tags/blocks/needs_iron_tool.json -------------------------------------------------------------------------------- /forge/src/main/java/rbasamoyai/createbigcannons/compat/jei/CBCJEI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/java/rbasamoyai/createbigcannons/compat/jei/CBCJEI.java -------------------------------------------------------------------------------- /forge/src/main/java/rbasamoyai/createbigcannons/forge/CBCClientForge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/java/rbasamoyai/createbigcannons/forge/CBCClientForge.java -------------------------------------------------------------------------------- /forge/src/main/java/rbasamoyai/createbigcannons/forge/CBCDataForge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/java/rbasamoyai/createbigcannons/forge/CBCDataForge.java -------------------------------------------------------------------------------- /forge/src/main/java/rbasamoyai/createbigcannons/forge/CBCModsForge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/java/rbasamoyai/createbigcannons/forge/CBCModsForge.java -------------------------------------------------------------------------------- /forge/src/main/java/rbasamoyai/createbigcannons/forge/CBCRemapperForge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/java/rbasamoyai/createbigcannons/forge/CBCRemapperForge.java -------------------------------------------------------------------------------- /forge/src/main/java/rbasamoyai/createbigcannons/forge/ModGroupImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/java/rbasamoyai/createbigcannons/forge/ModGroupImpl.java -------------------------------------------------------------------------------- /forge/src/main/resources/META-INF/mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/META-INF/mods.toml -------------------------------------------------------------------------------- /forge/src/main/resources/createbigcannons.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/createbigcannons.mixins.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/curios/tags/items/head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/curios/tags/items/head.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_bars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_bars.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_bookshelf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_bookshelf.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_button.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_chest.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_cube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_cube.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_door.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_fancy_rail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_fancy_rail.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_fence.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_fence_gate.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_flower_pot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_flower_pot.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_gate.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_half_slope.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_half_slope.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_iron_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_iron_door.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_iron_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_iron_gate.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_item_frame.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_item_frame.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_ladder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_ladder.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_lever.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_lever.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_mini_cube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_mini_cube.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_pane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_pane.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_panel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_panel.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_pillar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_pillar.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_post.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_prism.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_prism.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_pyramid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_pyramid.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_rail_slope.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_rail_slope.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_sign.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_slab.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_slab_edge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_slab_edge.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_slope.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_slope.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_slope_edge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_slope_edge.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_slope_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_slope_slab.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_soul_torch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_soul_torch.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_stairs.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_target.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_torch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_torch.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_trapdoor.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_tube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_tube.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_wall.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_wall_board.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_wall_board.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_wall_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_wall_sign.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/framedblocks/block_armor/framed_wall_torch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/data/framedblocks/block_armor/framed_wall_torch.json -------------------------------------------------------------------------------- /forge/src/main/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/icon.png -------------------------------------------------------------------------------- /forge/src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/forge/src/main/resources/pack.mcmeta -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/gradlew.bat -------------------------------------------------------------------------------- /promotional/ammo_and_cannons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/promotional/ammo_and_cannons.png -------------------------------------------------------------------------------- /promotional/autocannon_firing_flak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/promotional/autocannon_firing_flak.png -------------------------------------------------------------------------------- /promotional/casemate_gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/promotional/casemate_gun.png -------------------------------------------------------------------------------- /promotional/inside_casemate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/promotional/inside_casemate.png -------------------------------------------------------------------------------- /promotional/translationguide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/promotional/translationguide1.png -------------------------------------------------------------------------------- /promotional/translationguide2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/promotional/translationguide2.png -------------------------------------------------------------------------------- /promotional/translationguide3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/promotional/translationguide3.png -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/CBCClientCommon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/CBCClientCommon.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/CBCCommonEvents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/CBCCommonEvents.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/CBCTags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/CBCTags.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/CreateBigCannons.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/CreateBigCannons.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/ModGroup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/ModGroup.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/base/BlockStatePredicateHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/base/BlockStatePredicateHelper.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/base/CBCDefaultStress.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/base/CBCDefaultStress.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/base/CBCRegistries.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/base/CBCRegistries.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/base/CBCTooltip.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/base/CBCTooltip.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/base/ItemStackServerData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/base/ItemStackServerData.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/base/LazySupplier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/base/LazySupplier.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/base/PartialBlockDamageManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/base/PartialBlockDamageManager.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/base/PoleContraption.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/base/PoleContraption.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/base/PoleMoverBlockEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/base/PoleMoverBlockEntity.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/base/PropertySetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/base/PropertySetter.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/base/SimpleValueContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/base/SimpleValueContainer.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/base/tag_utils/ForcedTagEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/base/tag_utils/ForcedTagEntry.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/cannon_loading/CannonLoaderGen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/cannon_loading/CannonLoaderGen.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/cannon_loading/RamHeadBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/cannon_loading/RamHeadBlock.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/cannon_loading/WormHeadBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/cannon_loading/WormHeadBlock.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/cannons/CannonBehavior.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/cannons/CannonBehavior.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/cannons/ICannonBlockEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/cannons/ICannonBlockEntity.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/cannons/ItemCannonBehavior.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/cannons/ItemCannonBehavior.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/compat/copycats/CopycatsCompat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/compat/copycats/CopycatsCompat.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/config/CBCCfgCannons.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/config/CBCCfgCannons.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/config/CBCCfgClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/config/CBCCfgClient.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/config/CBCCfgCommon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/config/CBCCfgCommon.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/config/CBCCfgCrafting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/config/CBCCfgCrafting.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/config/CBCCfgFailure.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/config/CBCCfgFailure.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/config/CBCCfgKinetics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/config/CBCCfgKinetics.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/config/CBCCfgMunitions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/config/CBCCfgMunitions.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/config/CBCCfgServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/config/CBCCfgServer.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/config/CBCCfgStress.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/config/CBCCfgStress.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/config/CBCConfigBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/config/CBCConfigBase.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/config/CBCConfigs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/config/CBCConfigs.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/crafting/BlockRecipe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/crafting/BlockRecipe.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/crafting/BlockRecipeFinder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/crafting/BlockRecipeFinder.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/crafting/BlockRecipeIngredient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/crafting/BlockRecipeIngredient.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/crafting/BlockRecipeSerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/crafting/BlockRecipeSerializer.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/crafting/BlockRecipeType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/crafting/BlockRecipeType.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/crafting/BlockRecipesManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/crafting/BlockRecipesManager.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/crafting/WandActionable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/crafting/WandActionable.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/crafting/boring/CannonDrillGen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/crafting/boring/CannonDrillGen.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/crafting/boring/DrillBitBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/crafting/boring/DrillBitBlock.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/crafting/foundry/MeltingRecipe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/crafting/foundry/MeltingRecipe.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/crafting/welding/WeldableBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/crafting/welding/WeldableBlock.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/datagen/CBCDatagenCommon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/datagen/CBCDatagenCommon.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/datagen/CBCDatagenPlatform.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/datagen/CBCDatagenPlatform.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/datagen/assets/CBCLangGen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/datagen/assets/CBCLangGen.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/datagen/loot/BoringScrapLoot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/datagen/loot/BoringScrapLoot.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/datagen/values/CBCDataProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/datagen/values/CBCDataProvider.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/effects/CBCScreenShakeHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/effects/CBCScreenShakeHandler.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/equipment/gas_mask/GasMaskItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/equipment/gas_mask/GasMaskItem.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/index/CBCAutocannonMaterials.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/index/CBCAutocannonMaterials.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/index/CBCBigCannonMaterials.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/index/CBCBigCannonMaterials.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/index/CBCBlockEntities.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/index/CBCBlockEntities.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/index/CBCBlockPartials.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/index/CBCBlockPartials.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/index/CBCBlocks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/index/CBCBlocks.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/index/CBCCTTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/index/CBCCTTypes.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/index/CBCChecks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/index/CBCChecks.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/index/CBCContraptionTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/index/CBCContraptionTypes.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/index/CBCDamageTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/index/CBCDamageTypes.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/index/CBCDisplaySources.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/index/CBCDisplaySources.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/index/CBCEntityTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/index/CBCEntityTypes.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/index/CBCFluids.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/index/CBCFluids.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/index/CBCGuiTextures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/index/CBCGuiTextures.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/index/CBCItems.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/index/CBCItems.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/index/CBCMenuTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/index/CBCMenuTypes.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/index/CBCParticleTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/index/CBCParticleTypes.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/index/CBCRecipeTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/index/CBCRecipeTypes.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/index/CBCRenderTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/index/CBCRenderTypes.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/index/CBCRenderingParts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/index/CBCRenderingParts.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/index/CBCShapes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/index/CBCShapes.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/index/CBCSoundEvents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/index/CBCSoundEvents.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/index/CBCSpriteShifts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/index/CBCSpriteShifts.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/index/fluid_utils/FluidBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/index/fluid_utils/FluidBuilder.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/index/fluid_utils/FluidGetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/index/fluid_utils/FluidGetter.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/mixin/ArmorStandMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/mixin/ArmorStandMixin.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/mixin/EntityMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/mixin/EntityMixin.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/mixin/ExplosionMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/mixin/ExplosionMixin.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/mixin/LivingEntityMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/mixin/LivingEntityMixin.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/mixin/PlayerMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/mixin/PlayerMixin.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/mixin/ServerEntityMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/mixin/ServerEntityMixin.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/mixin/ServerLevelMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/mixin/ServerLevelMixin.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/mixin/TagAppenderAccessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/mixin/TagAppenderAccessor.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/mixin/client/CameraAccessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/mixin/client/CameraAccessor.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/mixin/client/EntityClientMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/mixin/client/EntityClientMixin.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/mixin/client/HumanoidPoseMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/mixin/client/HumanoidPoseMixin.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/mixin/client/LightingMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/mixin/client/LightingMixin.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/mixin/client/SoundEngineMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/mixin/client/SoundEngineMixin.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/multiloader/EnvExecute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/multiloader/EnvExecute.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/multiloader/IndexPlatform.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/multiloader/IndexPlatform.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/multiloader/NetworkPlatform.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/multiloader/NetworkPlatform.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/multiloader/ParticlesPlatform.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/multiloader/ParticlesPlatform.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/multiloader/PonderPlatform.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/multiloader/PonderPlatform.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/munitions/CannonDamageSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/munitions/CannonDamageSource.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/munitions/FuzedItemMunition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/munitions/FuzedItemMunition.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/munitions/GasCloudEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/munitions/GasCloudEntity.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/munitions/ImpactExplosion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/munitions/ImpactExplosion.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/munitions/ProjectileContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/munitions/ProjectileContext.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/munitions/ShellExplosion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/munitions/ShellExplosion.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/munitions/fuzes/FuzeItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/munitions/fuzes/FuzeItem.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/munitions/fuzes/ImpactFuzeItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/munitions/fuzes/ImpactFuzeItem.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/munitions/fuzes/TimedFuzeItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/munitions/fuzes/TimedFuzeItem.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/munitions/fuzes/WiredFuzeItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/munitions/fuzes/WiredFuzeItem.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/network/CBCClientHandlers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/network/CBCClientHandlers.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/network/CBCRootNetwork.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/network/CBCRootNetwork.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/network/RootPacket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/network/RootPacket.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/ponder/CBCPonderPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/ponder/CBCPonderPlugin.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/ponder/CBCPonderScenes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/ponder/CBCPonderScenes.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/ponder/CBCPonderTags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/ponder/CBCPonderTags.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/ponder/CannonCraftingScenes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/ponder/CannonCraftingScenes.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/ponder/CannonKineticsScenes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/ponder/CannonKineticsScenes.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/ponder/CannonLoadingScenes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/ponder/CannonLoadingScenes.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/ponder/CannonMountScenes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/ponder/CannonMountScenes.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/remix/CBCExplodableBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/remix/CBCExplodableBlock.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/remix/ContraptionRemix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/remix/ContraptionRemix.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/remix/CustomBlockDamageDisplay.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/remix/CustomBlockDamageDisplay.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/remix/CustomExplosion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/remix/CustomExplosion.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/remix/EffectsRemix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/remix/EffectsRemix.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/remix/HasCannonLightingVolume.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/remix/HasCannonLightingVolume.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/remix/HasFragileContraption.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/remix/HasFragileContraption.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/remix/LightingRemix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/remix/LightingRemix.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/remix/RotationPropagatorRemix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/remix/RotationPropagatorRemix.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/utils/CBCRegistryUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/utils/CBCRegistryUtils.java -------------------------------------------------------------------------------- /src/main/java/rbasamoyai/createbigcannons/utils/CBCUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/java/rbasamoyai/createbigcannons/utils/CBCUtils.java -------------------------------------------------------------------------------- /src/main/resources/architectury.common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/architectury.common.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/lang/de_de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/lang/de_de.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/lang/es_es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/lang/es_es.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/lang/fi_fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/lang/fi_fi.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/lang/fr_fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/lang/fr_fr.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/lang/ja_jp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/lang/ja_jp.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/lang/ko_kr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/lang/ko_kr.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/lang/nl_nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/lang/nl_nl.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/lang/pl_pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/lang/pl_pl.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/lang/ru_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/lang/ru_ru.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/lang/uk_ua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/lang/uk_ua.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/lang/zh_cn.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/models/block/autocannon/seat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/models/block/autocannon/seat.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/models/block/cannon_barrel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/models/block/cannon_barrel.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/models/block/cannon_drill_bit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/models/block/cannon_drill_bit.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/models/block/cannon_end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/models/block/cannon_end.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/models/block/drop_mortar_end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/models/block/drop_mortar_end.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/models/block/fuze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/models/block/fuze.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/models/block/gas_mask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/models/block/gas_mask.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/models/block/powder_charge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/models/block/powder_charge.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/models/block/projectile_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/models/block/projectile_block.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/models/block/ram_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/models/block/ram_head.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/models/block/screw_breech.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/models/block/screw_breech.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/models/block/sliding_breech.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/models/block/sliding_breech.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/models/block/traffic_cone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/models/block/traffic_cone.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/models/block/worm_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/models/block/worm_head.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/models/item/cannon_builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/models/item/cannon_builder.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/models/item/cannon_drill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/models/item/cannon_drill.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/models/item/cannon_loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/models/item/cannon_loader.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/models/item/cannon_mount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/models/item/cannon_mount.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/models/item/cannon_welder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/models/item/cannon_welder.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/models/item/partially_assembled_machine_gun_round.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "createbigcannons:item/empty_machine_gun_round" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/models/item/ram_rod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/models/item/ram_rod.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/models/item/screw_lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/models/item/screw_lock.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/models/item/worm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/models/item/worm.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/models/item/yaw_controller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/models/item/yaw_controller.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/autocannon_plume.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/big_cannon_plume.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/block.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/cannon_blast_wave.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/cannon_smoke.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/particles/cannon_smoke.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/debris_matter.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/debris_smoke.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/particles/debris_smoke.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/debris_smoke_burst.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/drop_mortar_plume.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/flak_cloud.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/flak_smoke.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/particles/flak_smoke.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/fluid_blob.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/fluid_cloud.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/gas_cloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/particles/gas_cloud.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/glass_burst.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/glass_shard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/particles/glass_shard.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/leaf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/particles/leaf.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/leaf_burst.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/projectile_splash.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/quick_firing_breech_smoke.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/shell_blast_wave.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/shell_explosion_cloud.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/shrapnel_cloud.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/shrapnel_smoke.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/particles/shrapnel_smoke.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/smoke_shell_smoke.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/particles/smoke_shell_smoke.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/spark.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/spark_burst.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/splash_spray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/particles/splash_spray.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/splinter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/particles/splinter.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/splinter_burst.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/particles/trail_smoke.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/particles/trail_smoke.json -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/ponder/munitions/cannon_loads.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/ponder/munitions/cannon_loads.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/shaders/core/splinter_particle.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/shaders/core/splinter_particle.fsh -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/shaders/core/splinter_particle.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/shaders/core/splinter_particle.vsh -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/sounds/autocannon_round_flyby.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/sounds/autocannon_round_flyby.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/sounds/cartridge_extract.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/sounds/cartridge_extract.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/sounds/fire_autocannon.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/sounds/fire_autocannon.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/sounds/fire_big_cannon.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/sounds/fire_big_cannon.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/sounds/fire_drop_mortar.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/sounds/fire_drop_mortar.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/sounds/fire_drop_mortar1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/sounds/fire_drop_mortar1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/sounds/fire_machine_gun.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/sounds/fire_machine_gun.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/sounds/flak_round_explosion.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/sounds/flak_round_explosion.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/sounds/fluid_shell_explosion.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/sounds/fluid_shell_explosion.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/sounds/machine_gun_round_flyby.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/sounds/machine_gun_round_flyby.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/sounds/mortar_stone_explode.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/sounds/mortar_stone_explode.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/sounds/mortar_stone_explode1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/sounds/mortar_stone_explode1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/sounds/mortar_stone_explode2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/sounds/mortar_stone_explode2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/sounds/projectile_splash.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/sounds/projectile_splash.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/sounds/projectile_splash1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/sounds/projectile_splash1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/sounds/shell_explosion.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/sounds/shell_explosion.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/sounds/shell_explosion1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/sounds/shell_explosion1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/sounds/shell_explosion2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/sounds/shell_explosion2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/sounds/shell_flying.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/sounds/shell_flying.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/sounds/wood_splinters.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/sounds/wood_splinters.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/sounds/wood_splinters1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/sounds/wood_splinters1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/sounds/wood_splinters2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/sounds/wood_splinters2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/sounds/wood_splinters3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/sounds/wood_splinters3.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/block/cannon_cast_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/block/cannon_cast_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/block/cast_iron_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/block/cast_iron_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/block/cast_mould.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/block/cast_mould.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/block/casting_sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/block/casting_sand.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/block/fuze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/block/fuze.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/block/gas_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/block/gas_mask.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/block/powder_charge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/block/powder_charge.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/block/ram_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/block/ram_head.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/block/traffic_cone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/block/traffic_cone.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/block/worm_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/block/worm_head.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/entity/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/entity/color.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/entity/shrapnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/entity/shrapnel.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/entity/tracer_glow0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/entity/tracer_glow0.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/entity/tracer_glow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/entity/tracer_glow1.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/entity/tracer_glow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/entity/tracer_glow2.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/entity/tracer_glow3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/entity/tracer_glow3.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/gui/backgrounds1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/gui/backgrounds1.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/gui/backgrounds2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/gui/backgrounds2.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/gui/jei_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/gui/jei_icons.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/item/bronze_scrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/item/bronze_scrap.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/item/cannon_welder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/item/cannon_welder.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/item/cast_iron_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/item/cast_iron_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/item/cast_iron_nugget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/item/cast_iron_nugget.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/item/congealed_nitro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/item/congealed_nitro.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/item/fuze_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/item/fuze_base.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/item/gas_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/item/gas_mask.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/item/guncotton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/item/guncotton.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/item/gunpowder_pinch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/item/gunpowder_pinch.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/item/hardened_nitro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/item/hardened_nitro.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/item/impact_fuze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/item/impact_fuze.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/item/nitropowder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/item/nitropowder.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/item/packed_guncotton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/item/packed_guncotton.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/item/packed_gunpowder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/item/packed_gunpowder.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/item/proximity_fuze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/item/proximity_fuze.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/item/recoil_spring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/item/recoil_spring.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/item/shot_balls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/item/shot_balls.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/item/spring_wire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/item/spring_wire.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/item/steel_scrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/item/steel_scrap.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/item/timed_fuze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/item/timed_fuze.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/item/tracer_slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/item/tracer_slot.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/item/tracer_tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/item/tracer_tip.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/item/wired_fuze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/item/wired_fuze.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/misc/gas_mask_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/misc/gas_mask_overlay.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/particle/flak_smoke0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/particle/flak_smoke0.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/particle/flak_smoke1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/particle/flak_smoke1.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/particle/flak_smoke2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/particle/flak_smoke2.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/particle/flak_smoke3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/particle/flak_smoke3.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/particle/flak_smoke4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/particle/flak_smoke4.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/particle/flak_smoke5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/particle/flak_smoke5.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/particle/flak_smoke6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/particle/flak_smoke6.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/particle/flak_smoke7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/particle/flak_smoke7.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/particle/glass_shard0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/particle/glass_shard0.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/particle/glass_shard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/particle/glass_shard1.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/particle/glass_shard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/particle/glass_shard2.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/particle/glass_shard3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/particle/glass_shard3.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/particle/leaf0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/particle/leaf0.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/particle/leaf1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/particle/leaf1.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/particle/leaf2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/particle/leaf2.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/particle/leaf3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/particle/leaf3.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/particle/splinter0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/particle/splinter0.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/particle/splinter1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/particle/splinter1.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/particle/splinter2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/particle/splinter2.png -------------------------------------------------------------------------------- /src/main/resources/assets/createbigcannons/textures/particle/splinter3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/createbigcannons/textures/particle/splinter3.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/atlases/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/minecraft/atlases/blocks.json -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/block_hit_effects/block/tags/leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/assets/minecraft/block_hit_effects/block/tags/leaves.json -------------------------------------------------------------------------------- /src/main/resources/createbigcannons-common.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/createbigcannons-common.mixins.json -------------------------------------------------------------------------------- /src/main/resources/createbigcannons.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/createbigcannons.accesswidener -------------------------------------------------------------------------------- /src/main/resources/data/c/fluid_casting_time/tags/molten_bronze.json: -------------------------------------------------------------------------------- 1 | { 2 | "casting_time": 2400 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/data/c/fluid_casting_time/tags/molten_cast_iron.json: -------------------------------------------------------------------------------- 1 | { 2 | "casting_time": 2400 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/data/c/fluid_casting_time/tags/molten_steel.json: -------------------------------------------------------------------------------- 1 | { 2 | "casting_time": 3600 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_beam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_beam.json -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_block.json -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_board.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_board.json -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_byte.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_byte.json -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_cogwheel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_cogwheel.json -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_fence.json -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_fluid_pipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_fluid_pipe.json -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_glass_fluid_pipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_glass_fluid_pipe.json -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_half_layer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_half_layer.json -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_half_panel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_half_panel.json -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_iron_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_iron_trapdoor.json -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_ladder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_ladder.json -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_large_cogwheel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_large_cogwheel.json -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_layer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_layer.json -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_shaft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_shaft.json -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_slab.json -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_slice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_slice.json -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_slope.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_slope.json -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_slope_layer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_slope_layer.json -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_stairs.json -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_stone_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_stone_button.json -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_trapdoor.json -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_vertical_slice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_vertical_slice.json -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_vertical_slope.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_vertical_slope.json -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_vertical_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_vertical_stairs.json -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_vertical_step.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_vertical_step.json -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_wall.json -------------------------------------------------------------------------------- /src/main/resources/data/copycats/block_armor/copycat_wooden_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/copycats/block_armor/copycat_wooden_button.json -------------------------------------------------------------------------------- /src/main/resources/data/create/block_armor/copycat_panel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/create/block_armor/copycat_panel.json -------------------------------------------------------------------------------- /src/main/resources/data/create/block_armor/copycat_step.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/create/block_armor/copycat_step.json -------------------------------------------------------------------------------- /src/main/resources/data/create/block_armor/industrial_iron_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/create/block_armor/industrial_iron_block.json -------------------------------------------------------------------------------- /src/main/resources/data/create/block_armor/item_vault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/create/block_armor/item_vault.json -------------------------------------------------------------------------------- /src/main/resources/data/create/fluid_drag/chocolate.json: -------------------------------------------------------------------------------- 1 | { 2 | "fluid_drag": 30 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/data/create/fluid_drag/honey.json: -------------------------------------------------------------------------------- 1 | { 2 | "fluid_drag": 60 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/data/createbigcannons/big_cannon_breech_strength/bronze_quickfiring_breech.json: -------------------------------------------------------------------------------- 1 | { 2 | "breech_strength": 2 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/data/createbigcannons/big_cannon_breech_strength/bronze_sliding_breech.json: -------------------------------------------------------------------------------- 1 | { 2 | "breech_strength": 4 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/data/createbigcannons/big_cannon_breech_strength/cast_iron_quickfiring_breech.json: -------------------------------------------------------------------------------- 1 | { 2 | "breech_strength": 2 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/data/createbigcannons/big_cannon_breech_strength/cast_iron_sliding_breech.json: -------------------------------------------------------------------------------- 1 | { 2 | "breech_strength": 2 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/data/createbigcannons/big_cannon_breech_strength/incomplete_bronze_sliding_breech.json: -------------------------------------------------------------------------------- 1 | { 2 | "breech_strength": 4 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/data/createbigcannons/big_cannon_breech_strength/incomplete_cast_iron_sliding_breech.json: -------------------------------------------------------------------------------- 1 | { 2 | "breech_strength": 2 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/data/createbigcannons/big_cannon_breech_strength/incomplete_steel_sliding_breech.json: -------------------------------------------------------------------------------- 1 | { 2 | "breech_strength": 4 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/data/createbigcannons/big_cannon_breech_strength/nethersteel_screw_breech.json: -------------------------------------------------------------------------------- 1 | { 2 | "breech_strength": 8 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/data/createbigcannons/big_cannon_breech_strength/steel_quickfiring_breech.json: -------------------------------------------------------------------------------- 1 | { 2 | "breech_strength": 2 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/data/createbigcannons/big_cannon_breech_strength/steel_screw_breech.json: -------------------------------------------------------------------------------- 1 | { 2 | "breech_strength": 6 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/data/createbigcannons/big_cannon_breech_strength/steel_sliding_breech.json: -------------------------------------------------------------------------------- 1 | { 2 | "breech_strength": 4 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/data/createbigcannons/big_cannon_breech_strength/unbored_bronze_sliding_breech.json: -------------------------------------------------------------------------------- 1 | { 2 | "breech_strength": 4 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/data/createbigcannons/big_cannon_breech_strength/unbored_cast_iron_sliding_breech.json: -------------------------------------------------------------------------------- 1 | { 2 | "breech_strength": 2 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/data/createbigcannons/big_cannon_breech_strength/unbored_steel_sliding_breech.json: -------------------------------------------------------------------------------- 1 | { 2 | "breech_strength": 4 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/data/createbigcannons/block_armor/tags/concrete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/createbigcannons/block_armor/tags/concrete.json -------------------------------------------------------------------------------- /src/main/resources/data/createbigcannons/block_armor/tags/netherrack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/createbigcannons/block_armor/tags/netherrack.json -------------------------------------------------------------------------------- /src/main/resources/data/createbigcannons/block_armor/tags/obsidian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/createbigcannons/block_armor/tags/obsidian.json -------------------------------------------------------------------------------- /src/main/resources/data/createbigcannons/block_armor/tags/sandstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/createbigcannons/block_armor/tags/sandstone.json -------------------------------------------------------------------------------- /src/main/resources/data/createbigcannons/damage_type/cannon_projectile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/createbigcannons/damage_type/cannon_projectile.json -------------------------------------------------------------------------------- /src/main/resources/data/createbigcannons/damage_type/flak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/createbigcannons/damage_type/flak.json -------------------------------------------------------------------------------- /src/main/resources/data/createbigcannons/damage_type/grapeshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/createbigcannons/damage_type/grapeshot.json -------------------------------------------------------------------------------- /src/main/resources/data/createbigcannons/damage_type/machine_gun_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/createbigcannons/damage_type/machine_gun_fire.json -------------------------------------------------------------------------------- /src/main/resources/data/createbigcannons/damage_type/molten_metal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/createbigcannons/damage_type/molten_metal.json -------------------------------------------------------------------------------- /src/main/resources/data/createbigcannons/damage_type/shrapnel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/createbigcannons/damage_type/shrapnel.json -------------------------------------------------------------------------------- /src/main/resources/data/createbigcannons/damage_type/traffic_cone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/createbigcannons/damage_type/traffic_cone.json -------------------------------------------------------------------------------- /src/main/resources/data/createbigcannons/fluid_casting_time/molten_nethersteel.json: -------------------------------------------------------------------------------- 1 | { 2 | "casting_time": 6000 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/data/forge/fluid_casting_time/tags/molten_bronze.json: -------------------------------------------------------------------------------- 1 | { 2 | "casting_time": 2400 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/data/forge/fluid_casting_time/tags/molten_cast_iron.json: -------------------------------------------------------------------------------- 1 | { 2 | "casting_time": 2400 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/data/forge/fluid_casting_time/tags/molten_steel.json: -------------------------------------------------------------------------------- 1 | { 2 | "casting_time": 3600 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/block_armor/crying_obsidian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/minecraft/block_armor/crying_obsidian.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/block_armor/iron_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/minecraft/block_armor/iron_block.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/block_armor/tags/anvil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/minecraft/block_armor/tags/anvil.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/block_armor/tags/terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/minecraft/block_armor/tags/terracotta.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/block_impact_transforms/crimson_nylium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/minecraft/block_impact_transforms/crimson_nylium.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/block_impact_transforms/cut_sandstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/minecraft/block_impact_transforms/cut_sandstone.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/block_impact_transforms/deepslate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/minecraft/block_impact_transforms/deepslate.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/block_impact_transforms/dirt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/minecraft/block_impact_transforms/dirt.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/block_impact_transforms/grass_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/minecraft/block_impact_transforms/grass_block.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/block_impact_transforms/infested_stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/minecraft/block_impact_transforms/infested_stone.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/block_impact_transforms/mycelium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/minecraft/block_impact_transforms/mycelium.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/block_impact_transforms/nether_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/minecraft/block_impact_transforms/nether_bricks.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/block_impact_transforms/podzol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/minecraft/block_impact_transforms/podzol.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/block_impact_transforms/rooted_dirt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/minecraft/block_impact_transforms/rooted_dirt.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/block_impact_transforms/smooth_basalt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/minecraft/block_impact_transforms/smooth_basalt.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/block_impact_transforms/smooth_stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/minecraft/block_impact_transforms/smooth_stone.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/block_impact_transforms/soul_soil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/minecraft/block_impact_transforms/soul_soil.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/block_impact_transforms/stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/minecraft/block_impact_transforms/stone.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/block_impact_transforms/stone_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/minecraft/block_impact_transforms/stone_bricks.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/block_impact_transforms/stone_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/minecraft/block_impact_transforms/stone_slab.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/block_impact_transforms/stone_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/minecraft/block_impact_transforms/stone_stairs.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/block_impact_transforms/warped_nylium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/minecraft/block_impact_transforms/warped_nylium.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/dimension_munition_properties/the_end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/minecraft/dimension_munition_properties/the_end.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/fluid_drag/lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "fluid_drag": 60 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/fluid_drag/water.json: -------------------------------------------------------------------------------- 1 | { 2 | "fluid_drag": 30 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/damage_type/is_explosion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/minecraft/tags/damage_type/is_explosion.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/damage_type/is_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/src/main/resources/data/minecraft/tags/damage_type/is_fire.json -------------------------------------------------------------------------------- /stonecutter.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/stonecutter.gradle.kts -------------------------------------------------------------------------------- /versions/1.20.1/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cannoneers-of-Create/CreateBigCannons/HEAD/versions/1.20.1/gradle.properties --------------------------------------------------------------------------------