├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── addition_or_enhancement.yml │ └── bug_report.yml └── workflows │ ├── build.yml │ └── publish.yml ├── .gitignore ├── CONTRIBUTE.md ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src └── main ├── java └── org │ └── infernalstudios │ └── infernalexp │ ├── InfernalExpansion.java │ ├── access │ └── AbstractArrowEntityAccess.java │ ├── blockentities │ └── LuminousFungusBlockEntity.java │ ├── blocks │ ├── BasaltIronOreBlock.java │ ├── BasalticMagmaBlock.java │ ├── BlockItemBase.java │ ├── BuriedBoneBlock.java │ ├── CrumblingBlackstoneBlock.java │ ├── DullthornsBlock.java │ ├── DullthornsBlockBlock.java │ ├── DullthornsBlockItem.java │ ├── FungusCapBlock.java │ ├── GlowCampfireBlock.java │ ├── GlowFireBlock.java │ ├── GlowSandBlock.java │ ├── GlowTorchBlock.java │ ├── GlowWallTorchBlock.java │ ├── GlowdustBlock.java │ ├── HorizontalBushBlock.java │ ├── LightUpPressurePlateBlock.java │ ├── LuminousFungusBlock.java │ ├── NetherCarpetBlock.java │ ├── NetherrackPathBlock.java │ ├── PlantedQuartzBlock.java │ ├── ShroomlightFungusBlock.java │ ├── SoulSoilPathBlock.java │ ├── TrappedGlowSandBlock.java │ └── VerticalSlabBlock.java │ ├── capabilities │ ├── IWhipUpdate.java │ └── WhipUpdate.java │ ├── client │ ├── DynamicLightingHandler.java │ ├── InfernalExpansionClient.java │ ├── entity │ │ ├── model │ │ │ ├── BasaltGiantModel.java │ │ │ ├── BlackstoneDwarfModel.java │ │ │ ├── BlindsightModel.java │ │ │ ├── CerobeetleModel.java │ │ │ ├── EmbodyModel.java │ │ │ ├── GlowsilkMothModel.java │ │ │ ├── GlowsquitoModel.java │ │ │ ├── PyrnoModel.java │ │ │ ├── ShroomloinModel.java │ │ │ ├── VolineModel.java │ │ │ └── WarpbeetleModel.java │ │ └── render │ │ │ ├── BasaltGiantGlowLayer.java │ │ │ ├── BasaltGiantRenderer.java │ │ │ ├── BlackstoneDwarfGlowLayer.java │ │ │ ├── BlackstoneDwarfRenderer.java │ │ │ ├── BlindsightGlowLayer.java │ │ │ ├── BlindsightRenderer.java │ │ │ ├── CerobeetleRenderer.java │ │ │ ├── EmbodyGlowLayer.java │ │ │ ├── EmbodyRenderer.java │ │ │ ├── GlowsilkMothGlowLayer.java │ │ │ ├── GlowsilkMothRenderer.java │ │ │ ├── GlowsquitoGlowLayer.java │ │ │ ├── GlowsquitoRenderer.java │ │ │ ├── InfernalPaintingRenderer.java │ │ │ ├── PyrnoRenderer.java │ │ │ ├── ShroomloinDecorLayer.java │ │ │ ├── ShroomloinGlowLayer.java │ │ │ ├── ShroomloinRenderer.java │ │ │ ├── VolineGlowLayer.java │ │ │ ├── VolineRenderer.java │ │ │ └── WarpbeetleRenderer.java │ ├── gui │ │ └── InfectionHeartOverlay.java │ ├── particle │ │ ├── GlowstoneSparkleParticle.java │ │ └── InfectionParticle.java │ └── sound │ │ ├── GlowsquitoFlightSound.java │ │ └── LoopingSound.java │ ├── config │ ├── ClientConfig.java │ ├── CommonConfig.java │ ├── ConfigHelper.java │ ├── ConfigHolder.java │ ├── InfernalExpansionConfig.java │ └── gui │ │ ├── screens │ │ ├── ClientConfigScreen.java │ │ ├── ConfigScreen.java │ │ ├── IESettingsScreen.java │ │ ├── MiscellaneousScreen.java │ │ ├── MobInteractionsScreen.java │ │ └── MobSpawningScreen.java │ │ └── widgets │ │ ├── DoubleRangeOption.java │ │ ├── TextField.java │ │ ├── TextFieldOption.java │ │ ├── Title.java │ │ └── TitleOption.java │ ├── data │ ├── SpawnrateManager.java │ └── VolineEatTable.java │ ├── effects │ ├── EffectBase.java │ └── InfectionEffect.java │ ├── entities │ ├── AscusBombEntity.java │ ├── BasaltGiantEntity.java │ ├── BlackstoneDwarfEntity.java │ ├── BlindsightEntity.java │ ├── CerobeetleEntity.java │ ├── EmbodyEntity.java │ ├── GlowsilkMothEntity.java │ ├── GlowsquitoEntity.java │ ├── IBucketable.java │ ├── IResizable.java │ ├── InfernalPaintingEntity.java │ ├── PyrnoEntity.java │ ├── ShroomloinEntity.java │ ├── ThrowableBrickEntity.java │ ├── ThrowableFireChargeEntity.java │ ├── ThrowableMagmaCreamEntity.java │ ├── ThrowableNetherBrickEntity.java │ ├── VolineEntity.java │ ├── WarpbeetleEntity.java │ └── ai │ │ ├── AvoidBlockGoal.java │ │ ├── EatItemsGoal.java │ │ ├── ShroomloinSwellGoal.java │ │ ├── TargetWithEffectGoal.java │ │ └── TeleportPanicGoal.java │ ├── events │ ├── ClientEvents.java │ ├── MiscEvents.java │ ├── MobEvents.java │ ├── PostRightClickBlockEvent.java │ └── WorldEvents.java │ ├── init │ ├── IEBiomeModifiers.java │ ├── IEBiomes.java │ ├── IEBlockEntityTypes.java │ ├── IEBlocks.java │ ├── IEBrewingRecipes.java │ ├── IECapabilities.java │ ├── IECarvers.java │ ├── IECommands.java │ ├── IECompostables.java │ ├── IEConfiguredFeatures.java │ ├── IEEffects.java │ ├── IEEntityClassifications.java │ ├── IEEntityTypes.java │ ├── IEFeatures.java │ ├── IEFireTypes.java │ ├── IEItemTiers.java │ ├── IEItems.java │ ├── IELootModifiers.java │ ├── IEPaintings.java │ ├── IEParticleTypes.java │ ├── IEPlacedFeatures.java │ ├── IEPotions.java │ ├── IEProcessors.java │ ├── IEShroomloinTypes.java │ ├── IESoundEvents.java │ ├── IEStructurePools.java │ ├── IEStructureSets.java │ ├── IEStructureTypes.java │ ├── IEStructures.java │ ├── IESurfaceRules.java │ └── IETags.java │ ├── items │ ├── AscusBombItem.java │ ├── EntityBucketItem.java │ ├── GlowcoalItem.java │ ├── GlowsilkBowItem.java │ ├── IFuel.java │ ├── InfernalPaintingItem.java │ ├── ItemBase.java │ ├── SlurpItem.java │ ├── SlurpSoupItem.java │ └── WhipItem.java │ ├── mixin │ ├── client │ │ ├── MixinClientPacketListener.java │ │ ├── MixinItemInHandRenderer.java │ │ ├── MixinItemProperties.java │ │ ├── MixinMultiPlayerGameMode.java │ │ ├── MixinPaintingSpriteUploader.java │ │ ├── MixinPlayerRenderer.java │ │ └── OptionInstanceAccessor.java │ ├── common │ │ ├── MixinAbstractArrowEntity.java │ │ ├── MixinArrowEntity.java │ │ ├── MixinBubbleColumnBlock.java │ │ ├── MixinMagmaCubeEntity.java │ │ ├── MixinMinecraftServer.java │ │ ├── MixinMultiNoiseBiomeSourcePreset.java │ │ ├── MixinServerPlayerGameMode.java │ │ ├── MixinShearsItem.java │ │ ├── MixinStriderEntity.java │ │ ├── NoiseBasedChunkGeneratorAccessor.java │ │ ├── NoiseGeneratorSettingsAccessor.java │ │ ├── PaintingAccessor.java │ │ ├── PotionBrewingAccessor.java │ │ ├── SurfaceRulesContextAccessor.java │ │ └── WorldGenRegionAccessor.java │ ├── dev │ │ ├── MixinDataFixers.java │ │ ├── MixinMinecraftServer.java │ │ └── MixinPrimaryLevelData.java │ └── plugin │ │ └── DevEnvironmentMixinPlugin.java │ ├── network │ ├── IENetworkHandler.java │ ├── SpawnInfernalPaintingPacket.java │ └── WhipReachPacket.java │ ├── util │ ├── CompatibilityQuark.java │ ├── CompatibilityUtil.java │ ├── InjectionUtil.java │ ├── NetherTeleportCommandUtil.java │ ├── ShapeUtil.java │ ├── ShroomloinType.java │ └── WorldSeedHolder.java │ └── world │ ├── biome │ ├── IEBiome.java │ ├── modifiers │ │ ├── AddConfigurableSpawnsBiomeModifier.java │ │ └── AddFeaturesBiomeModifier.java │ └── netherbiomes │ │ ├── DeltaShoresSubBiome.java │ │ └── GlowstoneCanyonBiome.java │ └── gen │ ├── IETerraBlenderCompat.java │ ├── ModEntityPlacement.java │ ├── ModEntitySpawns.java │ ├── carvers │ └── GlowstoneRavineCarver.java │ ├── features │ ├── BoulderFeature.java │ ├── DullthornsFeature.java │ ├── GlowLayerFeature.java │ ├── GlowSpikeFeature.java │ ├── HangingGiantBrownMushroomFeature.java │ ├── IEFeature.java │ ├── LuminousFungusFeature.java │ ├── PlantedQuartzFeature.java │ ├── ShroomlightTearFeature.java │ ├── SinkHoleFeature.java │ └── config │ │ ├── GlowSpikeFeatureConfig.java │ │ └── PlantedQuartzFeatureConfig.java │ ├── processors │ └── LootChestProcessor.java │ ├── region │ └── TerraBlenderRegion.java │ ├── structures │ ├── PoolUtil.java │ ├── SizeCheckingNetherStructure.java │ ├── StriderAltarStructure.java │ └── StructureUtil.java │ └── surfacerules │ ├── ChanceConditionSource.java │ ├── NetherSurfaceRules.java │ └── TerrablenderSurfaceRuleCompat.java ├── js ├── META-INF │ └── coremods.json └── coremods │ └── BlockGetterCoreMod.js └── resources ├── Infernal_Expansion_Logo.png ├── META-INF ├── accesstransformer.cfg └── mods.toml ├── assets └── infernalexp │ ├── blockstates │ ├── basalt_brick_slab.json │ ├── basalt_brick_stairs.json │ ├── basalt_brick_vertical_slab.json │ ├── basalt_brick_wall.json │ ├── basalt_bricks.json │ ├── basalt_button.json │ ├── basalt_cobbled.json │ ├── basalt_cobbled_slab.json │ ├── basalt_cobbled_vertical_slab.json │ ├── basalt_iron_ore.json │ ├── basalt_slab.json │ ├── basalt_stairs.json │ ├── basalt_vertical_slab.json │ ├── basalt_wall.json │ ├── basaltic_magma.json │ ├── buried_bone.json │ ├── charged_chiseled_soul_slate_bricks.json │ ├── charged_chiseled_soul_stone_bricks.json │ ├── chiseled_basalt_bricks.json │ ├── chiseled_dimstone_bricks.json │ ├── chiseled_dullstone_bricks.json │ ├── chiseled_glowdust_stone_bricks.json │ ├── chiseled_glowstone_bricks.json │ ├── chiseled_soul_slate_bricks.json │ ├── chiseled_soul_stone_bricks.json │ ├── cracked_basalt_bricks.json │ ├── cracked_dimstone_bricks.json │ ├── cracked_dullstone_bricks.json │ ├── cracked_glowdust_stone_bricks.json │ ├── cracked_glowstone_bricks.json │ ├── cracked_soul_slate_bricks.json │ ├── cracked_soul_stone_bricks.json │ ├── crimson_fungus_cap.json │ ├── crimson_nylium_carpet.json │ ├── crimson_nylium_path.json │ ├── crumbling_blackstone.json │ ├── dimstone.json │ ├── dimstone_brick_slab.json │ ├── dimstone_brick_stairs.json │ ├── dimstone_brick_vertical_slab.json │ ├── dimstone_brick_wall.json │ ├── dimstone_bricks.json │ ├── dullstone.json │ ├── dullstone_brick_slab.json │ ├── dullstone_brick_stairs.json │ ├── dullstone_brick_vertical_slab.json │ ├── dullstone_brick_wall.json │ ├── dullstone_bricks.json │ ├── dullthorns.json │ ├── dullthorns_block.json │ ├── glow_campfire.json │ ├── glow_fire.json │ ├── glow_glass.json │ ├── glow_glass_pane.json │ ├── glow_lantern.json │ ├── glow_torch.json │ ├── glow_torch_wall.json │ ├── glowdust.json │ ├── glowdust_sand.json │ ├── glowdust_stone.json │ ├── glowdust_stone_brick_slab.json │ ├── glowdust_stone_brick_stairs.json │ ├── glowdust_stone_brick_vertical_slab.json │ ├── glowdust_stone_brick_wall.json │ ├── glowdust_stone_bricks.json │ ├── glowdust_stone_slab.json │ ├── glowdust_stone_stairs.json │ ├── glowdust_stone_vertical_slab.json │ ├── glowdust_stone_wall.json │ ├── glowsilk_cocoon.json │ ├── glowstone_brick_slab.json │ ├── glowstone_brick_stairs.json │ ├── glowstone_brick_vertical_slab.json │ ├── glowstone_brick_wall.json │ ├── glowstone_bricks.json │ ├── luminous_fungus.json │ ├── luminous_fungus_cap.json │ ├── luminous_hyphae.json │ ├── luminous_stem.json │ ├── luminous_wart_block.json │ ├── magmatic_chiseled_basalt_bricks.json │ ├── planted_quartz.json │ ├── polished_basalt_pressure_plate.json │ ├── polished_basalt_slab.json │ ├── polished_basalt_tiles.json │ ├── polished_basalt_tiles_slab.json │ ├── polished_basalt_tiles_vertical_slab.json │ ├── polished_basalt_vertical_slab.json │ ├── potted_buried_bone.json │ ├── potted_dullthorns.json │ ├── potted_luminous_fungus.json │ ├── potted_shroomlight_fungus.json │ ├── quartz_glass.json │ ├── quartz_glass_pane.json │ ├── rubble.json │ ├── shroomlight_fungus.json │ ├── silt.json │ ├── smooth_dimstone.json │ ├── smooth_dimstone_button.json │ ├── smooth_dimstone_slab.json │ ├── smooth_dimstone_stairs.json │ ├── smooth_dimstone_vertical_slab.json │ ├── smooth_dullstone.json │ ├── smooth_dullstone_button.json │ ├── smooth_dullstone_slab.json │ ├── smooth_dullstone_stairs.json │ ├── smooth_dullstone_vertical_slab.json │ ├── smooth_glowstone.json │ ├── smooth_glowstone_button.json │ ├── smooth_glowstone_pressure_plate.json │ ├── smooth_glowstone_slab.json │ ├── smooth_glowstone_stairs.json │ ├── smooth_glowstone_vertical_slab.json │ ├── soul_sand_slab.json │ ├── soul_sand_stairs.json │ ├── soul_sand_vertical_slab.json │ ├── soul_slate.json │ ├── soul_slate_brick_slab.json │ ├── soul_slate_brick_stairs.json │ ├── soul_slate_brick_vertical_slab.json │ ├── soul_slate_brick_wall.json │ ├── soul_slate_bricks.json │ ├── soul_slate_button.json │ ├── soul_slate_pressure_plate.json │ ├── soul_slate_slab.json │ ├── soul_slate_stairs.json │ ├── soul_slate_vertical_slab.json │ ├── soul_soil_path.json │ ├── soul_soil_slab.json │ ├── soul_soil_stairs.json │ ├── soul_soil_vertical_slab.json │ ├── soul_stone.json │ ├── soul_stone_brick_slab.json │ ├── soul_stone_brick_stairs.json │ ├── soul_stone_brick_vertical_slab.json │ ├── soul_stone_brick_wall.json │ ├── soul_stone_bricks.json │ ├── soul_stone_slab.json │ ├── soul_stone_stairs.json │ ├── soul_stone_vertical_slab.json │ ├── soul_stone_wall.json │ ├── stripped_luminous_hyphae.json │ ├── stripped_luminous_stem.json │ ├── trapped_glowdust_sand.json │ ├── warped_fungus_cap.json │ ├── warped_nylium_carpet.json │ └── warped_nylium_path.json │ ├── infernal_resources.zip │ ├── lang │ ├── cs_cz.json │ ├── de_de.json │ ├── en_us.json │ ├── es_ar.json │ ├── es_es.json │ ├── fr_ca.json │ ├── fr_fr.json │ ├── he_il.json │ ├── id_id.json │ ├── ja_jp.json │ ├── lol_us.json │ ├── lv_lv.json │ ├── ms_my.json │ ├── nl_nl.json │ ├── pl_pl.json │ ├── pt_br.json │ ├── ro_ro.json │ ├── ru_ru.json │ └── zh_tw.json │ ├── models │ ├── block │ │ ├── basalt_brick_slab.json │ │ ├── basalt_brick_slab_top.json │ │ ├── basalt_brick_stairs.json │ │ ├── basalt_brick_stairs_inner.json │ │ ├── basalt_brick_stairs_outer.json │ │ ├── basalt_brick_vertical_slab.json │ │ ├── basalt_brick_wall_inventory.json │ │ ├── basalt_brick_wall_post.json │ │ ├── basalt_brick_wall_side.json │ │ ├── basalt_brick_wall_side_tall.json │ │ ├── basalt_bricks.json │ │ ├── basalt_button.json │ │ ├── basalt_button_inventory.json │ │ ├── basalt_button_pressed.json │ │ ├── basalt_cobbled.json │ │ ├── basalt_cobbled_slab.json │ │ ├── basalt_cobbled_slab_top.json │ │ ├── basalt_cobbled_vertical_slab.json │ │ ├── basalt_iron_ore.json │ │ ├── basalt_slab.json │ │ ├── basalt_slab_top.json │ │ ├── basalt_stairs.json │ │ ├── basalt_stairs_inner.json │ │ ├── basalt_stairs_outer.json │ │ ├── basalt_vertical_slab.json │ │ ├── basalt_wall_inventory.json │ │ ├── basalt_wall_post.json │ │ ├── basalt_wall_side.json │ │ ├── basalt_wall_side_tall.json │ │ ├── basaltic_magma.json │ │ ├── buried_bone.json │ │ ├── buried_bone_2.json │ │ ├── charged_chiseled_soul_slate_bricks.json │ │ ├── charged_chiseled_soul_stone_bricks.json │ │ ├── chiseled_basalt_bricks.json │ │ ├── chiseled_dimstone_bricks.json │ │ ├── chiseled_dullstone_bricks.json │ │ ├── chiseled_glowdust_sandstone.json │ │ ├── chiseled_glowdust_stone_bricks.json │ │ ├── chiseled_glowstone_bricks.json │ │ ├── chiseled_soul_slate_bricks.json │ │ ├── chiseled_soul_stone_bricks.json │ │ ├── cracked_basalt_bricks.json │ │ ├── cracked_dimstone_bricks.json │ │ ├── cracked_dullstone_bricks.json │ │ ├── cracked_glowdust_stone_bricks.json │ │ ├── cracked_glowstone_bricks.json │ │ ├── cracked_soul_slate_bricks.json │ │ ├── cracked_soul_stone_bricks.json │ │ ├── crimson_fungus_cap.json │ │ ├── crimson_nylium_carpet.json │ │ ├── crimson_nylium_path.json │ │ ├── crumbling_blackstone │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ └── 3.json │ │ ├── dimstone │ │ │ ├── 0.json │ │ │ ├── 1.json │ │ │ ├── 10.json │ │ │ ├── 11.json │ │ │ ├── 12.json │ │ │ ├── 13.json │ │ │ ├── 14.json │ │ │ ├── 15.json │ │ │ ├── 16.json │ │ │ ├── 17.json │ │ │ ├── 18.json │ │ │ ├── 19.json │ │ │ ├── 2.json │ │ │ ├── 20.json │ │ │ ├── 21.json │ │ │ ├── 22.json │ │ │ ├── 23.json │ │ │ ├── 24.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ ├── 7.json │ │ │ ├── 8.json │ │ │ └── 9.json │ │ ├── dimstone_brick_slab.json │ │ ├── dimstone_brick_slab_top.json │ │ ├── dimstone_brick_stairs.json │ │ ├── dimstone_brick_stairs_inner.json │ │ ├── dimstone_brick_stairs_outer.json │ │ ├── dimstone_brick_vertical_slab.json │ │ ├── dimstone_brick_wall_inventory.json │ │ ├── dimstone_brick_wall_post.json │ │ ├── dimstone_brick_wall_side.json │ │ ├── dimstone_brick_wall_side_tall.json │ │ ├── dimstone_bricks.json │ │ ├── dullstone.json │ │ ├── dullstone_brick_slab.json │ │ ├── dullstone_brick_slab_top.json │ │ ├── dullstone_brick_stairs.json │ │ ├── dullstone_brick_stairs_inner.json │ │ ├── dullstone_brick_stairs_outer.json │ │ ├── dullstone_brick_vertical_slab.json │ │ ├── dullstone_brick_wall_inventory.json │ │ ├── dullstone_brick_wall_post.json │ │ ├── dullstone_brick_wall_side.json │ │ ├── dullstone_brick_wall_side_tall.json │ │ ├── dullstone_bricks.json │ │ ├── dullthorns.json │ │ ├── dullthorns_block.json │ │ ├── dullthorns_tip.json │ │ ├── glow_campfire.json │ │ ├── glow_campfire_off.json │ │ ├── glow_fire_floor0.json │ │ ├── glow_fire_floor1.json │ │ ├── glow_fire_side0.json │ │ ├── glow_fire_side1.json │ │ ├── glow_fire_side_alt0.json │ │ ├── glow_fire_side_alt1.json │ │ ├── glow_fire_up0.json │ │ ├── glow_fire_up1.json │ │ ├── glow_fire_up_alt0.json │ │ ├── glow_fire_up_alt1.json │ │ ├── glow_glass.json │ │ ├── glow_glass_pane_noside.json │ │ ├── glow_glass_pane_noside_alt.json │ │ ├── glow_glass_pane_post.json │ │ ├── glow_glass_pane_side.json │ │ ├── glow_glass_pane_side_alt.json │ │ ├── glow_lantern.json │ │ ├── glow_lantern_hanging.json │ │ ├── glow_torch.json │ │ ├── glow_torch_wall.json │ │ ├── glowdust_height10.json │ │ ├── glowdust_height12.json │ │ ├── glowdust_height14.json │ │ ├── glowdust_height2.json │ │ ├── glowdust_height4.json │ │ ├── glowdust_height6.json │ │ ├── glowdust_height8.json │ │ ├── glowdust_sand.json │ │ ├── glowdust_stone.json │ │ ├── glowdust_stone_brick_slab.json │ │ ├── glowdust_stone_brick_slab_top.json │ │ ├── glowdust_stone_brick_stairs.json │ │ ├── glowdust_stone_brick_stairs_inner.json │ │ ├── glowdust_stone_brick_stairs_outer.json │ │ ├── glowdust_stone_brick_vertical_slab.json │ │ ├── glowdust_stone_brick_wall_inventory.json │ │ ├── glowdust_stone_brick_wall_post.json │ │ ├── glowdust_stone_brick_wall_side.json │ │ ├── glowdust_stone_brick_wall_side_tall.json │ │ ├── glowdust_stone_bricks.json │ │ ├── glowdust_stone_slab.json │ │ ├── glowdust_stone_slab_top.json │ │ ├── glowdust_stone_stairs.json │ │ ├── glowdust_stone_stairs_inner.json │ │ ├── glowdust_stone_stairs_outer.json │ │ ├── glowdust_stone_vertical_slab.json │ │ ├── glowdust_stone_wall_inventory.json │ │ ├── glowdust_stone_wall_post.json │ │ ├── glowdust_stone_wall_side.json │ │ ├── glowdust_stone_wall_side_tall.json │ │ ├── glowsilk_cocoon.json │ │ ├── glowstone_brick_slab.json │ │ ├── glowstone_brick_slab_top.json │ │ ├── glowstone_brick_stairs.json │ │ ├── glowstone_brick_stairs_inner.json │ │ ├── glowstone_brick_stairs_outer.json │ │ ├── glowstone_brick_vertical_slab.json │ │ ├── glowstone_brick_wall_inventory.json │ │ ├── glowstone_brick_wall_post.json │ │ ├── glowstone_brick_wall_side.json │ │ ├── glowstone_brick_wall_side_tall.json │ │ ├── glowstone_bricks.json │ │ ├── luminous_fungus.json │ │ ├── luminous_fungus_cap.json │ │ ├── luminous_fungus_on.json │ │ ├── luminous_hyphae.json │ │ ├── luminous_stem.json │ │ ├── luminous_wart_block.json │ │ ├── magmatic_chiseled_basalt_bricks.json │ │ ├── planted_quartz.json │ │ ├── planted_quartz_2.json │ │ ├── polished_basalt_pressure_plate.json │ │ ├── polished_basalt_pressure_plate_down.json │ │ ├── polished_basalt_slab.json │ │ ├── polished_basalt_slab_top.json │ │ ├── polished_basalt_tiles.json │ │ ├── polished_basalt_tiles_slab.json │ │ ├── polished_basalt_tiles_slab_top.json │ │ ├── polished_basalt_tiles_vertical_slab.json │ │ ├── polished_basalt_vertical_slab.json │ │ ├── polished_dimstone.json │ │ ├── polished_dullstone.json │ │ ├── polished_glowstone.json │ │ ├── potted_buried_bone.json │ │ ├── potted_dullthorns.json │ │ ├── potted_luminous_fungus.json │ │ ├── potted_shroomlight_fungus.json │ │ ├── quartz_glass.json │ │ ├── quartz_glass_pane_noside.json │ │ ├── quartz_glass_pane_noside_alt.json │ │ ├── quartz_glass_pane_post.json │ │ ├── quartz_glass_pane_side.json │ │ ├── quartz_glass_pane_side_alt.json │ │ ├── rubble.json │ │ ├── shroomlight_fungus.json │ │ ├── silt.json │ │ ├── smooth_dimstone.json │ │ ├── smooth_dimstone_button.json │ │ ├── smooth_dimstone_button_inventory.json │ │ ├── smooth_dimstone_button_pressed.json │ │ ├── smooth_dimstone_slab.json │ │ ├── smooth_dimstone_slab_top.json │ │ ├── smooth_dimstone_stairs.json │ │ ├── smooth_dimstone_stairs_inner.json │ │ ├── smooth_dimstone_stairs_outer.json │ │ ├── smooth_dimstone_vertical_slab.json │ │ ├── smooth_dullstone.json │ │ ├── smooth_dullstone_button.json │ │ ├── smooth_dullstone_button_inventory.json │ │ ├── smooth_dullstone_button_pressed.json │ │ ├── smooth_dullstone_slab.json │ │ ├── smooth_dullstone_slab_top.json │ │ ├── smooth_dullstone_stairs.json │ │ ├── smooth_dullstone_stairs_inner.json │ │ ├── smooth_dullstone_stairs_outer.json │ │ ├── smooth_dullstone_vertical_slab.json │ │ ├── smooth_glowstone.json │ │ ├── smooth_glowstone_button.json │ │ ├── smooth_glowstone_button_inventory.json │ │ ├── smooth_glowstone_button_pressed.json │ │ ├── smooth_glowstone_pressure_plate.json │ │ ├── smooth_glowstone_pressure_plate_down.json │ │ ├── smooth_glowstone_slab.json │ │ ├── smooth_glowstone_slab_top.json │ │ ├── smooth_glowstone_stairs.json │ │ ├── smooth_glowstone_stairs_inner.json │ │ ├── smooth_glowstone_stairs_outer.json │ │ ├── smooth_glowstone_vertical_slab.json │ │ ├── soul_sand_slab.json │ │ ├── soul_sand_slab_top.json │ │ ├── soul_sand_stairs.json │ │ ├── soul_sand_stairs_inner.json │ │ ├── soul_sand_stairs_outer.json │ │ ├── soul_sand_vertical_slab.json │ │ ├── soul_slate.json │ │ ├── soul_slate_brick_slab.json │ │ ├── soul_slate_brick_slab_top.json │ │ ├── soul_slate_brick_stairs.json │ │ ├── soul_slate_brick_stairs_inner.json │ │ ├── soul_slate_brick_stairs_outer.json │ │ ├── soul_slate_brick_vertical_slab.json │ │ ├── soul_slate_brick_wall_inventory.json │ │ ├── soul_slate_brick_wall_post.json │ │ ├── soul_slate_brick_wall_side.json │ │ ├── soul_slate_brick_wall_side_tall.json │ │ ├── soul_slate_bricks.json │ │ ├── soul_slate_button.json │ │ ├── soul_slate_button_inventory.json │ │ ├── soul_slate_button_pressed.json │ │ ├── soul_slate_pressure_plate.json │ │ ├── soul_slate_pressure_plate_down.json │ │ ├── soul_slate_slab.json │ │ ├── soul_slate_slab_top.json │ │ ├── soul_slate_stairs.json │ │ ├── soul_slate_stairs_inner.json │ │ ├── soul_slate_stairs_outer.json │ │ ├── soul_slate_vertical_slab.json │ │ ├── soul_soil_path.json │ │ ├── soul_soil_slab.json │ │ ├── soul_soil_slab_top.json │ │ ├── soul_soil_stairs.json │ │ ├── soul_soil_stairs_inner.json │ │ ├── soul_soil_stairs_outer.json │ │ ├── soul_soil_vertical_slab.json │ │ ├── soul_stone.json │ │ ├── soul_stone_brick_slab.json │ │ ├── soul_stone_brick_slab_top.json │ │ ├── soul_stone_brick_stairs.json │ │ ├── soul_stone_brick_stairs_inner.json │ │ ├── soul_stone_brick_stairs_outer.json │ │ ├── soul_stone_brick_vertical_slab.json │ │ ├── soul_stone_brick_wall_inventory.json │ │ ├── soul_stone_brick_wall_post.json │ │ ├── soul_stone_brick_wall_side.json │ │ ├── soul_stone_brick_wall_side_tall.json │ │ ├── soul_stone_bricks.json │ │ ├── soul_stone_slab.json │ │ ├── soul_stone_slab_top.json │ │ ├── soul_stone_stairs.json │ │ ├── soul_stone_stairs_inner.json │ │ ├── soul_stone_stairs_outer.json │ │ ├── soul_stone_vertical_slab.json │ │ ├── soul_stone_wall_inventory.json │ │ ├── soul_stone_wall_post.json │ │ ├── soul_stone_wall_side.json │ │ ├── soul_stone_wall_side_tall.json │ │ ├── stripped_luminous_hyphae.json │ │ ├── stripped_luminous_stem.json │ │ ├── trapped_glowdust_sand.json │ │ ├── vertical_slab.json │ │ ├── warped_fungus_cap.json │ │ ├── warped_nylium_carpet.json │ │ └── warped_nylium_path.json │ └── item │ │ ├── ascus_bomb.json │ │ ├── basalt_brick_slab.json │ │ ├── basalt_brick_stairs.json │ │ ├── basalt_brick_vertical_slab.json │ │ ├── basalt_brick_wall.json │ │ ├── basalt_bricks.json │ │ ├── basalt_button.json │ │ ├── basalt_cobbled.json │ │ ├── basalt_cobbled_slab.json │ │ ├── basalt_cobbled_vertical_slab.json │ │ ├── basalt_giant_spawn_egg.json │ │ ├── basalt_iron_ore.json │ │ ├── basalt_slab.json │ │ ├── basalt_stairs.json │ │ ├── basalt_vertical_slab.json │ │ ├── basalt_wall.json │ │ ├── basaltic_magma.json │ │ ├── blackstone_dwarf_spawn_egg.json │ │ ├── blindsight_spawn_egg.json │ │ ├── blindsight_tongue.json │ │ ├── blindsight_tongue_stew.json │ │ ├── blindsight_tongue_whip.json │ │ ├── blindsight_tongue_whip_extending_0.json │ │ ├── blindsight_tongue_whip_extending_1.json │ │ ├── blindsight_tongue_whip_extending_2.json │ │ ├── blindsight_tongue_whip_extending_3.json │ │ ├── blindsight_tongue_whip_extending_4.json │ │ ├── blindsight_tongue_whip_extending_5.json │ │ ├── blindsight_tongue_whip_extending_6.json │ │ ├── blindsight_tongue_whip_extending_7.json │ │ ├── blindsight_tongue_whip_extending_8.json │ │ ├── blindsight_tongue_whip_extending_9.json │ │ ├── buried_bone.json │ │ ├── cerobeetle_spawn_egg.json │ │ ├── charged_chiseled_soul_slate_bricks.json │ │ ├── charged_chiseled_soul_stone_bricks.json │ │ ├── chiseled_basalt_bricks.json │ │ ├── chiseled_dimstone_bricks.json │ │ ├── chiseled_dullstone_bricks.json │ │ ├── chiseled_glowdust_stone_bricks.json │ │ ├── chiseled_glowstone_bricks.json │ │ ├── chiseled_soul_slate_bricks.json │ │ ├── chiseled_soul_stone_bricks.json │ │ ├── cooked_hogchop.json │ │ ├── cracked_basalt_bricks.json │ │ ├── cracked_dimstone_bricks.json │ │ ├── cracked_dullstone_bricks.json │ │ ├── cracked_glowdust_stone_bricks.json │ │ ├── cracked_glowstone_bricks.json │ │ ├── cracked_soul_slate_bricks.json │ │ ├── cracked_soul_stone_bricks.json │ │ ├── crimson_fungus_cap.json │ │ ├── crimson_nylium_carpet.json │ │ ├── crimson_nylium_path.json │ │ ├── crumbling_blackstone.json │ │ ├── cured_jerky.json │ │ ├── cut_glowdust_sandstone.json │ │ ├── cut_glowdust_sandstone_slab.json │ │ ├── cut_glowdust_sandstone_vertical_slab.json │ │ ├── dimstone.json │ │ ├── dimstone_brick_slab.json │ │ ├── dimstone_brick_stairs.json │ │ ├── dimstone_brick_vertical_slab.json │ │ ├── dimstone_brick_wall.json │ │ ├── dimstone_bricks.json │ │ ├── dullstone.json │ │ ├── dullstone_brick_slab.json │ │ ├── dullstone_brick_stairs.json │ │ ├── dullstone_brick_vertical_slab.json │ │ ├── dullstone_brick_wall.json │ │ ├── dullstone_bricks.json │ │ ├── dullthorns.json │ │ ├── dullthorns_block.json │ │ ├── embody_spawn_egg.json │ │ ├── glow_campfire.json │ │ ├── glow_glass.json │ │ ├── glow_glass_pane.json │ │ ├── glow_lantern.json │ │ ├── glow_torch.json │ │ ├── glowcoal.json │ │ ├── glowdust.json │ │ ├── glowdust_sand.json │ │ ├── glowdust_stone.json │ │ ├── glowdust_stone_brick_slab.json │ │ ├── glowdust_stone_brick_stairs.json │ │ ├── glowdust_stone_brick_vertical_slab.json │ │ ├── glowdust_stone_brick_wall.json │ │ ├── glowdust_stone_bricks.json │ │ ├── glowdust_stone_slab.json │ │ ├── glowdust_stone_stairs.json │ │ ├── glowdust_stone_vertical_slab.json │ │ ├── glowdust_stone_wall.json │ │ ├── glownuggets.json │ │ ├── glowsilk.json │ │ ├── glowsilk_bow.json │ │ ├── glowsilk_bow_pulling_0.json │ │ ├── glowsilk_bow_pulling_1.json │ │ ├── glowsilk_bow_pulling_2.json │ │ ├── glowsilk_cocoon.json │ │ ├── glowsilk_moth_spawn_egg.json │ │ ├── glowsquito_spawn_egg.json │ │ ├── glowstone_brick_slab.json │ │ ├── glowstone_brick_stairs.json │ │ ├── glowstone_brick_vertical_slab.json │ │ ├── glowstone_brick_wall.json │ │ ├── glowstone_bricks.json │ │ ├── infernal_painting.json │ │ ├── kinetic_tongue_whip.json │ │ ├── kinetic_tongue_whip_extending_0.json │ │ ├── kinetic_tongue_whip_extending_1.json │ │ ├── kinetic_tongue_whip_extending_2.json │ │ ├── kinetic_tongue_whip_extending_3.json │ │ ├── kinetic_tongue_whip_extending_4.json │ │ ├── kinetic_tongue_whip_extending_5.json │ │ ├── kinetic_tongue_whip_extending_6.json │ │ ├── kinetic_tongue_whip_extending_7.json │ │ ├── kinetic_tongue_whip_extending_8.json │ │ ├── kinetic_tongue_whip_extending_9.json │ │ ├── luminous_fungus.json │ │ ├── luminous_fungus_cap.json │ │ ├── luminous_hyphae.json │ │ ├── luminous_stem.json │ │ ├── luminous_wart_block.json │ │ ├── magma_cube_bucket.json │ │ ├── magmatic_chiseled_basalt_bricks.json │ │ ├── molten_gold_cluster.json │ │ ├── moth_dust.json │ │ ├── music_disc_flush.json │ │ ├── music_disc_soul_spunk.json │ │ ├── polished_basalt_pressure_plate.json │ │ ├── polished_basalt_slab.json │ │ ├── polished_basalt_tiles.json │ │ ├── polished_basalt_tiles_slab.json │ │ ├── polished_basalt_tiles_vertical_slab.json │ │ ├── polished_basalt_vertical_slab.json │ │ ├── pyrno_spawn_egg.json │ │ ├── quartz_glass.json │ │ ├── quartz_glass_pane.json │ │ ├── raw_hogchop.json │ │ ├── rubble.json │ │ ├── shroomlight_fungus.json │ │ ├── shroomloin_spawn_egg.json │ │ ├── silt.json │ │ ├── smooth_dimstone.json │ │ ├── smooth_dimstone_button.json │ │ ├── smooth_dimstone_slab.json │ │ ├── smooth_dimstone_stairs.json │ │ ├── smooth_dimstone_vertical_slab.json │ │ ├── smooth_dullstone.json │ │ ├── smooth_dullstone_button.json │ │ ├── smooth_dullstone_slab.json │ │ ├── smooth_dullstone_stairs.json │ │ ├── smooth_dullstone_vertical_slab.json │ │ ├── smooth_glowstone.json │ │ ├── smooth_glowstone_button.json │ │ ├── smooth_glowstone_pressure_plate.json │ │ ├── smooth_glowstone_slab.json │ │ ├── smooth_glowstone_stairs.json │ │ ├── smooth_glowstone_vertical_slab.json │ │ ├── soul_salt_clump.json │ │ ├── soul_sand_slab.json │ │ ├── soul_sand_stairs.json │ │ ├── soul_sand_vertical_slab.json │ │ ├── soul_slate.json │ │ ├── soul_slate_brick_slab.json │ │ ├── soul_slate_brick_stairs.json │ │ ├── soul_slate_brick_vertical_slab.json │ │ ├── soul_slate_brick_wall.json │ │ ├── soul_slate_bricks.json │ │ ├── soul_slate_button.json │ │ ├── soul_slate_pressure_plate.json │ │ ├── soul_slate_slab.json │ │ ├── soul_slate_stairs.json │ │ ├── soul_slate_vertical_slab.json │ │ ├── soul_soil_path.json │ │ ├── soul_soil_slab.json │ │ ├── soul_soil_stairs.json │ │ ├── soul_soil_vertical_slab.json │ │ ├── soul_stone.json │ │ ├── soul_stone_brick_slab.json │ │ ├── soul_stone_brick_stairs.json │ │ ├── soul_stone_brick_vertical_slab.json │ │ ├── soul_stone_brick_wall.json │ │ ├── soul_stone_bricks.json │ │ ├── soul_stone_slab.json │ │ ├── soul_stone_stairs.json │ │ ├── soul_stone_vertical_slab.json │ │ ├── soul_stone_wall.json │ │ ├── spirit_eye.json │ │ ├── strider_bucket.json │ │ ├── stripped_luminous_hyphae.json │ │ ├── stripped_luminous_stem.json │ │ ├── tab_icon.json │ │ ├── trapped_glowdust_sand.json │ │ ├── voline_bucket.json │ │ ├── voline_spawn_egg.json │ │ ├── warpbeetle_spawn_egg.json │ │ ├── warped_fungus_cap.json │ │ ├── warped_nylium_carpet.json │ │ └── warped_nylium_path.json │ ├── particles │ ├── glowstone_sparkle.json │ └── infection.json │ ├── sounds.json │ ├── sounds │ ├── ambient │ │ └── nether │ │ │ └── glowstone_canyon │ │ │ ├── ambience.ogg │ │ │ ├── chime1.ogg │ │ │ ├── chime2.ogg │ │ │ ├── chime3.ogg │ │ │ ├── chime4.ogg │ │ │ ├── chime5.ogg │ │ │ ├── chime6.ogg │ │ │ ├── chime7.ogg │ │ │ ├── dullthorn_pluck1.ogg │ │ │ ├── dullthorn_pluck2.ogg │ │ │ ├── dullthorn_pluck3.ogg │ │ │ ├── dullthorn_pluck4.ogg │ │ │ ├── dullthorn_pluck5.ogg │ │ │ ├── dullthorn_pluck6.ogg │ │ │ ├── dullthorn_strum1.ogg │ │ │ ├── dullthorn_strum2.ogg │ │ │ ├── dullthorn_strum3.ogg │ │ │ ├── dullthorn_strum4.ogg │ │ │ ├── mood1.ogg │ │ │ ├── mood2.ogg │ │ │ ├── mood3.ogg │ │ │ ├── mood4.ogg │ │ │ ├── mood5.ogg │ │ │ ├── somber_pluck1.ogg │ │ │ ├── somber_pluck2.ogg │ │ │ ├── somber_pluck3.ogg │ │ │ ├── somber_pluck4.ogg │ │ │ ├── somber_strum1.ogg │ │ │ ├── somber_strum2.ogg │ │ │ ├── somber_strum3.ogg │ │ │ ├── somber_strum4.ogg │ │ │ ├── with1.ogg │ │ │ ├── with2.ogg │ │ │ ├── with3.ogg │ │ │ ├── with4.ogg │ │ │ └── with5.ogg │ ├── block │ │ ├── dullstone │ │ │ ├── break1.ogg │ │ │ ├── break2.ogg │ │ │ ├── step1.ogg │ │ │ ├── step2.ogg │ │ │ └── step3.ogg │ │ ├── glowstone │ │ │ └── recharge.ogg │ │ ├── quartz_glass │ │ │ └── hit.ogg │ │ └── soul_stone │ │ │ ├── break1.ogg │ │ │ ├── break2.ogg │ │ │ ├── break3.ogg │ │ │ ├── break4.ogg │ │ │ └── break5.ogg │ ├── entity │ │ ├── basalt_giant │ │ │ ├── basalt_giant_ambient.ogg │ │ │ ├── basalt_giant_death.ogg │ │ │ └── basalt_giant_hurt.ogg │ │ ├── blindsight │ │ │ ├── blindsight_ambient_1.ogg │ │ │ ├── blindsight_ambient_2.ogg │ │ │ ├── blindsight_ambient_3.ogg │ │ │ ├── blindsight_death.ogg │ │ │ ├── blindsight_hurt.ogg │ │ │ └── blindsight_leap.ogg │ │ ├── cerobeetle │ │ │ ├── cerobeetle_ambient.ogg │ │ │ ├── cerobeetle_death.ogg │ │ │ ├── cerobeetle_hurt.ogg │ │ │ └── cerobeetle_roar.ogg │ │ ├── charon │ │ │ ├── charon_ambient.ogg │ │ │ ├── charon_death.ogg │ │ │ └── charon_hurt.ogg │ │ ├── embody │ │ │ ├── embody_ambient.ogg │ │ │ ├── embody_death.ogg │ │ │ └── embody_hurt.ogg │ │ ├── glowsilk_moth │ │ │ ├── glowsilk_moth_ambient.ogg │ │ │ ├── glowsilk_moth_death.ogg │ │ │ └── glowsilk_moth_hurt.ogg │ │ ├── glowsquito │ │ │ ├── death1.ogg │ │ │ ├── hit1.ogg │ │ │ ├── hit2.ogg │ │ │ ├── hit3.ogg │ │ │ ├── hit4.ogg │ │ │ ├── loop1.ogg │ │ │ ├── loop2.ogg │ │ │ ├── loop3.ogg │ │ │ └── loop4.ogg │ │ ├── shroomloin │ │ │ ├── shroomloin_ambient.ogg │ │ │ ├── shroomloin_ambient_old.ogg │ │ │ ├── shroomloin_death.ogg │ │ │ ├── shroomloin_death_old.ogg │ │ │ └── shroomloin_hurt.ogg │ │ ├── voline │ │ │ ├── voline_ambient.ogg │ │ │ └── voline_hurt.ogg │ │ └── warpbeetle │ │ │ ├── warpbeetle_ambient.ogg │ │ │ ├── warpbeetle_ambient_old.ogg │ │ │ ├── warpbeetle_death.ogg │ │ │ └── warpbeetle_hurt.ogg │ ├── music │ │ └── nether │ │ │ └── glowstone_canyon │ │ │ └── spindle.ogg │ └── record │ │ ├── flush.ogg │ │ └── soul_spunk.ogg │ └── textures │ ├── block │ ├── basalt_bricks.png │ ├── basalt_cobbled.png │ ├── basalt_iron_ore_side.png │ ├── basalt_iron_ore_top.png │ ├── basaltic_magma_side.png │ ├── basaltic_magma_side.png.mcmeta │ ├── basaltic_magma_top.png │ ├── basaltic_magma_top.png.mcmeta │ ├── blackstone_top.png │ ├── buried_bone.png │ ├── buried_bone_2.png │ ├── campfire_log.png │ ├── charged_chiseled_soul_slate_bricks.png │ ├── charged_chiseled_soul_slate_bricks_anim.png │ ├── charged_chiseled_soul_slate_bricks_anim.png.mcmeta │ ├── charged_chiseled_soul_slate_bricks_top.png │ ├── charged_chiseled_soul_stone_bricks.png │ ├── charged_chiseled_soul_stone_bricks_anim.png │ ├── charged_chiseled_soul_stone_bricks_anim.png.mcmeta │ ├── charged_chiseled_soul_stone_bricks_top.png │ ├── charged_chiseled_soul_stone_bricks_top_anim.png │ ├── charged_chiseled_soul_stone_bricks_top_anim.png.mcmeta │ ├── charged_soul_sand.mcmeta │ ├── charged_soul_sand.png │ ├── chiseled_basalt_bricks.png │ ├── chiseled_basalt_bricks_top.png │ ├── chiseled_dimstone_bricks.png │ ├── chiseled_dullstone_bricks.png │ ├── chiseled_glowdust_stone_bricks_animated.png │ ├── chiseled_glowdust_stone_bricks_animated.png.mcmeta │ ├── chiseled_glowstone_bricks.png │ ├── chiseled_soul_slate_bricks.png │ ├── chiseled_soul_slate_bricks_top.png │ ├── chiseled_soul_stone_bricks.png │ ├── chiseled_soul_stone_bricks_top.png │ ├── cracked_basalt_bricks.png │ ├── cracked_brick_overlay.png │ ├── cracked_dimstone_bricks.png │ ├── cracked_dullstone_bricks.png │ ├── cracked_glowdust_stone_bricks_animated.png │ ├── cracked_glowdust_stone_bricks_animated.png.mcmeta │ ├── cracked_glowstone_bricks.png │ ├── cracked_soul_slate_bricks.png │ ├── cracked_soul_stone_bricks.png │ ├── crimson_fungus_cap_bottom.png │ ├── crimson_fungus_cap_side.png │ ├── crimson_fungus_cap_top.png │ ├── crimson_nylium_path.png │ ├── crimson_nylium_path_side.png │ ├── crumbling_blackstone │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── top2.png │ │ └── top3.png │ ├── cut_glowdust_sandstone.png │ ├── dimlit_fungus.png │ ├── dimstone │ │ ├── 0.png │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 2.png │ │ ├── 20.png │ │ ├── 21.png │ │ ├── 22.png │ │ ├── 23.png │ │ ├── 24.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ ├── dimstone_bricks.png │ ├── dimstone_bricks_small.png │ ├── dullstone.png │ ├── dullstone_bricks.png │ ├── dullstone_bricks_small.png │ ├── dullthorns.png │ ├── dullthorns_block.png │ ├── dullthorns_tip.png │ ├── glow_campfire_fire.png │ ├── glow_campfire_fire.png.mcmeta │ ├── glow_campfire_log_lit.png │ ├── glow_campfire_log_lit.png.mcmeta │ ├── glow_fire_0.png │ ├── glow_fire_0.png.mcmeta │ ├── glow_fire_1.png │ ├── glow_fire_1.png.mcmeta │ ├── glow_lantern_block.png │ ├── glow_lantern_block.png.mcmeta │ ├── glow_torch.png │ ├── glowdust_sand.png │ ├── glowdust_sand_animated.png │ ├── glowdust_sand_animated.png.mcmeta │ ├── glowdust_stone.png │ ├── glowdust_stone_animated.png │ ├── glowdust_stone_animated.png.mcmeta │ ├── glowdust_stone_bricks.png │ ├── glowdust_stone_bricks_animated.png │ ├── glowdust_stone_bricks_animated.png.mcmeta │ ├── glowlight_glass.png │ ├── glowlight_glass_pane_top.png │ ├── glowsilk_cocoon.png │ ├── glowsilk_cocoon_top.png │ ├── glowstone_bricks.png │ ├── glowstone_bricks_small.png │ ├── luminous_fungus.png │ ├── luminous_fungus_cap_bottom.png │ ├── luminous_fungus_cap_side.png │ ├── luminous_fungus_cap_top.png │ ├── luminous_fungus_off.png │ ├── luminous_stem.png │ ├── luminous_stem.png.mcmeta │ ├── luminous_stem_top.png │ ├── luminous_stem_top.png.mcmeta │ ├── luminous_wart_block.png │ ├── magmatic_chiseled_basalt_bricks.png │ ├── magmatic_chiseled_basalt_bricks_anim.png │ ├── magmatic_chiseled_basalt_bricks_anim.png.mcmeta │ ├── magmatic_chiseled_basalt_bricks_top.png │ ├── planted_quartz.png │ ├── planted_quartz_2.png │ ├── polished_basalt_tiles.png │ ├── polished_blackstone_slab_side.png │ ├── quartz_glass.png │ ├── quartz_glass_pane_top.png │ ├── rubble.png │ ├── shroomlight_fungus.png │ ├── silt.png │ ├── smooth_dimstone.png │ ├── smooth_dullstone.png │ ├── smooth_glowstone.png │ ├── soul_salt_block.png │ ├── soul_slate.png │ ├── soul_slate_bricks.png │ ├── soul_slate_lit.png │ ├── soul_soil_path.png │ ├── soul_stone.png │ ├── soul_stone_bricks.png │ ├── stripped_luminous_stem.png │ ├── stripped_luminous_stem.png.mcmeta │ ├── stripped_luminous_stem_top.png │ ├── stripped_luminous_stem_top.png.mcmeta │ ├── trapped_glowdust_sand.png │ ├── trapped_glowdust_sand_animated.png │ ├── trapped_glowdust_sand_animated.png.mcmeta │ ├── warped_fungus_cap_bottom.png │ ├── warped_fungus_cap_side.png │ ├── warped_fungus_cap_top.png │ ├── warped_nylium_path.png │ └── warped_nylium_path_side.png │ ├── entity │ ├── basalt_giant.png │ ├── basalt_giant_glow.png │ ├── blackstone_dwarf.png │ ├── blackstone_dwarf_glow.png │ ├── blindsight.png │ ├── blindsight_glow.png │ ├── cerobeetle.png │ ├── embody.png │ ├── embody_glow.png │ ├── glowsilk_moth.png │ ├── glowsilk_moth_glow.png │ ├── glowsquitoid.png │ ├── glowsquitoid_glow.png │ ├── glowsquitoid_shroomlight.png │ ├── pyrno.png │ ├── shroomloin │ │ ├── black_puff.png │ │ ├── black_puff_glow.png │ │ ├── blood.png │ │ ├── blood_glow.png │ │ ├── blue_glowshroom.png │ │ ├── blue_glowshroom_glow.png │ │ ├── blue_mushroom.png │ │ ├── blue_mushroom_glow.png │ │ ├── brown.png │ │ ├── brown_glow.png │ │ ├── bulbis_anomaly.png │ │ ├── bulbis_anomaly_glow.png │ │ ├── crimson.png │ │ ├── crimson_glow.png │ │ ├── death_cap.png │ │ ├── death_cap_glow.png │ │ ├── embur_wart.png │ │ ├── embur_wart_glow.png │ │ ├── fairy_ring_mushroom.png │ │ ├── fairy_ring_mushroom_glow.png │ │ ├── fungal_imparius.png │ │ ├── fungal_imparius_glow.png │ │ ├── glowshroom_biomesoplenty.png │ │ ├── glowshroom_biomesoplenty_glow.png │ │ ├── glowshroom_darkerdepths.png │ │ ├── glowshroom_darkerdepths_glow.png │ │ ├── glowshroom_quark.png │ │ ├── glowshroom_quark_glow.png │ │ ├── green_mushroom.png │ │ ├── green_mushroom_glow.png │ │ ├── imparius_mushroom.png │ │ ├── imparius_mushroom_glow.png │ │ ├── indigo_mushroom.png │ │ ├── indigo_mushroom_glow.png │ │ ├── ink_mushroom.png │ │ ├── ink_mushroom_glow.png │ │ ├── lightcap.png │ │ ├── luminous.png │ │ ├── luminous_glow.png │ │ ├── mass_glow.png │ │ ├── orange_mushroom.png │ │ ├── orange_mushroom_glow.png │ │ ├── pizza.png │ │ ├── pizza_glow.png │ │ ├── poise_bush.png │ │ ├── poise_bush_glow.png │ │ ├── purple_glowshroom.png │ │ ├── purple_glowshroom_glow.png │ │ ├── purple_mushroom.png │ │ ├── purple_mushroom_glow.png │ │ ├── red.png │ │ ├── red_glow.png │ │ ├── shulkren_fungus.png │ │ ├── shulkren_fungus_glow.png │ │ ├── soul_shroom.png │ │ ├── soul_shroom_glow.png │ │ ├── sythian_fungus.png │ │ ├── sythian_fungus_glow.png │ │ ├── toadstool.png │ │ ├── toadstool_glow.png │ │ ├── veil_mushroom.png │ │ ├── veil_mushroom_glow.png │ │ ├── warped.png │ │ ├── warped_glow.png │ │ ├── weeping_milkcap.png │ │ ├── weeping_milkcap_glow.png │ │ ├── wood_blewit.png │ │ └── wood_blewit_glow.png │ ├── voline.png │ ├── voline_glow.png │ ├── voline_tired.png │ ├── voline_tired_glow.png │ └── warpbeetle │ │ ├── chorus_warpbeetle.png │ │ └── warpbeetle.png │ ├── gui │ └── infection_gui.png │ ├── item │ ├── ascus_bomb.png │ ├── blindsight_tongue.png │ ├── blindsight_tongue_stew.png │ ├── blindsight_tongue_whip.png │ ├── blindsight_tongue_whip_extending_0.png │ ├── blindsight_tongue_whip_extending_1.png │ ├── blindsight_tongue_whip_extending_2.png │ ├── blindsight_tongue_whip_extending_3.png │ ├── blindsight_tongue_whip_extending_4.png │ ├── blindsight_tongue_whip_extending_5.png │ ├── blindsight_tongue_whip_extending_6.png │ ├── blindsight_tongue_whip_extending_7.png │ ├── blindsight_tongue_whip_extending_8.png │ ├── blindsight_tongue_whip_extending_9.png │ ├── cooked_hogchop.png │ ├── cured_jerky.png │ ├── glow_campfire.png │ ├── glow_lantern.png │ ├── glow_torch.png │ ├── glowcoal.png │ ├── glownuggets.png │ ├── glowsilk.png │ ├── glowsilk_bow.png │ ├── glowsilk_bow_pulling_0.png │ ├── glowsilk_bow_pulling_1.png │ ├── glowsilk_bow_pulling_2.png │ ├── infernal_painting.png │ ├── kinetic_tongue_whip.png │ ├── kinetic_tongue_whip_extending_0.png │ ├── kinetic_tongue_whip_extending_1.png │ ├── kinetic_tongue_whip_extending_2.png │ ├── kinetic_tongue_whip_extending_3.png │ ├── kinetic_tongue_whip_extending_4.png │ ├── kinetic_tongue_whip_extending_5.png │ ├── kinetic_tongue_whip_extending_6.png │ ├── kinetic_tongue_whip_extending_7.png │ ├── kinetic_tongue_whip_extending_8.png │ ├── kinetic_tongue_whip_extending_9.png │ ├── magma_cube_bucket.png │ ├── molten_gold_cluster.png │ ├── moth_dust.png │ ├── music_disc_flush.png │ ├── music_disc_soul_spunk.png │ ├── raw_hogchop.png │ ├── rawbeetle.png │ ├── soul_salt_clump.png │ ├── soul_salt_clump.png.mcmeta │ ├── spirit_eye.png │ ├── spirit_eye.png.mcmeta │ ├── strider_bucket.png │ ├── tab_icon.png │ └── voline_bucket.png │ ├── mob_effect │ ├── infection.png │ └── luminous.png │ ├── painting │ ├── chilling_isles.png │ ├── da_salt.png │ ├── glow_like_helly.png │ ├── glowstone_canyon_painting.png │ ├── infernal_back.png │ ├── pigs_greed.png │ ├── pineapple_under_the_lava_sea.png │ ├── shroom_duality.png │ ├── soul_by_soul.png │ ├── soul_hole.png │ ├── the_fallen_ones.png │ └── voline.png │ └── particle │ ├── glowstone_sparkle_0.png │ ├── glowstone_sparkle_1.png │ ├── glowstone_sparkle_2.png │ ├── glowstone_sparkle_3.png │ ├── glowstone_sparkle_4.png │ ├── glowstone_sparkle_5.png │ ├── glowstone_sparkle_6.png │ ├── glowstone_sparkle_7.png │ └── infection.png ├── data ├── forge │ ├── loot_modifiers │ │ └── global_loot_modifiers.json │ └── tags │ │ └── blocks │ │ └── needs_wood_tool.json ├── infernalexp │ ├── advancements │ │ └── recipes │ │ │ ├── building_blocks │ │ │ └── glass.json │ │ │ ├── combat │ │ │ ├── blindsight_tongue_whip.json │ │ │ └── glowsilk_bow.json │ │ │ ├── food │ │ │ ├── blindsight_tounge_stew.json │ │ │ ├── cooked_hogchop_campfire.json │ │ │ ├── cooked_hogchop_smelting.json │ │ │ ├── cooked_hogchop_smoking.json │ │ │ └── cured_jerky.json │ │ │ ├── redstone │ │ │ ├── basalt_button.json │ │ │ ├── polished_basalt_pressure_plate.json │ │ │ ├── smooth_dimstone_button.json │ │ │ ├── smooth_dullstone_button.json │ │ │ ├── smooth_glowstone_button.json │ │ │ ├── smooth_glowstone_pressure_plate.json │ │ │ ├── soul_slate_button.json │ │ │ └── soul_slate_pressure_plate.json │ │ │ └── root.json │ ├── forge │ │ └── biome_modifier │ │ │ ├── add_basaltic_magma.json │ │ │ ├── add_configurable_spawns.json │ │ │ ├── add_ore_basalt_iron_basalt_deltas.json │ │ │ ├── add_ore_glowsilk_cocoon.json │ │ │ ├── add_ore_soul_stone.json │ │ │ ├── add_patch_buried_bone.json │ │ │ ├── add_patch_crimson_cap.json │ │ │ ├── add_patch_warped_cap.json │ │ │ ├── add_planted_quartz_patch.json │ │ │ └── add_shroomlight_tear.json │ ├── loot_modifiers │ │ └── hoglin_loot_modifier.json │ ├── loot_tables │ │ ├── blocks │ │ │ ├── basalt_brick_slab.json │ │ │ ├── basalt_brick_stairs.json │ │ │ ├── basalt_brick_vertical_slab.json │ │ │ ├── basalt_brick_wall.json │ │ │ ├── basalt_bricks.json │ │ │ ├── basalt_button.json │ │ │ ├── basalt_cobbled.json │ │ │ ├── basalt_cobbled_slab.json │ │ │ ├── basalt_iron_ore.json │ │ │ ├── basalt_slab.json │ │ │ ├── basalt_stairs.json │ │ │ ├── basalt_vertical_slab.json │ │ │ ├── basalt_wall.json │ │ │ ├── basaltic_magma.json │ │ │ ├── buried_bone.json │ │ │ ├── charged_chiseled_soul_slate_bricks.json │ │ │ ├── charged_chiseled_soul_stone_bricks.json │ │ │ ├── chiseled_basalt_bricks.json │ │ │ ├── chiseled_dimstone_bricks.json │ │ │ ├── chiseled_dullstone_bricks.json │ │ │ ├── chiseled_glowdust_stone_bricks.json │ │ │ ├── chiseled_glowstone_bricks.json │ │ │ ├── chiseled_soul_slate_bricks.json │ │ │ ├── chiseled_soul_stone_bricks.json │ │ │ ├── cracked_basalt_bricks.json │ │ │ ├── cracked_dimstone_bricks.json │ │ │ ├── cracked_dullstone_bricks.json │ │ │ ├── cracked_glowdust_stone_bricks.json │ │ │ ├── cracked_glowstone_bricks.json │ │ │ ├── cracked_soul_slate_bricks.json │ │ │ ├── cracked_soul_stone_bricks.json │ │ │ ├── crimson_fungus_cap.json │ │ │ ├── crimson_nylium_carpet.json │ │ │ ├── crimson_nylium_path.json │ │ │ ├── dimstone.json │ │ │ ├── dimstone_brick_slab.json │ │ │ ├── dimstone_brick_stairs.json │ │ │ ├── dimstone_brick_vertical_slab.json │ │ │ ├── dimstone_brick_wall.json │ │ │ ├── dimstone_bricks.json │ │ │ ├── dullstone.json │ │ │ ├── dullstone_brick_slab.json │ │ │ ├── dullstone_brick_stairs.json │ │ │ ├── dullstone_brick_vertical_slab.json │ │ │ ├── dullstone_brick_wall.json │ │ │ ├── dullstone_bricks.json │ │ │ ├── dullthorns.json │ │ │ ├── dullthorns_block.json │ │ │ ├── glow_campfire.json │ │ │ ├── glow_glass.json │ │ │ ├── glow_glass_pane.json │ │ │ ├── glow_lantern.json │ │ │ ├── glow_torch.json │ │ │ ├── glowdust.json │ │ │ ├── glowdust_sand.json │ │ │ ├── glowdust_stone.json │ │ │ ├── glowdust_stone_brick_slab.json │ │ │ ├── glowdust_stone_brick_stairs.json │ │ │ ├── glowdust_stone_brick_vertical_slab.json │ │ │ ├── glowdust_stone_brick_wall.json │ │ │ ├── glowdust_stone_bricks.json │ │ │ ├── glowdust_stone_slab.json │ │ │ ├── glowdust_stone_stairs.json │ │ │ ├── glowdust_stone_vertical_slab.json │ │ │ ├── glowdust_stone_wall.json │ │ │ ├── glowsilk_cocoon.json │ │ │ ├── glowstone_brick_slab.json │ │ │ ├── glowstone_brick_stairs.json │ │ │ ├── glowstone_brick_vertical_slab.json │ │ │ ├── glowstone_brick_wall.json │ │ │ ├── glowstone_bricks.json │ │ │ ├── luminous_fungus.json │ │ │ ├── luminous_fungus_cap.json │ │ │ ├── luminous_hyphae.json │ │ │ ├── luminous_stem.json │ │ │ ├── luminous_wart_block.json │ │ │ ├── planted_quartz.json │ │ │ ├── polished_basalt_pressure_plate.json │ │ │ ├── polished_basalt_tiles.json │ │ │ ├── polished_basalt_tiles_slab.json │ │ │ ├── polished_basalt_tiles_vertical_slab.json │ │ │ ├── potted_dullthorns.json │ │ │ ├── potted_luminous_fungus.json │ │ │ ├── potted_shroomlight_fungus.json │ │ │ ├── quartz_glass.json │ │ │ ├── quartz_glass_pane.json │ │ │ ├── rubble.json │ │ │ ├── shroomlight_fungus.json │ │ │ ├── silt.json │ │ │ ├── smooth_dimstone.json │ │ │ ├── smooth_dimstone_button.json │ │ │ ├── smooth_dimstone_slab.json │ │ │ ├── smooth_dimstone_stairs.json │ │ │ ├── smooth_dimstone_vertical_slab.json │ │ │ ├── smooth_dullstone.json │ │ │ ├── smooth_dullstone_button.json │ │ │ ├── smooth_dullstone_slab.json │ │ │ ├── smooth_dullstone_stairs.json │ │ │ ├── smooth_dullstone_vertical_slab.json │ │ │ ├── smooth_glowstone.json │ │ │ ├── smooth_glowstone_button.json │ │ │ ├── smooth_glowstone_pressure_plate.json │ │ │ ├── smooth_glowstone_slab.json │ │ │ ├── smooth_glowstone_stairs.json │ │ │ ├── smooth_glowstone_vertical_slab.json │ │ │ ├── soul_sand_slab.json │ │ │ ├── soul_sand_stairs.json │ │ │ ├── soul_sand_vertical_slab.json │ │ │ ├── soul_slate.json │ │ │ ├── soul_slate_brick_slab.json │ │ │ ├── soul_slate_brick_stairs.json │ │ │ ├── soul_slate_brick_vertical_slab.json │ │ │ ├── soul_slate_brick_wall.json │ │ │ ├── soul_slate_bricks.json │ │ │ ├── soul_slate_button.json │ │ │ ├── soul_slate_pressure_plate.json │ │ │ ├── soul_slate_slab.json │ │ │ ├── soul_slate_stairs.json │ │ │ ├── soul_slate_vertical_slab.json │ │ │ ├── soul_soil_path.json │ │ │ ├── soul_soil_slab.json │ │ │ ├── soul_soil_stairs.json │ │ │ ├── soul_stone.json │ │ │ ├── soul_stone_brick_slab.json │ │ │ ├── soul_stone_brick_stairs.json │ │ │ ├── soul_stone_brick_vertical_slab.json │ │ │ ├── soul_stone_brick_wall.json │ │ │ ├── soul_stone_bricks.json │ │ │ ├── soul_stone_slab.json │ │ │ ├── soul_stone_stairs.json │ │ │ ├── soul_stone_vertical_slab.json │ │ │ ├── soul_stone_wall.json │ │ │ ├── stripped_luminous_hyphae.json │ │ │ ├── stripped_luminous_stem.json │ │ │ ├── warped_fungus_cap.json │ │ │ ├── warped_nylium_carpet.json │ │ │ └── warped_nylium_path.json │ │ ├── chests │ │ │ ├── basalt_delta_ruin.json │ │ │ ├── desolate_bastion_outpost.json │ │ │ └── glowstone_canyon_ruin.json │ │ ├── entities │ │ │ ├── basalt_giant.json │ │ │ ├── blackstone_dwarf.json │ │ │ ├── blindsight.json │ │ │ ├── embody.json │ │ │ ├── glowsilk_moth.json │ │ │ ├── glowsquito.json │ │ │ ├── shroomloin.json │ │ │ ├── voline.json │ │ │ └── warpbeetle.json │ │ └── gameplay │ │ │ └── voline_eat_table.json │ ├── recipes │ │ ├── blasting │ │ │ └── iron_ingot.json │ │ ├── campfire_cooking │ │ │ └── cooked_hogchop.json │ │ ├── crafting │ │ │ ├── crafting_shaped │ │ │ │ ├── basalt_brick_slab.json │ │ │ │ ├── basalt_brick_stairs.json │ │ │ │ ├── basalt_brick_vertical_slab.json │ │ │ │ ├── basalt_brick_wall.json │ │ │ │ ├── basalt_bricks.json │ │ │ │ ├── basalt_cobbled_slab.json │ │ │ │ ├── basalt_cobbles_vertical_slab.json │ │ │ │ ├── basalt_slab.json │ │ │ │ ├── basalt_stairs.json │ │ │ │ ├── basalt_vertical_slab.json │ │ │ │ ├── basalt_wall.json │ │ │ │ ├── blast_furnace_from_smooth_stones.json │ │ │ │ ├── blindsight_tongue_whip.json │ │ │ │ ├── charged_chiseled_soul_slate_bricks.json │ │ │ │ ├── charged_chiseled_soul_stone_bricks.json │ │ │ │ ├── chiseled_basalt_bricks.json │ │ │ │ ├── chiseled_dimstone_bricks.json │ │ │ │ ├── chiseled_dullstone_bricks.json │ │ │ │ ├── chiseled_glowdust_stone_bricks.json │ │ │ │ ├── chiseled_glowstone_bricks.json │ │ │ │ ├── chiseled_soul_slate_bricks.json │ │ │ │ ├── chiseled_soul_stone_brick.json │ │ │ │ ├── crimson_fungus_cap.json │ │ │ │ ├── crimson_nylium_carpet.json │ │ │ │ ├── cured_jerky.json │ │ │ │ ├── dimstone.json │ │ │ │ ├── dimstone_brick_slab.json │ │ │ │ ├── dimstone_brick_stairs.json │ │ │ │ ├── dimstone_brick_vertical_slab.json │ │ │ │ ├── dimstone_brick_wall.json │ │ │ │ ├── dimstone_bricks.json │ │ │ │ ├── dullstone.json │ │ │ │ ├── dullstone_brick_slab.json │ │ │ │ ├── dullstone_brick_stairs.json │ │ │ │ ├── dullstone_brick_vertical_slab.json │ │ │ │ ├── dullstone_brick_wall.json │ │ │ │ ├── dullstone_bricks.json │ │ │ │ ├── dullthorns_block.json │ │ │ │ ├── firecharge_torch.json │ │ │ │ ├── glow_campfire.json │ │ │ │ ├── glow_glass_pane.json │ │ │ │ ├── glow_lantern.json │ │ │ │ ├── glow_torch.json │ │ │ │ ├── glowdust.json │ │ │ │ ├── glowdust_stone.json │ │ │ │ ├── glowdust_stone_brick_slab.json │ │ │ │ ├── glowdust_stone_brick_stairs.json │ │ │ │ ├── glowdust_stone_brick_vertical_slab.json │ │ │ │ ├── glowdust_stone_brick_wall.json │ │ │ │ ├── glowdust_stone_bricks.json │ │ │ │ ├── glowdust_stone_slab.json │ │ │ │ ├── glowdust_stone_stairs.json │ │ │ │ ├── glowdust_stone_vertical_slab.json │ │ │ │ ├── glowdust_stone_wall.json │ │ │ │ ├── glowsilk_bow.json │ │ │ │ ├── glowstone_brick_slab.json │ │ │ │ ├── glowstone_brick_stairs.json │ │ │ │ ├── glowstone_brick_vertical_slab.json │ │ │ │ ├── glowstone_brick_wall.json │ │ │ │ ├── glowstone_bricks.json │ │ │ │ ├── gold_ingots_from_molten_gold_cluster.json │ │ │ │ ├── infernal_painting.json │ │ │ │ ├── luminous_fungus_cap.json │ │ │ │ ├── magmatic_chiseled_basalt_bricks.json │ │ │ │ ├── paper_from_mushrooms.json │ │ │ │ ├── polished_basalt_pressure_plate.json │ │ │ │ ├── polished_basalt_slab.json │ │ │ │ ├── polished_basalt_tiles.json │ │ │ │ ├── polished_basalt_tiles_slab.json │ │ │ │ ├── polished_basalt_tiles_vertical_slab.json │ │ │ │ ├── polished_basalt_vertical_slab.json │ │ │ │ ├── quartz_glass.json │ │ │ │ ├── quartz_glass_pane.json │ │ │ │ ├── shroomlight.json │ │ │ │ ├── smooth_dimstone_slab.json │ │ │ │ ├── smooth_dimstone_stairs.json │ │ │ │ ├── smooth_dimstone_vertical_slab.json │ │ │ │ ├── smooth_dullstone_slab.json │ │ │ │ ├── smooth_dullstone_stairs.json │ │ │ │ ├── smooth_dullstone_vertical_slab.json │ │ │ │ ├── smooth_glowstone_pressure_plate.json │ │ │ │ ├── smooth_glowstone_slab.json │ │ │ │ ├── smooth_glowstone_stairs.json │ │ │ │ ├── smooth_glowstone_vertical_slab.json │ │ │ │ ├── soul_sand_slab.json │ │ │ │ ├── soul_sand_stairs.json │ │ │ │ ├── soul_sand_vertical_slab.json │ │ │ │ ├── soul_slate_brick_vertical_slab.json │ │ │ │ ├── soul_slate_bricks.json │ │ │ │ ├── soul_slate_bricks_slab.json │ │ │ │ ├── soul_slate_bricks_stairs.json │ │ │ │ ├── soul_slate_bricks_wall.json │ │ │ │ ├── soul_slate_pressure_plate.json │ │ │ │ ├── soul_slate_slab.json │ │ │ │ ├── soul_slate_stairs.json │ │ │ │ ├── soul_slate_vertical_slab.json │ │ │ │ ├── soul_soil_slab.json │ │ │ │ ├── soul_soil_stairs.json │ │ │ │ ├── soul_soil_vertical_slab.json │ │ │ │ ├── soul_stone_brick_vertical_slab.json │ │ │ │ ├── soul_stone_bricks.json │ │ │ │ ├── soul_stone_bricks_slab.json │ │ │ │ ├── soul_stone_bricks_stairs.json │ │ │ │ ├── soul_stone_bricks_wall.json │ │ │ │ ├── soul_stone_slab.json │ │ │ │ ├── soul_stone_stairs.json │ │ │ │ ├── soul_stone_vertical_slab.json │ │ │ │ ├── soul_stone_wall.json │ │ │ │ ├── spirit_eye.json │ │ │ │ ├── trapped_glowdust_sand.json │ │ │ │ ├── warped_fungus_cap.json │ │ │ │ └── warped_nylium_carpet.json │ │ │ └── crafting_shapeless │ │ │ │ ├── basalt_brick_slab.json │ │ │ │ ├── basalt_button.json │ │ │ │ ├── basalt_cobbled_slab.json │ │ │ │ ├── basalt_slab.json │ │ │ │ ├── blindsight_tongue_stew.json │ │ │ │ ├── crimson_fungus.json │ │ │ │ ├── dimstone_brick_slab.json │ │ │ │ ├── dullstone_brick_slab.json │ │ │ │ ├── glowdust_stone_brick_slab.json │ │ │ │ ├── glowdust_stone_slab.json │ │ │ │ ├── glowstone_brick_slab.json │ │ │ │ ├── gold_ingot_from_molten_cluster_1.json │ │ │ │ ├── gold_ingot_from_molten_cluster_2.json │ │ │ │ ├── luminous_fungus.json │ │ │ │ ├── polished_basalt_slab.json │ │ │ │ ├── polished_basalt_tiles_slab.json │ │ │ │ ├── smooth_dimstone_button.json │ │ │ │ ├── smooth_dimstone_slab.json │ │ │ │ ├── smooth_dullstone_button.json │ │ │ │ ├── smooth_dullstone_slab.json │ │ │ │ ├── smooth_glowstone_button.json │ │ │ │ ├── smooth_glowstone_slab.json │ │ │ │ ├── soul_sand_slab.json │ │ │ │ ├── soul_slate_brick_slab.json │ │ │ │ ├── soul_slate_button.json │ │ │ │ ├── soul_slate_slab.json │ │ │ │ ├── soul_soil_slab.json │ │ │ │ ├── soul_stone_brick_slab.json │ │ │ │ ├── soul_stone_slab.json │ │ │ │ ├── sticks_from_dullthorns.json │ │ │ │ └── warped_fungus.json │ │ ├── smelting │ │ │ ├── basalt_cobbled.json │ │ │ ├── cooked_hogchop.json │ │ │ ├── cracked_basalt_bricks.json │ │ │ ├── cracked_dimstone_bricks.json │ │ │ ├── cracked_dullstone_bricks.json │ │ │ ├── cracked_glowdust_stone_bricks.json │ │ │ ├── cracked_glowstone_bricks.json │ │ │ ├── cracked_soul_slate_bricks.json │ │ │ ├── cracked_soul_stone_bricks.json │ │ │ ├── glass.json │ │ │ ├── glow_glass.json │ │ │ ├── iron_ingot.json │ │ │ ├── smooth_dimstone.json │ │ │ ├── smooth_dullstone.json │ │ │ ├── smooth_glowstone.json │ │ │ ├── soul_slate.json │ │ │ └── soul_stone.json │ │ ├── smithing │ │ │ └── glowsilk_bow.json │ │ ├── smoking │ │ │ └── cooked_hogchop.json │ │ └── stonecutting │ │ │ ├── basalt_bricks.json │ │ │ ├── basalt_bricks_slab.json │ │ │ ├── basalt_bricks_stairs.json │ │ │ ├── basalt_bricks_vertical_slab.json │ │ │ ├── basalt_bricks_wall.json │ │ │ ├── basalt_cobbled_slab.json │ │ │ ├── basalt_cobbled_slab_vertical.json │ │ │ ├── basalt_slab.json │ │ │ ├── basalt_stairs.json │ │ │ ├── basalt_vertical_slab.json │ │ │ ├── basalt_wall.json │ │ │ ├── chiseled_basalt_bricks.json │ │ │ ├── chiseled_dimstone_bricks.json │ │ │ ├── chiseled_dullstone_bricks.json │ │ │ ├── chiseled_glowdust_stone_bricks.json │ │ │ ├── chiseled_glowstone_bricks.json │ │ │ ├── chiseled_soul_slate_brick_from_soul_slate.json │ │ │ ├── chiseled_soul_slate_brick_from_soul_slate_bricks.json │ │ │ ├── chiseled_soul_stone_brick_from_soul_stone.json │ │ │ ├── chiseled_soul_stone_bricks_from_soul_stone_bricks.json │ │ │ ├── dimstone_brick_slab.json │ │ │ ├── dimstone_brick_stairs.json │ │ │ ├── dimstone_brick_vertical_slab.json │ │ │ ├── dimstone_brick_wall.json │ │ │ ├── dimstone_bricks.json │ │ │ ├── dullstone_brick_slab.json │ │ │ ├── dullstone_brick_stairs.json │ │ │ ├── dullstone_brick_vertical_slab.json │ │ │ ├── dullstone_brick_wall.json │ │ │ ├── dullstone_bricks.json │ │ │ ├── glowdust_stone_brick_slab.json │ │ │ ├── glowdust_stone_brick_stairs.json │ │ │ ├── glowdust_stone_brick_vertical_slab.json │ │ │ ├── glowdust_stone_brick_wall.json │ │ │ ├── glowdust_stone_slab.json │ │ │ ├── glowdust_stone_stairs.json │ │ │ ├── glowdust_stone_vertical_slab.json │ │ │ ├── glowdust_stone_wall.json │ │ │ ├── glowstone_brick_slab.json │ │ │ ├── glowstone_brick_stairs.json │ │ │ ├── glowstone_brick_vertical_slab.json │ │ │ ├── glowstone_brick_wall.json │ │ │ ├── glowstone_bricks.json │ │ │ ├── polished_basalt_slab.json │ │ │ ├── polished_basalt_tiles.json │ │ │ ├── polished_basalt_tiles_slab.json │ │ │ ├── polished_basalt_tiles_vertical_slab.json │ │ │ ├── polished_basalt_vertical_slab.json │ │ │ ├── smooth_dimstone_slab.json │ │ │ ├── smooth_dimstone_stairs.json │ │ │ ├── smooth_dimstone_vertical_slab.json │ │ │ ├── smooth_dullstone_slab.json │ │ │ ├── smooth_dullstone_stairs.json │ │ │ ├── smooth_dullstone_vertical_slab.json │ │ │ ├── smooth_glowstone_slab.json │ │ │ ├── smooth_glowstone_stairs.json │ │ │ ├── smooth_glowstone_vertical_slab.json │ │ │ ├── soul_slate_brick_wall_from_soul_slate.json │ │ │ ├── soul_slate_brick_wall_from_soul_slate_bricks.json │ │ │ ├── soul_slate_bricks.json │ │ │ ├── soul_slate_bricks_slab_from_soul_slate.json │ │ │ ├── soul_slate_bricks_slab_from_soul_slate_bricks.json │ │ │ ├── soul_slate_bricks_stairs_from_soul_slate.json │ │ │ ├── soul_slate_bricks_stairs_from_soul_slate_bricks.json │ │ │ ├── soul_slate_bricks_vertical_slab_from_soul_slate.json │ │ │ ├── soul_slate_bricks_vertical_slab_from_soul_slate_bricks.json │ │ │ ├── soul_slate_slab.json │ │ │ ├── soul_slate_stairs.json │ │ │ ├── soul_slate_vertical_slab.json │ │ │ ├── soul_stone_brick_slab_from_soul_stone.json │ │ │ ├── soul_stone_brick_stairs_from_soul_stone.json │ │ │ ├── soul_stone_brick_stonecut.json │ │ │ ├── soul_stone_brick_vertical_slab_from_soul_stone.json │ │ │ ├── soul_stone_brick_wall_from_soul_stone.json │ │ │ ├── soul_stone_bricks_slab_from_soul_stone_bricks.json │ │ │ ├── soul_stone_bricks_stairs_from_soul_stone_bricks.json │ │ │ ├── soul_stone_bricks_wall_from_soul_stone_bricks.json │ │ │ ├── soul_stone_slab_from_soul_stone.json │ │ │ ├── soul_stone_stairs.json │ │ │ └── soul_stone_wall.json │ ├── structures │ │ ├── basalt_deltas │ │ │ ├── strider_altar_1.nbt │ │ │ ├── strider_altar_2.nbt │ │ │ ├── strider_altar_3.nbt │ │ │ ├── strider_altar_4.nbt │ │ │ └── strider_altar_5.nbt │ │ ├── glowstone_canyon │ │ │ ├── cross_altar.nbt │ │ │ ├── cross_altar_1.nbt │ │ │ ├── cross_altar_2.nbt │ │ │ ├── cross_altar_3.nbt │ │ │ ├── desolate_bastion_outpost_1.nbt │ │ │ ├── desolate_bastion_outpost_2.nbt │ │ │ ├── desolate_bastion_outpost_3.nbt │ │ │ ├── desolate_bastion_outpost_4.nbt │ │ │ ├── desolate_bastion_outpost_5.nbt │ │ │ ├── grand_heaven_portal_1.nbt │ │ │ ├── grand_heaven_portal_2.nbt │ │ │ ├── grand_heaven_portal_3.nbt │ │ │ ├── grand_heaven_portal_4.nbt │ │ │ ├── grand_heaven_portal_5.nbt │ │ │ ├── half_arch_ruin.nbt │ │ │ ├── heaven_1.nbt │ │ │ ├── heaven_10.nbt │ │ │ ├── heaven_11.nbt │ │ │ ├── heaven_12.nbt │ │ │ ├── heaven_13.nbt │ │ │ ├── heaven_2.nbt │ │ │ ├── heaven_3.nbt │ │ │ ├── heaven_4.nbt │ │ │ ├── heaven_5.nbt │ │ │ ├── heaven_6.nbt │ │ │ ├── heaven_7.nbt │ │ │ ├── heaven_8.nbt │ │ │ ├── heaven_9.nbt │ │ │ ├── mosquito_altar.nbt │ │ │ ├── platform_altar.nbt │ │ │ ├── portal_ruin.nbt │ │ │ └── shrine_altar.nbt │ │ └── soul_sand_valley │ │ │ ├── soul_brazier_1.nbt │ │ │ ├── soul_brazier_2.nbt │ │ │ ├── soul_brazier_3.nbt │ │ │ ├── soul_pike_1.nbt │ │ │ └── soul_pike_2.nbt │ ├── tags │ │ ├── blocks │ │ │ ├── anger_brown_shroomloin_blocks.json │ │ │ ├── anger_crimson_shroomloin_blocks.json │ │ │ ├── anger_luminous_shroomloin_blocks.json │ │ │ ├── anger_red_shroomloin_blocks.json │ │ │ ├── anger_warped_shroomloin_blocks.json │ │ │ ├── base_stone_canyon.json │ │ │ ├── base_stone_shores.json │ │ │ ├── buried_bone_base_blocks.json │ │ │ ├── dullthorns_ground.json │ │ │ ├── embody_fall_blocks.json │ │ │ ├── glow_fire_base_blocks.json │ │ │ ├── glowstone_canyon_carver_replaceables.json │ │ │ ├── luminous_fungus_base_blocks.json │ │ │ ├── luminous_fungus_spawnable_on_blocks.json │ │ │ ├── magma_cube_avoid_blocks.json │ │ │ └── planted_quartz_base_blocks.json │ │ ├── items │ │ │ ├── glowsilk_repair_blacklist.json │ │ │ └── glowstone_canyon_blocks.json │ │ ├── painting_variant │ │ │ └── infernal_placeable.json │ │ └── worldgen │ │ │ ├── biome │ │ │ └── has_structure │ │ │ │ ├── bastion_outpost.json │ │ │ │ ├── glowstone_canyon_ruin.json │ │ │ │ ├── soul_sand_valley_ruin.json │ │ │ │ └── strider_altar.json │ │ │ └── configured_structure_feature │ │ │ └── no_intersecting_features.json │ └── worldgen │ │ └── processor_list │ │ └── structure_chests │ │ └── generic.json ├── minecraft │ └── tags │ │ ├── blocks │ │ ├── base_stone_nether.json │ │ ├── buttons.json │ │ ├── campfires.json │ │ ├── hoglin_repellents.json │ │ ├── logs.json │ │ ├── mineable │ │ │ ├── hoe.json │ │ │ ├── pickaxe.json │ │ │ └── shovel.json │ │ ├── needs_diamond_tool.json │ │ ├── sculk_replaceable.json │ │ ├── slabs.json │ │ ├── soul_fire_base_blocks.json │ │ ├── soul_speed_blocks.json │ │ ├── stairs.json │ │ ├── stone_pressure_plates.json │ │ ├── strider_warm_blocks.json │ │ ├── wall_post_override.json │ │ ├── walls.json │ │ └── wart_blocks.json │ │ ├── items │ │ ├── buttons.json │ │ ├── coals.json │ │ ├── fungus.json │ │ ├── mushrooms.json │ │ ├── slabs.json │ │ ├── smooth_stones.json │ │ ├── stairs.json │ │ └── walls.json │ │ └── worldgen │ │ └── biome │ │ └── is_nether.json ├── miningmaster │ ├── recipes │ │ └── forging │ │ │ └── kinetic_tongue_whip.json │ └── tags │ │ └── items │ │ └── catalysts.json └── quark │ └── tags │ ├── blocks │ └── vertical_slab.json │ └── items │ └── vertical_slab.json ├── infernal-expansion.mixins.json └── pack.mcmeta /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/addition_or_enhancement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/.github/ISSUE_TEMPLATE/addition_or_enhancement.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/CONTRIBUTE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/InfernalExpansion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/InfernalExpansion.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/blocks/BlockItemBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/blocks/BlockItemBase.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/blocks/BuriedBoneBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/blocks/BuriedBoneBlock.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/blocks/DullthornsBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/blocks/DullthornsBlock.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/blocks/FungusCapBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/blocks/FungusCapBlock.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/blocks/GlowFireBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/blocks/GlowFireBlock.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/blocks/GlowSandBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/blocks/GlowSandBlock.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/blocks/GlowTorchBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/blocks/GlowTorchBlock.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/blocks/GlowdustBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/blocks/GlowdustBlock.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/capabilities/WhipUpdate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/capabilities/WhipUpdate.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/config/ClientConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/config/ClientConfig.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/config/CommonConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/config/CommonConfig.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/config/ConfigHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/config/ConfigHelper.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/config/ConfigHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/config/ConfigHolder.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/data/SpawnrateManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/data/SpawnrateManager.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/data/VolineEatTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/data/VolineEatTable.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/effects/EffectBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/effects/EffectBase.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/effects/InfectionEffect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/effects/InfectionEffect.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/entities/EmbodyEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/entities/EmbodyEntity.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/entities/IBucketable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/entities/IBucketable.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/entities/IResizable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/entities/IResizable.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/entities/PyrnoEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/entities/PyrnoEntity.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/entities/VolineEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/entities/VolineEntity.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/events/ClientEvents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/events/ClientEvents.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/events/MiscEvents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/events/MiscEvents.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/events/MobEvents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/events/MobEvents.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/events/WorldEvents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/events/WorldEvents.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IEBiomeModifiers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IEBiomeModifiers.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IEBiomes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IEBiomes.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IEBlockEntityTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IEBlockEntityTypes.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IEBlocks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IEBlocks.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IEBrewingRecipes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IEBrewingRecipes.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IECapabilities.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IECapabilities.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IECarvers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IECarvers.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IECommands.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IECommands.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IECompostables.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IECompostables.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IEEffects.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IEEffects.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IEEntityTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IEEntityTypes.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IEFeatures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IEFeatures.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IEFireTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IEFireTypes.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IEItemTiers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IEItemTiers.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IEItems.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IEItems.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IELootModifiers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IELootModifiers.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IEPaintings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IEPaintings.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IEParticleTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IEParticleTypes.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IEPlacedFeatures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IEPlacedFeatures.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IEPotions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IEPotions.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IEProcessors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IEProcessors.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IEShroomloinTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IEShroomloinTypes.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IESoundEvents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IESoundEvents.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IEStructurePools.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IEStructurePools.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IEStructureSets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IEStructureSets.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IEStructureTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IEStructureTypes.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IEStructures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IEStructures.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IESurfaceRules.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IESurfaceRules.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/init/IETags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/init/IETags.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/items/AscusBombItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/items/AscusBombItem.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/items/EntityBucketItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/items/EntityBucketItem.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/items/GlowcoalItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/items/GlowcoalItem.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/items/GlowsilkBowItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/items/GlowsilkBowItem.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/items/IFuel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/items/IFuel.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/items/ItemBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/items/ItemBase.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/items/SlurpItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/items/SlurpItem.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/items/SlurpSoupItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/items/SlurpSoupItem.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/items/WhipItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/items/WhipItem.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/network/WhipReachPacket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/network/WhipReachPacket.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/util/CompatibilityQuark.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/util/CompatibilityQuark.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/util/CompatibilityUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/util/CompatibilityUtil.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/util/InjectionUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/util/InjectionUtil.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/util/ShapeUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/util/ShapeUtil.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/util/ShroomloinType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/util/ShroomloinType.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/util/WorldSeedHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/util/WorldSeedHolder.java -------------------------------------------------------------------------------- /src/main/java/org/infernalstudios/infernalexp/world/biome/IEBiome.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/java/org/infernalstudios/infernalexp/world/biome/IEBiome.java -------------------------------------------------------------------------------- /src/main/js/META-INF/coremods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/js/META-INF/coremods.json -------------------------------------------------------------------------------- /src/main/js/coremods/BlockGetterCoreMod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/js/coremods/BlockGetterCoreMod.js -------------------------------------------------------------------------------- /src/main/resources/Infernal_Expansion_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/Infernal_Expansion_Logo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/accesstransformer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/META-INF/accesstransformer.cfg -------------------------------------------------------------------------------- /src/main/resources/META-INF/mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/META-INF/mods.toml -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/basalt_brick_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/basalt_brick_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/basalt_brick_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/basalt_brick_stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/basalt_brick_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/basalt_brick_wall.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/basalt_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/basalt_bricks.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/basalt_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/basalt_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/basalt_cobbled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/basalt_cobbled.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/basalt_cobbled_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/basalt_cobbled_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/basalt_iron_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/basalt_iron_ore.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/basalt_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/basalt_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/basalt_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/basalt_stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/basalt_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/basalt_wall.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/basaltic_magma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/basaltic_magma.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/buried_bone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/buried_bone.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/crimson_fungus_cap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/crimson_fungus_cap.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/crimson_nylium_path.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/crimson_nylium_path.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/dimstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/dimstone.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/dimstone_brick_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/dimstone_brick_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/dimstone_brick_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/dimstone_brick_wall.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/dimstone_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/dimstone_bricks.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/dullstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/dullstone.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/dullstone_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/dullstone_bricks.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/dullthorns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/dullthorns.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/dullthorns_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/dullthorns_block.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/glow_campfire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/glow_campfire.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/glow_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/glow_fire.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/glow_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/glow_glass.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/glow_glass_pane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/glow_glass_pane.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/glow_lantern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/glow_lantern.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/glow_torch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/glow_torch.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/glow_torch_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/glow_torch_wall.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/glowdust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/glowdust.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/glowdust_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/glowdust_sand.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/glowdust_stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/glowdust_stone.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/glowdust_stone_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/glowdust_stone_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/glowdust_stone_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/glowdust_stone_wall.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/glowsilk_cocoon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/glowsilk_cocoon.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/glowstone_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/glowstone_bricks.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/luminous_fungus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/luminous_fungus.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/luminous_fungus_cap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/luminous_fungus_cap.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/luminous_hyphae.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/luminous_hyphae.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/luminous_stem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/luminous_stem.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/luminous_wart_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/luminous_wart_block.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/planted_quartz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/planted_quartz.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/potted_buried_bone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/potted_buried_bone.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/potted_dullthorns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/potted_dullthorns.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/quartz_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/quartz_glass.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/quartz_glass_pane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/quartz_glass_pane.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/rubble.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/rubble.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/shroomlight_fungus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/shroomlight_fungus.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/silt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/silt.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/smooth_dimstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/smooth_dimstone.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/smooth_dullstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/smooth_dullstone.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/smooth_glowstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/smooth_glowstone.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/soul_sand_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/soul_sand_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/soul_sand_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/soul_sand_stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/soul_slate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/soul_slate.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/soul_slate_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/soul_slate_bricks.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/soul_slate_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/soul_slate_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/soul_slate_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/soul_slate_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/soul_slate_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/soul_slate_stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/soul_soil_path.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/soul_soil_path.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/soul_soil_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/soul_soil_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/soul_soil_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/soul_soil_stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/soul_stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/soul_stone.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/soul_stone_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/soul_stone_bricks.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/soul_stone_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/soul_stone_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/soul_stone_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/soul_stone_stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/soul_stone_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/soul_stone_wall.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/warped_fungus_cap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/warped_fungus_cap.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/blockstates/warped_nylium_path.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/blockstates/warped_nylium_path.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/infernal_resources.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/infernal_resources.zip -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/lang/cs_cz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/lang/cs_cz.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/lang/de_de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/lang/de_de.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/lang/en_us.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/lang/es_ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/lang/es_ar.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/lang/es_es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/lang/es_es.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/lang/fr_ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/lang/fr_ca.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/lang/fr_fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/lang/fr_fr.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/lang/he_il.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/lang/he_il.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/lang/id_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/lang/id_id.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/lang/ja_jp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/lang/ja_jp.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/lang/lol_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/lang/lol_us.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/lang/lv_lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/lang/lv_lv.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/lang/ms_my.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/lang/ms_my.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/lang/nl_nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/lang/nl_nl.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/lang/pl_pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/lang/pl_pl.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/lang/pt_br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/lang/pt_br.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/lang/ro_ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/lang/ro_ro.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/lang/ru_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/lang/ru_ru.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/lang/zh_tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/lang/zh_tw.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/basalt_brick_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/basalt_brick_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/basalt_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/basalt_bricks.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/basalt_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/basalt_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/basalt_cobbled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/basalt_cobbled.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/basalt_iron_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/basalt_iron_ore.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/basalt_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/basalt_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/basalt_slab_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/basalt_slab_top.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/basalt_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/basalt_stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/basalt_wall_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/basalt_wall_post.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/basalt_wall_side.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/basalt_wall_side.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/basaltic_magma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/basaltic_magma.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/buried_bone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/buried_bone.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/buried_bone_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/buried_bone_2.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/crimson_fungus_cap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/crimson_fungus_cap.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dimstone/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dimstone/0.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dimstone/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dimstone/1.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dimstone/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dimstone/10.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dimstone/11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dimstone/11.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dimstone/12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dimstone/12.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dimstone/13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dimstone/13.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dimstone/14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dimstone/14.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dimstone/15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dimstone/15.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dimstone/16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dimstone/16.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dimstone/17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dimstone/17.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dimstone/18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dimstone/18.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dimstone/19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dimstone/19.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dimstone/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dimstone/2.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dimstone/20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dimstone/20.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dimstone/21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dimstone/21.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dimstone/22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dimstone/22.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dimstone/23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dimstone/23.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dimstone/24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dimstone/24.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dimstone/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dimstone/3.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dimstone/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dimstone/4.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dimstone/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dimstone/5.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dimstone/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dimstone/6.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dimstone/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dimstone/7.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dimstone/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dimstone/8.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dimstone/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dimstone/9.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dimstone_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dimstone_bricks.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dullstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dullstone.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dullstone_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dullstone_bricks.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dullthorns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dullthorns.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dullthorns_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dullthorns_block.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/dullthorns_tip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/dullthorns_tip.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/glow_campfire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/glow_campfire.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/glow_campfire_off.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/glow_campfire_off.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/glow_fire_floor0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/glow_fire_floor0.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/glow_fire_floor1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/glow_fire_floor1.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/glow_fire_side0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/glow_fire_side0.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/glow_fire_side1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/glow_fire_side1.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/glow_fire_up0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/glow_fire_up0.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/glow_fire_up1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/glow_fire_up1.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/glow_fire_up_alt0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/glow_fire_up_alt0.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/glow_fire_up_alt1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/glow_fire_up_alt1.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/glow_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/glow_glass.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/glow_lantern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/glow_lantern.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/glow_torch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/glow_torch.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/glow_torch_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/glow_torch_wall.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/glowdust_height10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/glowdust_height10.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/glowdust_height12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/glowdust_height12.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/glowdust_height14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/glowdust_height14.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/glowdust_height2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/glowdust_height2.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/glowdust_height4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/glowdust_height4.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/glowdust_height6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/glowdust_height6.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/glowdust_height8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/glowdust_height8.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/glowdust_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/glowdust_sand.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/glowdust_stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/glowdust_stone.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/glowsilk_cocoon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/glowsilk_cocoon.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/glowstone_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/glowstone_bricks.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/luminous_fungus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/luminous_fungus.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/luminous_fungus_on.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/luminous_fungus_on.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/luminous_hyphae.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/luminous_hyphae.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/luminous_stem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/luminous_stem.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/planted_quartz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/planted_quartz.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/planted_quartz_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/planted_quartz_2.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/polished_dimstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/polished_dimstone.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/polished_dullstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/polished_dullstone.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/polished_glowstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/polished_glowstone.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/potted_buried_bone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/potted_buried_bone.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/potted_dullthorns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/potted_dullthorns.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/quartz_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/quartz_glass.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/rubble.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/rubble.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/shroomlight_fungus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/shroomlight_fungus.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/silt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/silt.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/smooth_dimstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/smooth_dimstone.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/smooth_dullstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/smooth_dullstone.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/smooth_glowstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/smooth_glowstone.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/soul_sand_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/soul_sand_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/soul_sand_slab_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/soul_sand_slab_top.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/soul_sand_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/soul_sand_stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/soul_slate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/soul_slate.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/soul_slate_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/soul_slate_bricks.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/soul_slate_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/soul_slate_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/soul_slate_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/soul_slate_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/soul_slate_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/soul_slate_stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/soul_soil_path.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/soul_soil_path.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/soul_soil_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/soul_soil_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/soul_soil_slab_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/soul_soil_slab_top.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/soul_soil_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/soul_soil_stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/soul_stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/soul_stone.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/soul_stone_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/soul_stone_bricks.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/soul_stone_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/soul_stone_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/soul_stone_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/soul_stone_stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/vertical_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/vertical_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/warped_fungus_cap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/warped_fungus_cap.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/block/warped_nylium_path.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/block/warped_nylium_path.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/ascus_bomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/ascus_bomb.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/basalt_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/basalt_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/basalt_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/basalt_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/basalt_brick_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/basalt_brick_vertical_slab" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/basalt_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/basalt_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/basalt_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/basalt_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/basalt_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/basalt_button_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/basalt_cobbled.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/basalt_cobbled" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/basalt_cobbled_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/basalt_cobbled_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/basalt_cobbled_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/basalt_cobbled_vertical_slab" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/basalt_giant_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/basalt_iron_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/basalt_iron_ore" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/basalt_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/basalt_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/basalt_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/basalt_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/basalt_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/basalt_vertical_slab" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/basalt_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/basalt_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/basaltic_magma.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/basaltic_magma" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/blackstone_dwarf_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/blindsight_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/blindsight_tongue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/blindsight_tongue.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/buried_bone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/buried_bone.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/cerobeetle_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/charged_chiseled_soul_slate_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/charged_chiseled_soul_slate_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/charged_chiseled_soul_stone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/charged_chiseled_soul_stone_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/chiseled_basalt_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/chiseled_basalt_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/chiseled_dimstone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/chiseled_dimstone_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/chiseled_dullstone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/chiseled_dullstone_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/chiseled_glowdust_stone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/chiseled_glowdust_stone_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/chiseled_glowstone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/chiseled_glowstone_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/chiseled_soul_slate_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/chiseled_soul_slate_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/chiseled_soul_stone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/chiseled_soul_stone_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/cooked_hogchop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/cooked_hogchop.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/cracked_basalt_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/cracked_basalt_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/cracked_dimstone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/cracked_dimstone_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/cracked_dullstone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/cracked_dullstone_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/cracked_glowdust_stone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/cracked_glowdust_stone_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/cracked_glowstone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/cracked_glowstone_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/cracked_soul_slate_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/cracked_soul_slate_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/cracked_soul_stone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/cracked_soul_stone_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/crimson_fungus_cap.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/crimson_fungus_cap" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/crimson_nylium_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/crimson_nylium_carpet" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/crimson_nylium_path.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/crimson_nylium_path" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/crumbling_blackstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/crumbling_blackstone/3" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/cured_jerky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/cured_jerky.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/cut_glowdust_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/cut_glowdust_sandstone" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/cut_glowdust_sandstone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/cut_glowdust_sandstone_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/dimstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/dimstone/18" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/dimstone_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/dimstone_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/dimstone_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/dimstone_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/dimstone_brick_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/dimstone_brick_vertical_slab" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/dimstone_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/dimstone_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/dimstone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/dimstone_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/dullstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/dullstone" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/dullstone_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/dullstone_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/dullstone_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/dullstone_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/dullstone_brick_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/dullstone_brick_vertical_slab" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/dullstone_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/dullstone_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/dullstone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/dullstone_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/dullthorns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/dullthorns.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/dullthorns_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/dullthorns_block.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/embody_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glow_campfire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/glow_campfire.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glow_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/glow_glass" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glow_glass_pane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/glow_glass_pane.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glow_lantern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/glow_lantern.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glow_torch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/glow_torch.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glowcoal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/glowcoal.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glowdust.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/glowdust_height2" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glowdust_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/glowdust_sand" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glowdust_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/glowdust_stone" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glowdust_stone_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/glowdust_stone_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glowdust_stone_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/glowdust_stone_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glowdust_stone_brick_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/glowdust_stone_brick_vertical_slab" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glowdust_stone_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/glowdust_stone_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glowdust_stone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/glowdust_stone_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glowdust_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/glowdust_stone_slab" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glowdust_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/glowdust_stone_stairs" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glowdust_stone_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/glowdust_stone_vertical_slab" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glowdust_stone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/glowdust_stone_wall_inventory" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glownuggets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/glownuggets.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glowsilk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/glowsilk.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glowsilk_bow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/glowsilk_bow.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glowsilk_cocoon.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/glowsilk_cocoon" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glowsilk_moth_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glowsquito_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glowstone_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/glowstone_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glowstone_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/glowstone_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glowstone_brick_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/glowstone_brick_vertical_slab" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glowstone_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/glowstone_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/glowstone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/glowstone_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/infernal_painting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/infernal_painting.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/kinetic_tongue_whip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/kinetic_tongue_whip.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/luminous_fungus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/luminous_fungus.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/luminous_fungus_cap.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/luminous_fungus_cap" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/luminous_hyphae.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/luminous_hyphae" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/luminous_stem.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/luminous_stem" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/luminous_wart_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/luminous_wart_block.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/magma_cube_bucket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/magma_cube_bucket.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/magmatic_chiseled_basalt_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/magmatic_chiseled_basalt_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/molten_gold_cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/molten_gold_cluster.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/moth_dust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/moth_dust.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/music_disc_flush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/music_disc_flush.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/polished_basalt_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/polished_basalt_pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/polished_basalt_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/polished_basalt_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/polished_basalt_tiles.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/polished_basalt_tiles" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/polished_basalt_tiles_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/polished_basalt_tiles_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/polished_basalt_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/polished_basalt_vertical_slab" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/pyrno_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/quartz_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/quartz_glass" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/quartz_glass_pane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/quartz_glass_pane.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/raw_hogchop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/raw_hogchop.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/rubble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/rubble" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/shroomlight_fungus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/shroomlight_fungus.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/shroomloin_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/silt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/silt" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/smooth_dimstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/smooth_dimstone" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/smooth_dimstone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/smooth_dimstone_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/smooth_dimstone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/smooth_dimstone_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/smooth_dimstone_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/smooth_dimstone_vertical_slab" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/smooth_dullstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/smooth_dullstone" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/smooth_dullstone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/smooth_dullstone_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/smooth_dullstone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/smooth_dullstone_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/smooth_dullstone_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/smooth_dullstone_vertical_slab" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/smooth_glowstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/smooth_glowstone" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/smooth_glowstone_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/smooth_glowstone_pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/smooth_glowstone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/smooth_glowstone_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/smooth_glowstone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/smooth_glowstone_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/smooth_glowstone_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/smooth_glowstone_vertical_slab" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/soul_salt_clump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/soul_salt_clump.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/soul_sand_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/soul_sand_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/soul_sand_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/soul_sand_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/soul_sand_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/soul_sand_vertical_slab" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/soul_slate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/soul_slate" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/soul_slate_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/soul_slate_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/soul_slate_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/soul_slate_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/soul_slate_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/soul_slate_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/soul_slate_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/soul_slate_button_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/soul_slate_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/soul_slate_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/soul_slate_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/soul_slate_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/soul_soil_path.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/soul_soil_path" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/soul_soil_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/soul_soil_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/soul_soil_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/soul_soil_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/soul_soil_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/soul_soil_vertical_slab" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/soul_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/soul_stone" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/soul_stone_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/soul_stone_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/soul_stone_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/soul_stone_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/soul_stone_brick_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/soul_stone_brick_vertical_slab" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/soul_stone_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/soul_stone_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/soul_stone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/soul_stone_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/soul_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/soul_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/soul_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/soul_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/soul_stone_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/soul_stone_vertical_slab" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/soul_stone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/soul_stone_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/spirit_eye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/spirit_eye.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/strider_bucket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/strider_bucket.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/stripped_luminous_hyphae.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/stripped_luminous_hyphae" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/stripped_luminous_stem.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/stripped_luminous_stem" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/tab_icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/tab_icon.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/trapped_glowdust_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/trapped_glowdust_sand" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/voline_bucket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/models/item/voline_bucket.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/voline_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/warpbeetle_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/warped_fungus_cap.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/warped_fungus_cap" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/models/item/warped_nylium_path.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "infernalexp:block/warped_nylium_path" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/particles/glowstone_sparkle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/particles/glowstone_sparkle.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/particles/infection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/particles/infection.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/sounds.json -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/sounds/block/dullstone/break1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/sounds/block/dullstone/break1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/sounds/block/dullstone/break2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/sounds/block/dullstone/break2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/sounds/block/dullstone/step1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/sounds/block/dullstone/step1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/sounds/block/dullstone/step2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/sounds/block/dullstone/step2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/sounds/block/dullstone/step3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/sounds/block/dullstone/step3.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/sounds/block/glowstone/recharge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/sounds/block/glowstone/recharge.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/sounds/block/quartz_glass/hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/sounds/block/quartz_glass/hit.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/sounds/block/soul_stone/break1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/sounds/block/soul_stone/break1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/sounds/block/soul_stone/break2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/sounds/block/soul_stone/break2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/sounds/block/soul_stone/break3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/sounds/block/soul_stone/break3.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/sounds/block/soul_stone/break4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/sounds/block/soul_stone/break4.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/sounds/block/soul_stone/break5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/sounds/block/soul_stone/break5.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/sounds/entity/charon/charon_hurt.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/sounds/entity/charon/charon_hurt.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/sounds/entity/embody/embody_hurt.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/sounds/entity/embody/embody_hurt.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/sounds/entity/glowsquito/death1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/sounds/entity/glowsquito/death1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/sounds/entity/glowsquito/hit1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/sounds/entity/glowsquito/hit1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/sounds/entity/glowsquito/hit2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/sounds/entity/glowsquito/hit2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/sounds/entity/glowsquito/hit3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/sounds/entity/glowsquito/hit3.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/sounds/entity/glowsquito/hit4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/sounds/entity/glowsquito/hit4.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/sounds/entity/glowsquito/loop1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/sounds/entity/glowsquito/loop1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/sounds/entity/glowsquito/loop2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/sounds/entity/glowsquito/loop2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/sounds/entity/glowsquito/loop3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/sounds/entity/glowsquito/loop3.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/sounds/entity/glowsquito/loop4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/sounds/entity/glowsquito/loop4.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/sounds/entity/voline/voline_hurt.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/sounds/entity/voline/voline_hurt.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/sounds/record/flush.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/sounds/record/flush.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/sounds/record/soul_spunk.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/sounds/record/soul_spunk.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/basalt_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/basalt_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/basalt_cobbled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/basalt_cobbled.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/blackstone_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/blackstone_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/buried_bone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/buried_bone.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/buried_bone_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/buried_bone_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/campfire_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/campfire_log.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/charged_soul_sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/charged_soul_sand.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dimlit_fungus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dimlit_fungus.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dimstone/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dimstone/0.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dimstone/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dimstone/1.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dimstone/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dimstone/10.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dimstone/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dimstone/11.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dimstone/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dimstone/12.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dimstone/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dimstone/13.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dimstone/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dimstone/14.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dimstone/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dimstone/15.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dimstone/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dimstone/16.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dimstone/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dimstone/17.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dimstone/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dimstone/18.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dimstone/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dimstone/19.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dimstone/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dimstone/2.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dimstone/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dimstone/20.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dimstone/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dimstone/21.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dimstone/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dimstone/22.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dimstone/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dimstone/23.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dimstone/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dimstone/24.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dimstone/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dimstone/3.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dimstone/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dimstone/4.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dimstone/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dimstone/5.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dimstone/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dimstone/6.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dimstone/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dimstone/7.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dimstone/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dimstone/8.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dimstone/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dimstone/9.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dimstone_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dimstone_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dullstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dullstone.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dullstone_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dullstone_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dullthorns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dullthorns.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dullthorns_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dullthorns_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/dullthorns_tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/dullthorns_tip.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/glow_fire_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/glow_fire_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/glow_fire_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/glow_fire_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/glow_fire_1.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": {} 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/glow_torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/glow_torch.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/glowdust_sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/glowdust_sand.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/glowdust_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/glowdust_stone.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/glowlight_glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/glowlight_glass.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/glowsilk_cocoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/glowsilk_cocoon.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/glowstone_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/glowstone_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/luminous_fungus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/luminous_fungus.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/luminous_stem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/luminous_stem.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/luminous_stem_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/luminous_stem_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/planted_quartz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/planted_quartz.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/planted_quartz_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/planted_quartz_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/quartz_glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/quartz_glass.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/rubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/rubble.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/silt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/silt.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/smooth_dimstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/smooth_dimstone.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/smooth_dullstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/smooth_dullstone.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/smooth_glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/smooth_glowstone.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/soul_salt_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/soul_salt_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/soul_slate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/soul_slate.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/soul_slate_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/soul_slate_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/soul_slate_lit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/soul_slate_lit.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/soul_soil_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/soul_soil_path.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/soul_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/soul_stone.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/block/soul_stone_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/block/soul_stone_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/entity/basalt_giant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/entity/basalt_giant.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/entity/blackstone_dwarf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/entity/blackstone_dwarf.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/entity/blindsight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/entity/blindsight.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/entity/blindsight_glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/entity/blindsight_glow.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/entity/cerobeetle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/entity/cerobeetle.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/entity/embody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/entity/embody.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/entity/embody_glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/entity/embody_glow.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/entity/glowsilk_moth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/entity/glowsilk_moth.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/entity/glowsquitoid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/entity/glowsquitoid.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/entity/pyrno.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/entity/pyrno.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/entity/shroomloin/blood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/entity/shroomloin/blood.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/entity/shroomloin/brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/entity/shroomloin/brown.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/entity/shroomloin/pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/entity/shroomloin/pizza.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/entity/shroomloin/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/entity/shroomloin/red.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/entity/voline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/entity/voline.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/entity/voline_glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/entity/voline_glow.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/entity/voline_tired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/entity/voline_tired.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/gui/infection_gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/gui/infection_gui.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/item/ascus_bomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/item/ascus_bomb.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/item/blindsight_tongue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/item/blindsight_tongue.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/item/cooked_hogchop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/item/cooked_hogchop.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/item/cured_jerky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/item/cured_jerky.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/item/glow_campfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/item/glow_campfire.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/item/glow_lantern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/item/glow_lantern.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/item/glow_torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/item/glow_torch.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/item/glowcoal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/item/glowcoal.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/item/glownuggets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/item/glownuggets.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/item/glowsilk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/item/glowsilk.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/item/glowsilk_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/item/glowsilk_bow.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/item/infernal_painting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/item/infernal_painting.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/item/magma_cube_bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/item/magma_cube_bucket.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/item/moth_dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/item/moth_dust.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/item/music_disc_flush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/item/music_disc_flush.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/item/raw_hogchop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/item/raw_hogchop.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/item/rawbeetle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/item/rawbeetle.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/item/soul_salt_clump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/item/soul_salt_clump.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/item/spirit_eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/item/spirit_eye.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/item/spirit_eye.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/item/spirit_eye.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/item/strider_bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/item/strider_bucket.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/item/tab_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/item/tab_icon.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/item/voline_bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/item/voline_bucket.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/mob_effect/infection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/mob_effect/infection.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/mob_effect/luminous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/mob_effect/luminous.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/painting/chilling_isles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/painting/chilling_isles.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/painting/da_salt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/painting/da_salt.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/painting/infernal_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/painting/infernal_back.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/painting/pigs_greed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/painting/pigs_greed.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/painting/shroom_duality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/painting/shroom_duality.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/painting/soul_by_soul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/painting/soul_by_soul.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/painting/soul_hole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/painting/soul_hole.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/painting/voline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/painting/voline.png -------------------------------------------------------------------------------- /src/main/resources/assets/infernalexp/textures/particle/infection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/assets/infernalexp/textures/particle/infection.png -------------------------------------------------------------------------------- /src/main/resources/data/forge/loot_modifiers/global_loot_modifiers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/forge/loot_modifiers/global_loot_modifiers.json -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/blocks/needs_wood_tool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/forge/tags/blocks/needs_wood_tool.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/advancements/recipes/root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/advancements/recipes/root.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/forge/biome_modifier/add_configurable_spawns.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "infernalexp:add_configurable_spawns" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/blocks/basalt_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/blocks/basalt_bricks.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/blocks/basalt_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/blocks/basalt_button.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/blocks/basalt_cobbled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/blocks/basalt_cobbled.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/blocks/basalt_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/blocks/basalt_slab.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/blocks/basalt_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/blocks/basalt_stairs.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/blocks/basalt_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/blocks/basalt_wall.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/blocks/basaltic_magma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/blocks/basaltic_magma.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/blocks/buried_bone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/blocks/buried_bone.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/blocks/dimstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/blocks/dimstone.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/blocks/dullstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/blocks/dullstone.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/blocks/dullthorns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/blocks/dullthorns.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/blocks/glow_campfire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/blocks/glow_campfire.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/blocks/glow_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/blocks/glow_glass.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/blocks/glow_lantern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/blocks/glow_lantern.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/blocks/glow_torch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/blocks/glow_torch.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/blocks/glowdust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/blocks/glowdust.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/blocks/glowdust_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/blocks/glowdust_sand.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/blocks/glowdust_stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/blocks/glowdust_stone.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/blocks/luminous_stem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/blocks/luminous_stem.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/blocks/planted_quartz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/blocks/planted_quartz.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/blocks/quartz_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/blocks/quartz_glass.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/blocks/rubble.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/blocks/rubble.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/blocks/silt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/blocks/silt.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/blocks/soul_sand_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/blocks/soul_sand_slab.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/blocks/soul_slate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/blocks/soul_slate.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/blocks/soul_soil_path.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/blocks/soul_soil_path.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/blocks/soul_soil_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/blocks/soul_soil_slab.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/blocks/soul_stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/blocks/soul_stone.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/entities/basalt_giant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/entities/basalt_giant.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/entities/blindsight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/entities/blindsight.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/entities/embody.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/entities/embody.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/entities/glowsquito.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/entities/glowsquito.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/entities/shroomloin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/entities/shroomloin.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/entities/voline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/entities/voline.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/loot_tables/entities/warpbeetle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/loot_tables/entities/warpbeetle.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/recipes/blasting/iron_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/recipes/blasting/iron_ingot.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/recipes/smelting/glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/recipes/smelting/glass.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/recipes/smelting/glow_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/recipes/smelting/glow_glass.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/recipes/smelting/iron_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/recipes/smelting/iron_ingot.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/recipes/smelting/soul_slate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/recipes/smelting/soul_slate.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/recipes/smelting/soul_stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/recipes/smelting/soul_stone.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/recipes/smithing/glowsilk_bow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/recipes/smithing/glowsilk_bow.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/recipes/smoking/cooked_hogchop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/recipes/smoking/cooked_hogchop.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/tags/blocks/base_stone_canyon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/tags/blocks/base_stone_canyon.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/tags/blocks/base_stone_shores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/tags/blocks/base_stone_shores.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/tags/blocks/dullthorns_ground.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/tags/blocks/dullthorns_ground.json -------------------------------------------------------------------------------- /src/main/resources/data/infernalexp/tags/blocks/embody_fall_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/infernalexp/tags/blocks/embody_fall_blocks.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/base_stone_nether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/minecraft/tags/blocks/base_stone_nether.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/buttons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/minecraft/tags/blocks/buttons.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/campfires.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/minecraft/tags/blocks/campfires.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/hoglin_repellents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/minecraft/tags/blocks/hoglin_repellents.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/minecraft/tags/blocks/logs.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/mineable/hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/minecraft/tags/blocks/mineable/hoe.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/mineable/shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/minecraft/tags/blocks/mineable/shovel.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/needs_diamond_tool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/minecraft/tags/blocks/needs_diamond_tool.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/sculk_replaceable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/minecraft/tags/blocks/sculk_replaceable.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/slabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/minecraft/tags/blocks/slabs.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/soul_speed_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/minecraft/tags/blocks/soul_speed_blocks.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/minecraft/tags/blocks/stairs.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/strider_warm_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/minecraft/tags/blocks/strider_warm_blocks.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/wall_post_override.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/minecraft/tags/blocks/wall_post_override.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/walls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/minecraft/tags/blocks/walls.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/wart_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/minecraft/tags/blocks/wart_blocks.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/items/buttons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/minecraft/tags/items/buttons.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/items/coals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/minecraft/tags/items/coals.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/items/fungus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/minecraft/tags/items/fungus.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/items/mushrooms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/minecraft/tags/items/mushrooms.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/items/slabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/minecraft/tags/items/slabs.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/items/smooth_stones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/minecraft/tags/items/smooth_stones.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/items/stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/minecraft/tags/items/stairs.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/items/walls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/minecraft/tags/items/walls.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/worldgen/biome/is_nether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/minecraft/tags/worldgen/biome/is_nether.json -------------------------------------------------------------------------------- /src/main/resources/data/miningmaster/tags/items/catalysts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/miningmaster/tags/items/catalysts.json -------------------------------------------------------------------------------- /src/main/resources/data/quark/tags/blocks/vertical_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/quark/tags/blocks/vertical_slab.json -------------------------------------------------------------------------------- /src/main/resources/data/quark/tags/items/vertical_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/data/quark/tags/items/vertical_slab.json -------------------------------------------------------------------------------- /src/main/resources/infernal-expansion.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/infernal-expansion.mixins.json -------------------------------------------------------------------------------- /src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infernalstudios/Infernal-Expansion/HEAD/src/main/resources/pack.mcmeta --------------------------------------------------------------------------------