├── .gitattributes ├── .gitignore ├── Jenkinsfile ├── LICENSE ├── README.md ├── perkTreeMap.pdn └── src └── main ├── java └── hellfirepvp │ └── astralsorcery │ ├── AstralSorcery.java │ ├── MixinConnector.java │ ├── client │ ├── ClientProxy.java │ ├── ClientScheduler.java │ ├── constellation │ │ ├── ConstellationBackgroundInfo.java │ │ └── ConstellationRenderInfos.java │ ├── data │ │ └── config │ │ │ ├── ClientConfig.java │ │ │ └── entry │ │ │ └── RenderingConfig.java │ ├── effect │ │ ├── EffectProperties.java │ │ ├── EffectType.java │ │ ├── EntityComplexFX.java │ │ ├── EntityDynamicFX.java │ │ ├── EntityVisualFX.java │ │ ├── context │ │ │ ├── RenderContextAtlasParticle.java │ │ │ ├── RenderContextBurst.java │ │ │ ├── RenderContextCrystal.java │ │ │ ├── RenderContextFacingSprite.java │ │ │ ├── RenderContextGenericDepthParticle.java │ │ │ ├── RenderContextGenericParticle.java │ │ │ ├── RenderContextLightbeam.java │ │ │ ├── RenderContextLightning.java │ │ │ ├── RenderContextSpritePlaneDynamic.java │ │ │ └── base │ │ │ │ └── BatchRenderContext.java │ │ ├── function │ │ │ ├── RefreshFunction.java │ │ │ ├── VFXAlphaFunction.java │ │ │ ├── VFXColorFunction.java │ │ │ ├── VFXMotionController.java │ │ │ ├── VFXPositionController.java │ │ │ ├── VFXRenderOffsetFunction.java │ │ │ ├── VFXScaleFunction.java │ │ │ └── impl │ │ │ │ ├── RenderOffsetFornax.java │ │ │ │ └── RenderOffsetNoisePlane.java │ │ ├── handler │ │ │ ├── EffectHandler.java │ │ │ ├── EffectHelper.java │ │ │ ├── EffectRegistrar.java │ │ │ └── EffectUpdater.java │ │ ├── source │ │ │ ├── FXSource.java │ │ │ ├── FXSourceLiquidFountain.java │ │ │ ├── FXSourceOrbital.java │ │ │ └── orbital │ │ │ │ ├── FXOrbitalArmara.java │ │ │ │ ├── FXOrbitalCollector.java │ │ │ │ ├── FXOrbitalCrystalAttunement.java │ │ │ │ ├── FXOrbitalInfuserLiquid.java │ │ │ │ ├── FXOrbitalLucerna.java │ │ │ │ └── FXOrbitalPelotrio.java │ │ └── vfx │ │ │ ├── FXBlock.java │ │ │ ├── FXColorEffectSphere.java │ │ │ ├── FXCrystal.java │ │ │ ├── FXCube.java │ │ │ ├── FXFacingAtlasParticle.java │ │ │ ├── FXFacingParticle.java │ │ │ ├── FXFacingSprite.java │ │ │ ├── FXLightbeam.java │ │ │ ├── FXLightning.java │ │ │ └── FXSpritePlane.java │ ├── event │ │ ├── AlignmentChargeRenderer.java │ │ ├── GatewayInteractionHandler.java │ │ ├── ItemHeldEffectRenderer.java │ │ ├── OverlayRenderer.java │ │ ├── PerkExperienceRenderer.java │ │ ├── SkyRenderEventHandler.java │ │ ├── TimeStopEffectHandler.java │ │ └── effect │ │ │ ├── ClientMiscEventHandler.java │ │ │ ├── EffectRenderEventHandler.java │ │ │ ├── GatewayUIRenderHandler.java │ │ │ └── LightbeamRenderHelper.java │ ├── input │ │ ├── KeyBindingWrapper.java │ │ └── KeyDisablePerkAbilities.java │ ├── lib │ │ ├── EffectTemplatesAS.java │ │ ├── EffectTypesAS.java │ │ ├── KeyBindingsAS.java │ │ ├── RenderTypesAS.java │ │ ├── SpritesAS.java │ │ └── TexturesAS.java │ ├── model │ │ ├── armor │ │ │ ├── CustomArmorModel.java │ │ │ └── ModelArmorMantle.java │ │ └── builtin │ │ │ ├── CustomModel.java │ │ │ ├── ModelAttunementAltar.java │ │ │ ├── ModelLens.java │ │ │ ├── ModelLensColored.java │ │ │ ├── ModelObservatory.java │ │ │ ├── ModelRefractionTable.java │ │ │ └── ModelTelescope.java │ ├── registry │ │ ├── RegistryEffectTemplates.java │ │ ├── RegistryEffectTypes.java │ │ ├── RegistryKeyBindings.java │ │ ├── RegistryRenderTypes.java │ │ ├── RegistrySprites.java │ │ └── RegistryTextures.java │ ├── render │ │ ├── IDrawRenderTypeBuffer.java │ │ ├── ObjModelRender.java │ │ ├── RenderStateBuilder.java │ │ ├── entity │ │ │ ├── RenderEntityEmpty.java │ │ │ ├── RenderEntityGrapplingHook.java │ │ │ ├── RenderEntityItemHighlighted.java │ │ │ ├── RenderEntitySpectralTool.java │ │ │ └── layer │ │ │ │ └── StarryLayerRenderer.java │ │ └── tile │ │ │ ├── CustomTileEntityRenderer.java │ │ │ ├── RenderAltar.java │ │ │ ├── RenderAttunementAltar.java │ │ │ ├── RenderChalice.java │ │ │ ├── RenderCollectorCrystal.java │ │ │ ├── RenderInfuser.java │ │ │ ├── RenderLens.java │ │ │ ├── RenderObservatory.java │ │ │ ├── RenderPrism.java │ │ │ ├── RenderRefractionTable.java │ │ │ ├── RenderRitualPedestal.java │ │ │ ├── RenderSpectralRelay.java │ │ │ ├── RenderTelescope.java │ │ │ ├── RenderTileFakedState.java │ │ │ └── RenderWell.java │ ├── resource │ │ ├── AbstractRenderableTexture.java │ │ ├── AssetLibrary.java │ │ ├── AssetLoader.java │ │ ├── AssetPreLoader.java │ │ ├── BindableResource.java │ │ ├── BlockAtlasTexture.java │ │ ├── GeneratedResource.java │ │ ├── ReloadableResource.java │ │ ├── SpriteSheetResource.java │ │ └── query │ │ │ ├── SpriteQuery.java │ │ │ ├── TextureQuery.java │ │ │ └── TextureSubQuery.java │ ├── screen │ │ ├── ScreenConstellationPaper.java │ │ ├── ScreenHandTelescope.java │ │ ├── ScreenObservatory.java │ │ ├── ScreenRefractionTable.java │ │ ├── ScreenTelescope.java │ │ ├── base │ │ │ ├── ConstellationDiscoveryScreen.java │ │ │ ├── ContainerBaseScreen.java │ │ │ ├── InputScreen.java │ │ │ ├── NavigationArrowScreen.java │ │ │ ├── ScreenContainerAltar.java │ │ │ ├── ScreenCustomContainer.java │ │ │ ├── SkyScreen.java │ │ │ ├── TileConstellationDiscoveryScreen.java │ │ │ ├── TileEntityScreen.java │ │ │ └── WidthHeightScreen.java │ │ ├── container │ │ │ ├── ScreenContainerAltarAttunement.java │ │ │ ├── ScreenContainerAltarConstellation.java │ │ │ ├── ScreenContainerAltarDiscovery.java │ │ │ ├── ScreenContainerAltarRadiance.java │ │ │ └── ScreenContainerTome.java │ │ ├── helper │ │ │ ├── ScalingPoint.java │ │ │ ├── ScreenRenderBoundingBox.java │ │ │ └── SizeHandler.java │ │ ├── journal │ │ │ ├── ScreenJournal.java │ │ │ ├── ScreenJournalConstellationDetail.java │ │ │ ├── ScreenJournalConstellationOverview.java │ │ │ ├── ScreenJournalPages.java │ │ │ ├── ScreenJournalPerkTree.java │ │ │ ├── ScreenJournalProgression.java │ │ │ ├── bookmark │ │ │ │ └── BookmarkProvider.java │ │ │ ├── overlay │ │ │ │ ├── ScreenJournalOverlay.java │ │ │ │ └── ScreenJournalOverlayPerkStatistics.java │ │ │ ├── page │ │ │ │ ├── RenderPageAltarRecipe.java │ │ │ │ ├── RenderPageBlockTransmutation.java │ │ │ │ ├── RenderPageEmpty.java │ │ │ │ ├── RenderPageLiquidInfusion.java │ │ │ │ ├── RenderPageRecipe.java │ │ │ │ ├── RenderPageRecipeTemplate.java │ │ │ │ ├── RenderPageStructure.java │ │ │ │ ├── RenderPageText.java │ │ │ │ └── RenderablePage.java │ │ │ ├── perk │ │ │ │ ├── BatchPerkContext.java │ │ │ │ ├── DynamicPerkRender.java │ │ │ │ ├── PerkRender.java │ │ │ │ ├── PerkRenderGroup.java │ │ │ │ ├── PerkTreeSizeHandler.java │ │ │ │ └── group │ │ │ │ │ ├── PerkPointHaloRenderGroup.java │ │ │ │ │ └── PerkPointRenderGroup.java │ │ │ └── progression │ │ │ │ ├── GalaxySizeHandler.java │ │ │ │ ├── JournalCluster.java │ │ │ │ ├── JournalProgressionClusterMapping.java │ │ │ │ ├── ProgressionSizeHandler.java │ │ │ │ ├── ScreenJournalClusterRenderer.java │ │ │ │ └── ScreenJournalProgressionRenderer.java │ │ └── telescope │ │ │ ├── FullScreenDrawArea.java │ │ │ ├── PlayerAngledConstellationInformation.java │ │ │ └── TelescopeRotationDrawArea.java │ ├── sky │ │ ├── ChainingSkyRenderer.java │ │ └── astral │ │ │ ├── AstralSkyRenderer.java │ │ │ └── AstralSkyRendererSetup.java │ └── util │ │ ├── AreaOfInfluencePreview.java │ │ ├── BatchedVertexList.java │ │ ├── Blending.java │ │ ├── ColorizationHelper.java │ │ ├── EmptyRenderWorld.java │ │ ├── GatewayUI.java │ │ ├── LightmapUtil.java │ │ ├── MiscPlayEffect.java │ │ ├── MouseUtil.java │ │ ├── RenderStateUtil.java │ │ ├── RenderingConstellationUtils.java │ │ ├── RenderingDrawUtils.java │ │ ├── RenderingGuiUtils.java │ │ ├── RenderingOverlayUtils.java │ │ ├── RenderingUtils.java │ │ ├── RenderingVectorUtils.java │ │ ├── ScreenTextEntry.java │ │ ├── SphereBuilder.java │ │ ├── camera │ │ ├── CameraEventHelper.java │ │ ├── CameraTransformerPlayerFocus.java │ │ ├── CameraTransformerSettingsCache.java │ │ ├── ClientCameraManager.java │ │ ├── ClientCameraUtil.java │ │ ├── EntityCameraRenderView.java │ │ ├── EntityClientReplacement.java │ │ ├── ICameraPersistencyFunction.java │ │ ├── ICameraStopListener.java │ │ ├── ICameraTickListener.java │ │ ├── ICameraTransformer.java │ │ └── path │ │ │ ├── CameraPath.java │ │ │ └── CameraPathBuilder.java │ │ ├── color │ │ ├── ColorThief.java │ │ ├── ColorUtil.java │ │ └── MMCQ.java │ │ ├── draw │ │ ├── BufferBatchHelper.java │ │ ├── BufferContext.java │ │ └── RenderInfo.java │ │ ├── image │ │ ├── ImageTemplate.java │ │ ├── ImageTemplates.java │ │ └── SkyImageGenerator.java │ │ ├── obj │ │ ├── Face.java │ │ ├── GroupObject.java │ │ ├── ModelFormatException.java │ │ ├── TextureCoordinate.java │ │ ├── Vertex.java │ │ └── WavefrontObject.java │ │ ├── sound │ │ ├── FadeLoopSound.java │ │ ├── FadeSound.java │ │ └── PositionedLoopSound.java │ │ └── word │ │ ├── RandomWordGenerator.java │ │ ├── WordGeneratorChinese.java │ │ └── WordGeneratorEnglish.java │ ├── common │ ├── CommonProxy.java │ ├── CommonScheduler.java │ ├── GuiType.java │ ├── advancement │ │ ├── AltarCraftTrigger.java │ │ ├── AttuneCrystalTrigger.java │ │ ├── AttuneSelfTrigger.java │ │ ├── DiscoverConstellationTrigger.java │ │ ├── ListenerCriterionTrigger.java │ │ ├── PerkLevelTrigger.java │ │ └── instance │ │ │ ├── AltarRecipeInstance.java │ │ │ ├── ConstellationInstance.java │ │ │ └── PerkLevelInstance.java │ ├── auxiliary │ │ ├── AnimalHelper.java │ │ ├── BlockBreakHelper.java │ │ ├── ChaliceHelper.java │ │ ├── CropHelper.java │ │ ├── book │ │ │ ├── BookLookupInfo.java │ │ │ └── BookLookupRegistry.java │ │ ├── charge │ │ │ └── AlignmentChargeHandler.java │ │ ├── gateway │ │ │ ├── CelestialGatewayFilter.java │ │ │ └── CelestialGatewayHandler.java │ │ └── link │ │ │ ├── IItemLinkingTool.java │ │ │ ├── LinkHandler.java │ │ │ └── LinkableTileEntity.java │ ├── base │ │ ├── Mods.java │ │ ├── MoonPhase.java │ │ ├── TreeType.java │ │ └── patreon │ │ │ ├── FlareColor.java │ │ │ ├── PatreonData.java │ │ │ ├── PatreonDataManager.java │ │ │ ├── PatreonEffect.java │ │ │ ├── PatreonEffectHelper.java │ │ │ ├── PatreonEffectProvider.java │ │ │ ├── PatreonEffectType.java │ │ │ ├── entity │ │ │ ├── PatreonCrystalFlare.java │ │ │ ├── PatreonFlare.java │ │ │ ├── PatreonFlareDynamicColor.java │ │ │ └── PatreonPartialEntity.java │ │ │ ├── manager │ │ │ ├── PatreonManager.java │ │ │ └── PatreonManagerClient.java │ │ │ └── types │ │ │ ├── TypeBlockRing.java │ │ │ ├── TypeCelestialWings.java │ │ │ ├── TypeCrystalFootprints.java │ │ │ ├── TypeFlareColor.java │ │ │ ├── TypeFlareCrystal.java │ │ │ ├── TypeHelmetRender.java │ │ │ ├── TypeNebulaCloud.java │ │ │ ├── TypeStarHalo.java │ │ │ ├── TypeStarryPlayerLayer.java │ │ │ ├── TypeTreeBeaconColor.java │ │ │ ├── TypeWraithWings.java │ │ │ └── provider │ │ │ ├── ProviderBlockRing.java │ │ │ ├── ProviderCelestialWings.java │ │ │ ├── ProviderCrystalFootprints.java │ │ │ ├── ProviderFlare.java │ │ │ ├── ProviderFlareCrystal.java │ │ │ ├── ProviderFlareDynamicColor.java │ │ │ ├── ProviderHelmetRender.java │ │ │ ├── ProviderNebulaCloud.java │ │ │ ├── ProviderStarHalo.java │ │ │ ├── ProviderStarryPlayerLayer.java │ │ │ ├── ProviderTreeBeaconColor.java │ │ │ └── ProviderWraithWings.java │ ├── block │ │ ├── base │ │ │ ├── BlockCrystalContainer.java │ │ │ ├── BlockDynamicColor.java │ │ │ ├── BlockFakedState.java │ │ │ ├── BlockInventory.java │ │ │ ├── BlockStarlightNetwork.java │ │ │ ├── BlockStarlightRecipient.java │ │ │ ├── CustomItemBlock.java │ │ │ ├── CustomItemBlockProperties.java │ │ │ ├── LargeBlock.java │ │ │ ├── MaterialBuilderAS.java │ │ │ └── template │ │ │ │ ├── BlockBlackMarbleTemplate.java │ │ │ │ ├── BlockFlowerTemplate.java │ │ │ │ ├── BlockFoliageTemplate.java │ │ │ │ ├── BlockInfusedWoodTemplate.java │ │ │ │ ├── BlockMarbleTemplate.java │ │ │ │ ├── BlockSandTemplate.java │ │ │ │ ├── BlockSlabTemplate.java │ │ │ │ └── BlockStairsTemplate.java │ │ ├── blackmarble │ │ │ ├── BlockBlackMarbleArch.java │ │ │ ├── BlockBlackMarbleBricks.java │ │ │ ├── BlockBlackMarbleChiseled.java │ │ │ ├── BlockBlackMarbleEngraved.java │ │ │ ├── BlockBlackMarblePillar.java │ │ │ ├── BlockBlackMarbleRaw.java │ │ │ └── BlockBlackMarbleRuned.java │ │ ├── foliage │ │ │ └── BlockGlowFlower.java │ │ ├── infusedwood │ │ │ ├── BlockInfusedWood.java │ │ │ ├── BlockInfusedWoodArch.java │ │ │ ├── BlockInfusedWoodColumn.java │ │ │ ├── BlockInfusedWoodEngraved.java │ │ │ ├── BlockInfusedWoodEnriched.java │ │ │ ├── BlockInfusedWoodInfused.java │ │ │ └── BlockInfusedWoodPlanks.java │ │ ├── marble │ │ │ ├── BlockMarbleArch.java │ │ │ ├── BlockMarbleBricks.java │ │ │ ├── BlockMarbleChiseled.java │ │ │ ├── BlockMarbleEngraved.java │ │ │ ├── BlockMarblePillar.java │ │ │ ├── BlockMarbleRaw.java │ │ │ └── BlockMarbleRuned.java │ │ ├── ore │ │ │ ├── BlockAquamarineSandOre.java │ │ │ ├── BlockRockCrystalOre.java │ │ │ ├── BlockStarmetal.java │ │ │ └── BlockStarmetalOre.java │ │ ├── properties │ │ │ ├── PropertiesGlass.java │ │ │ ├── PropertiesMarble.java │ │ │ ├── PropertiesMisc.java │ │ │ └── PropertiesWood.java │ │ └── tile │ │ │ ├── BlockAltar.java │ │ │ ├── BlockAttunementAltar.java │ │ │ ├── BlockCelestialCrystalCluster.java │ │ │ ├── BlockCelestialGateway.java │ │ │ ├── BlockChalice.java │ │ │ ├── BlockCollectorCrystal.java │ │ │ ├── BlockFlareLight.java │ │ │ ├── BlockFountain.java │ │ │ ├── BlockGemCrystalCluster.java │ │ │ ├── BlockIlluminator.java │ │ │ ├── BlockInfuser.java │ │ │ ├── BlockLens.java │ │ │ ├── BlockObservatory.java │ │ │ ├── BlockPrism.java │ │ │ ├── BlockRefractionTable.java │ │ │ ├── BlockRitualLink.java │ │ │ ├── BlockRitualPedestal.java │ │ │ ├── BlockSpectralRelay.java │ │ │ ├── BlockStructural.java │ │ │ ├── BlockTelescope.java │ │ │ ├── BlockTranslucentBlock.java │ │ │ ├── BlockTreeBeacon.java │ │ │ ├── BlockTreeBeaconComponent.java │ │ │ ├── BlockVanishing.java │ │ │ ├── BlockWell.java │ │ │ ├── altar │ │ │ ├── AltarType.java │ │ │ ├── BlockAltarAttunement.java │ │ │ ├── BlockAltarConstellation.java │ │ │ ├── BlockAltarDiscovery.java │ │ │ └── BlockAltarRadiance.java │ │ │ ├── crystal │ │ │ ├── BlockCelestialCollectorCrystal.java │ │ │ ├── BlockRockCollectorCrystal.java │ │ │ └── CollectorCrystalType.java │ │ │ └── fountain │ │ │ ├── BlockFountainPrime.java │ │ │ ├── BlockFountainPrimeLiquid.java │ │ │ ├── BlockFountainPrimeOre.java │ │ │ └── BlockFountainPrimeVortex.java │ ├── capability │ │ └── ChunkFluidEntry.java │ ├── cmd │ │ ├── CommandAstralSorcery.java │ │ ├── argument │ │ │ └── ArgumentTypeConstellation.java │ │ └── sub │ │ │ ├── CommandAttune.java │ │ │ ├── CommandConstellation.java │ │ │ ├── CommandExp.java │ │ │ ├── CommandMaximizeAll.java │ │ │ ├── CommandProgress.java │ │ │ ├── CommandReset.java │ │ │ └── CommandSerialize.java │ ├── constellation │ │ ├── BaseConstellation.java │ │ ├── Constellation.java │ │ ├── ConstellationBaseItem.java │ │ ├── ConstellationGenerator.java │ │ ├── ConstellationItem.java │ │ ├── ConstellationRegistry.java │ │ ├── ConstellationTile.java │ │ ├── DrawnConstellation.java │ │ ├── IConstellation.java │ │ ├── IConstellationSpecialShowup.java │ │ ├── IMajorConstellation.java │ │ ├── IMinorConstellation.java │ │ ├── IWeakConstellation.java │ │ ├── SkyHandler.java │ │ ├── effect │ │ │ ├── ConstellationEffect.java │ │ │ ├── ConstellationEffectProperties.java │ │ │ ├── ConstellationEffectProvider.java │ │ │ ├── ConstellationEffectRegistry.java │ │ │ ├── ConstellationEffectStatus.java │ │ │ ├── aoe │ │ │ │ ├── CEffectAevitas.java │ │ │ │ ├── CEffectArmara.java │ │ │ │ ├── CEffectBootes.java │ │ │ │ ├── CEffectDiscidia.java │ │ │ │ ├── CEffectEvorsio.java │ │ │ │ ├── CEffectFornax.java │ │ │ │ ├── CEffectHorologium.java │ │ │ │ ├── CEffectLucerna.java │ │ │ │ ├── CEffectMineralis.java │ │ │ │ ├── CEffectOctans.java │ │ │ │ ├── CEffectPelotrio.java │ │ │ │ └── CEffectVicio.java │ │ │ └── base │ │ │ │ ├── CEffectAbstractList.java │ │ │ │ ├── ConstellationEffectEntityCollect.java │ │ │ │ └── ListEntries.java │ │ ├── engraving │ │ │ ├── EngravedStarMap.java │ │ │ └── EngravingEffect.java │ │ ├── mantle │ │ │ ├── MantleEffect.java │ │ │ ├── MantleEffectRegistry.java │ │ │ └── effect │ │ │ │ ├── MantleEffectAevitas.java │ │ │ │ ├── MantleEffectArmara.java │ │ │ │ ├── MantleEffectBootes.java │ │ │ │ ├── MantleEffectDiscidia.java │ │ │ │ ├── MantleEffectEvorsio.java │ │ │ │ ├── MantleEffectFornax.java │ │ │ │ ├── MantleEffectHorologium.java │ │ │ │ ├── MantleEffectLucerna.java │ │ │ │ ├── MantleEffectMineralis.java │ │ │ │ ├── MantleEffectOctans.java │ │ │ │ ├── MantleEffectPelotrio.java │ │ │ │ └── MantleEffectVicio.java │ │ ├── star │ │ │ ├── StarConnection.java │ │ │ └── StarLocation.java │ │ └── world │ │ │ ├── ActiveCelestialsHandler.java │ │ │ ├── CelestialEventHandler.java │ │ │ ├── ConstellationHandler.java │ │ │ ├── DayTimeHelper.java │ │ │ ├── DistributionHandler.java │ │ │ ├── WorldContext.java │ │ │ └── event │ │ │ ├── CelestialEvent.java │ │ │ ├── LunarEclipse.java │ │ │ ├── SolarEclipse.java │ │ │ └── StarFall.java │ ├── container │ │ ├── ContainerAltarAttunement.java │ │ ├── ContainerAltarBase.java │ │ ├── ContainerAltarConstellation.java │ │ ├── ContainerAltarDiscovery.java │ │ ├── ContainerAltarTrait.java │ │ ├── ContainerObservatory.java │ │ ├── ContainerTileEntity.java │ │ ├── ContainerTome.java │ │ ├── factory │ │ │ ├── ContainerAltarAttunementProvider.java │ │ │ ├── ContainerAltarConstellationProvider.java │ │ │ ├── ContainerAltarDiscoveryProvider.java │ │ │ ├── ContainerAltarRadianceProvider.java │ │ │ ├── ContainerObservatoryProvider.java │ │ │ ├── ContainerTomeProvider.java │ │ │ └── CustomContainerProvider.java │ │ └── slot │ │ │ ├── SlotConstellationFocus.java │ │ │ ├── SlotConstellationPaper.java │ │ │ └── SlotUnclickable.java │ ├── crafting │ │ ├── builder │ │ │ ├── BlockTransmutationBuilder.java │ │ │ ├── LiquidInfusionBuilder.java │ │ │ ├── LiquidInteractionBuilder.java │ │ │ ├── SimpleAltarRecipeBuilder.java │ │ │ └── WellRecipeBuilder.java │ │ ├── custom │ │ │ └── RecipeDyeableChangeColor.java │ │ ├── helper │ │ │ ├── BaseHandlerRecipe.java │ │ │ ├── CraftingFocusStack.java │ │ │ ├── CustomMatcherRecipe.java │ │ │ ├── CustomRecipeBuilder.java │ │ │ ├── CustomRecipeSerializer.java │ │ │ ├── DefaultWrapperContext.java │ │ │ ├── IHandlerRecipe.java │ │ │ ├── RecipeCraftingContext.java │ │ │ ├── ResolvingRecipeType.java │ │ │ ├── WrappedIngredient.java │ │ │ └── ingredient │ │ │ │ ├── CrystalIngredient.java │ │ │ │ ├── CrystalIngredientSerializer.java │ │ │ │ ├── FluidIngredient.java │ │ │ │ └── FluidIngredientSerializer.java │ │ ├── nojson │ │ │ ├── AttunementCraftingRegistry.java │ │ │ ├── CustomRecipe.java │ │ │ ├── CustomRecipeRegistry.java │ │ │ ├── FountainEffectRegistry.java │ │ │ ├── LiquidStarlightCraftingRegistry.java │ │ │ ├── WorldFreezingRegistry.java │ │ │ ├── WorldMeltableRegistry.java │ │ │ ├── attunement │ │ │ │ ├── AttuneCrystalRecipe.java │ │ │ │ ├── AttunePlayerRecipe.java │ │ │ │ ├── AttunementRecipe.java │ │ │ │ └── active │ │ │ │ │ ├── ActiveCrystalAttunementRecipe.java │ │ │ │ │ └── ActivePlayerAttunementRecipe.java │ │ │ ├── fountain │ │ │ │ ├── FountainEffect.java │ │ │ │ ├── FountainEffectLiquid.java │ │ │ │ ├── FountainEffectVortex.java │ │ │ │ ├── LiquidContext.java │ │ │ │ └── VortexContext.java │ │ │ ├── freezing │ │ │ │ ├── BlockFreezingRecipe.java │ │ │ │ ├── FluidFreezingRecipe.java │ │ │ │ └── WorldFreezingRecipe.java │ │ │ ├── meltable │ │ │ │ ├── BlockMeltableRecipe.java │ │ │ │ ├── FurnaceMeltableRecipe.java │ │ │ │ ├── ItemMeltableRecipe.java │ │ │ │ └── WorldMeltableRecipe.java │ │ │ └── starlight │ │ │ │ ├── FormCelestialCrystalClusterRecipe.java │ │ │ │ ├── FormGemCrystalClusterRecipe.java │ │ │ │ ├── GrowCrystalSizeRecipe.java │ │ │ │ ├── InfusedWoodRecipe.java │ │ │ │ ├── LiquidStarlightRecipe.java │ │ │ │ └── MergeCrystalsRecipe.java │ │ ├── recipe │ │ │ ├── BlockTransmutation.java │ │ │ ├── BlockTransmutationContext.java │ │ │ ├── GatedRecipe.java │ │ │ ├── LiquidInfusion.java │ │ │ ├── LiquidInfusionContext.java │ │ │ ├── LiquidInteraction.java │ │ │ ├── LiquidInteractionContext.java │ │ │ ├── SimpleAltarRecipe.java │ │ │ ├── SimpleAltarRecipeContext.java │ │ │ ├── WellLiquefaction.java │ │ │ ├── WellLiquefactionContext.java │ │ │ ├── altar │ │ │ │ ├── ActiveSimpleAltarRecipe.java │ │ │ │ ├── AltarCraftingProgress.java │ │ │ │ ├── AltarRecipeGrid.java │ │ │ │ ├── AltarRecipeTypeHandler.java │ │ │ │ ├── AltarUpgradeRecipe.java │ │ │ │ ├── builtin │ │ │ │ │ ├── AttunementUpgradeRecipe.java │ │ │ │ │ ├── ConstellationBaseAverageStatsRecipe.java │ │ │ │ │ ├── ConstellationBaseItemRecipe.java │ │ │ │ │ ├── ConstellationBaseMergeStatsRecipe.java │ │ │ │ │ ├── ConstellationBaseNBTCopyRecipe.java │ │ │ │ │ ├── ConstellationCopyStatsRecipe.java │ │ │ │ │ ├── ConstellationItemRecipe.java │ │ │ │ │ ├── ConstellationUpgradeRecipe.java │ │ │ │ │ ├── CrystalCountRecipe.java │ │ │ │ │ ├── NBTCopyRecipe.java │ │ │ │ │ └── TraitUpgradeRecipe.java │ │ │ │ └── effect │ │ │ │ │ ├── AltarRecipeEffect.java │ │ │ │ │ ├── BuiltInEffectAttunementSparkle.java │ │ │ │ │ ├── BuiltInEffectConstellationFinish.java │ │ │ │ │ ├── BuiltInEffectConstellationLines.java │ │ │ │ │ ├── BuiltInEffectDiscoveryCentralBeam.java │ │ │ │ │ ├── BuiltInEffectTraitFocusCircle.java │ │ │ │ │ ├── BuiltInEffectTraitRelayHighlight.java │ │ │ │ │ ├── EffectAltarDefaultLightbeams.java │ │ │ │ │ ├── EffectAltarDefaultSparkle.java │ │ │ │ │ ├── EffectAltarFocusSparkle.java │ │ │ │ │ ├── EffectAltarRandomSparkle.java │ │ │ │ │ ├── EffectFocusDustSwirl.java │ │ │ │ │ ├── EffectFocusEdge.java │ │ │ │ │ ├── EffectGatewayEdge.java │ │ │ │ │ ├── EffectLargeDustSwirl.java │ │ │ │ │ ├── EffectLiquidBurst.java │ │ │ │ │ ├── EffectLuminescenceFlare.java │ │ │ │ │ ├── EffectPillarLightbeams.java │ │ │ │ │ ├── EffectPillarSparkle.java │ │ │ │ │ ├── EffectUpgradeAltar.java │ │ │ │ │ ├── EffectVortexPlane.java │ │ │ │ │ └── IFocusEffect.java │ │ │ ├── infusion │ │ │ │ └── ActiveLiquidInfusionRecipe.java │ │ │ └── interaction │ │ │ │ ├── InteractionResult.java │ │ │ │ ├── InteractionResultRegistry.java │ │ │ │ ├── ResultDropItem.java │ │ │ │ ├── ResultSpawnEntity.java │ │ │ │ └── jei │ │ │ │ ├── JEIHandlerDropItem.java │ │ │ │ ├── JEIHandlerSpawnEntity.java │ │ │ │ ├── JEIInteractionResultHandler.java │ │ │ │ └── JEIInteractionResultRegistry.java │ │ └── serializer │ │ │ ├── BlockTransmutationSerializer.java │ │ │ ├── LiquidInfusionSerializer.java │ │ │ ├── LiquidInteractionSerializer.java │ │ │ ├── SimpleAltarRecipeSerializer.java │ │ │ └── WellRecipeSerializer.java │ ├── crystal │ │ ├── CalculationContext.java │ │ ├── CrystalAttributeGenItem.java │ │ ├── CrystalAttributeItem.java │ │ ├── CrystalAttributeTile.java │ │ ├── CrystalAttributes.java │ │ ├── CrystalCalculations.java │ │ ├── CrystalGenerator.java │ │ ├── CrystalProperty.java │ │ ├── CrystalPropertyModifierFunction.java │ │ ├── CrystalPropertyRegistry.java │ │ ├── calc │ │ │ ├── PropertySource.java │ │ │ └── PropertyUsage.java │ │ ├── property │ │ │ ├── PropertyCollectionRate.java │ │ │ ├── PropertyConstellation.java │ │ │ ├── PropertyPurity.java │ │ │ ├── PropertyRitualEffect.java │ │ │ ├── PropertyRitualRange.java │ │ │ ├── PropertyShape.java │ │ │ ├── PropertySize.java │ │ │ ├── PropertyToolDurability.java │ │ │ └── PropertyToolEfficiency.java │ │ └── source │ │ │ ├── AttunedSourceInstance.java │ │ │ ├── Crystal.java │ │ │ ├── Ritual.java │ │ │ └── TraitedSourceInstance.java │ ├── data │ │ ├── config │ │ │ ├── CommonConfig.java │ │ │ ├── ServerConfig.java │ │ │ ├── base │ │ │ │ ├── BaseConfiguration.java │ │ │ │ ├── ConfigDataAdapter.java │ │ │ │ ├── ConfigDataSet.java │ │ │ │ ├── ConfigEntry.java │ │ │ │ ├── ConfigRegistries.java │ │ │ │ └── ConfiguredBlockStateList.java │ │ │ ├── entry │ │ │ │ ├── CraftingConfig.java │ │ │ │ ├── EntityConfig.java │ │ │ │ ├── GeneralConfig.java │ │ │ │ ├── LightNetworkConfig.java │ │ │ │ ├── LogConfig.java │ │ │ │ ├── MachineryConfig.java │ │ │ │ ├── PerkConfig.java │ │ │ │ ├── ToolsConfig.java │ │ │ │ ├── WandsConfig.java │ │ │ │ ├── WorldGenConfig.java │ │ │ │ └── common │ │ │ │ │ └── CommonGeneralConfig.java │ │ │ └── registry │ │ │ │ ├── AmuletEnchantmentRegistry.java │ │ │ │ ├── EntityTransmutationRegistry.java │ │ │ │ ├── FluidRarityRegistry.java │ │ │ │ ├── OreBlockRarityRegistry.java │ │ │ │ ├── OreItemRarityRegistry.java │ │ │ │ ├── TechnicalEntityRegistry.java │ │ │ │ ├── TileAccelerationBlacklistRegistry.java │ │ │ │ ├── WeightedPerkAttributeRegistry.java │ │ │ │ └── sets │ │ │ │ ├── AmuletEnchantmentEntry.java │ │ │ │ ├── EntityTechnicalEntry.java │ │ │ │ ├── EntityTransmutationEntry.java │ │ │ │ ├── FluidRarityEntry.java │ │ │ │ ├── OreBlockRarityEntry.java │ │ │ │ ├── OreItemRarityEntry.java │ │ │ │ ├── PerkAttributeEntry.java │ │ │ │ └── TileAccelerationBlacklistEntry.java │ │ ├── journal │ │ │ ├── JournalPage.java │ │ │ ├── JournalPageBlockTransmutation.java │ │ │ ├── JournalPageEmpty.java │ │ │ ├── JournalPageLiquidInfusion.java │ │ │ ├── JournalPageRecipe.java │ │ │ ├── JournalPageStructure.java │ │ │ └── JournalPageText.java │ │ ├── research │ │ │ ├── GatedKnowledge.java │ │ │ ├── PerkAllocationType.java │ │ │ ├── PerkRemovalResult.java │ │ │ ├── PlayerPerkAllocation.java │ │ │ ├── PlayerPerkData.java │ │ │ ├── PlayerProgress.java │ │ │ ├── PlayerProgressTestAccess.java │ │ │ ├── ProgressionTier.java │ │ │ ├── ResearchHelper.java │ │ │ ├── ResearchIOThread.java │ │ │ ├── ResearchManager.java │ │ │ ├── ResearchNode.java │ │ │ ├── ResearchProgression.java │ │ │ └── ResearchSyncHelper.java │ │ ├── sync │ │ │ ├── SyncDataHolder.java │ │ │ ├── SyncDataRegistry.java │ │ │ ├── base │ │ │ │ ├── AbstractData.java │ │ │ │ ├── AbstractDataProvider.java │ │ │ │ ├── ClientData.java │ │ │ │ └── ClientDataReader.java │ │ │ ├── client │ │ │ │ ├── ClientLightBlockEndpoints.java │ │ │ │ ├── ClientLightConnections.java │ │ │ │ ├── ClientPatreonFlares.java │ │ │ │ ├── ClientTimeFreezeEffects.java │ │ │ │ └── ClientTimeFreezeEntities.java │ │ │ └── server │ │ │ │ ├── DataLightBlockEndpoints.java │ │ │ │ ├── DataLightConnections.java │ │ │ │ ├── DataPatreonFlares.java │ │ │ │ ├── DataTimeFreezeEffects.java │ │ │ │ └── DataTimeFreezeEntities.java │ │ └── world │ │ │ ├── GatewayCache.java │ │ │ ├── LightNetworkBuffer.java │ │ │ ├── RockCrystalBuffer.java │ │ │ └── StorageNetworkBuffer.java │ ├── effect │ │ ├── EffectBleed.java │ │ ├── EffectCheatDeath.java │ │ ├── EffectCustomTexture.java │ │ └── EffectDropModifier.java │ ├── enchantment │ │ ├── EnchantmentNightVision.java │ │ ├── EnchantmentPlayerTick.java │ │ ├── EnchantmentScorchingHeat.java │ │ ├── amulet │ │ │ ├── AmuletEnchantment.java │ │ │ ├── AmuletEnchantmentHelper.java │ │ │ ├── AmuletRandomizeHelper.java │ │ │ └── PlayerAmuletHandler.java │ │ └── dynamic │ │ │ ├── DynamicEnchantment.java │ │ │ ├── DynamicEnchantmentHelper.java │ │ │ └── DynamicEnchantmentType.java │ ├── entity │ │ ├── EntityFlare.java │ │ ├── EntityIlluminationSpark.java │ │ ├── EntityNocturnalSpark.java │ │ ├── EntityShootingStar.java │ │ ├── EntitySpectralTool.java │ │ ├── InteractableEntity.java │ │ ├── goal │ │ │ ├── SpectralToolBreakBlockGoal.java │ │ │ ├── SpectralToolBreakLogGoal.java │ │ │ ├── SpectralToolGoal.java │ │ │ └── SpectralToolMeleeAttackGoal.java │ │ ├── item │ │ │ ├── EntityCrystal.java │ │ │ ├── EntityCustomItemReplacement.java │ │ │ ├── EntityDazzlingGem.java │ │ │ ├── EntityItemExplosionResistant.java │ │ │ ├── EntityItemHighlighted.java │ │ │ └── EntityStarmetal.java │ │ └── technical │ │ │ ├── EntityGrapplingHook.java │ │ │ └── EntityObservatoryHelper.java │ ├── event │ │ ├── ASRegistryEvents.java │ │ ├── AttributeEvent.java │ │ ├── CooldownSetEvent.java │ │ ├── DynamicEnchantmentEvent.java │ │ ├── EventFlags.java │ │ ├── PlayerAffectionFlags.java │ │ ├── StarlightNetworkEvent.java │ │ ├── handler │ │ │ ├── EventHandlerAutoLink.java │ │ │ ├── EventHandlerBlockStorage.java │ │ │ ├── EventHandlerCache.java │ │ │ ├── EventHandlerInteract.java │ │ │ └── EventHandlerMisc.java │ │ └── helper │ │ │ ├── EventHelperDamageCancelling.java │ │ │ ├── EventHelperEnchantmentTick.java │ │ │ ├── EventHelperEntityFreeze.java │ │ │ ├── EventHelperInvulnerability.java │ │ │ ├── EventHelperSpawnDeny.java │ │ │ └── EventHelperTemporaryFlight.java │ ├── fluid │ │ ├── BlockLiquidStarlight.java │ │ ├── FluidLiquidStarlight.java │ │ └── ItemLiquidStarlightBucket.java │ ├── integration │ │ ├── IntegrationBotania.java │ │ ├── IntegrationCraftTweaker.java │ │ ├── IntegrationCurios.java │ │ ├── IntegrationJEI.java │ │ ├── crt │ │ │ ├── AltarManager.java │ │ │ ├── BlockTransmutationManager.java │ │ │ ├── InfusionManager.java │ │ │ ├── LiquidInteractionManager.java │ │ │ └── WellManager.java │ │ └── jei │ │ │ ├── CategoryAltar.java │ │ │ ├── CategoryInfuser.java │ │ │ ├── CategoryLiquidInteraction.java │ │ │ ├── CategoryTransmutation.java │ │ │ ├── CategoryWell.java │ │ │ ├── JEICategory.java │ │ │ └── TieredAltarRecipeTransferHandler.java │ ├── item │ │ ├── ItemAquamarine.java │ │ ├── ItemChisel.java │ │ ├── ItemConstellationPaper.java │ │ ├── ItemEnchantmentAmulet.java │ │ ├── ItemGlassLens.java │ │ ├── ItemHandTelescope.java │ │ ├── ItemInfusedGlass.java │ │ ├── ItemKnowledgeShare.java │ │ ├── ItemLinkingTool.java │ │ ├── ItemParchment.java │ │ ├── ItemResonatingGem.java │ │ ├── ItemResonator.java │ │ ├── ItemStardust.java │ │ ├── ItemStarmetalIngot.java │ │ ├── ItemTome.java │ │ ├── armor │ │ │ ├── ArmorMaterialImbuedLeather.java │ │ │ └── ItemMantle.java │ │ ├── base │ │ │ ├── AlignmentChargeConsumer.java │ │ │ ├── AlignmentChargeRevealer.java │ │ │ ├── IConstellationFocus.java │ │ │ ├── ItemBlockStorage.java │ │ │ ├── OverrideInteractItem.java │ │ │ ├── PerkExperienceRevealer.java │ │ │ ├── TypeEnchantableItem.java │ │ │ └── client │ │ │ │ ├── ItemDynamicColor.java │ │ │ │ ├── ItemHeldRender.java │ │ │ │ └── ItemOverlayRender.java │ │ ├── block │ │ │ ├── ItemBlockCelestialCollectorCrystal.java │ │ │ ├── ItemBlockCelestialCrystalCluster.java │ │ │ ├── ItemBlockCollectorCrystal.java │ │ │ ├── ItemBlockCustom.java │ │ │ ├── ItemBlockGemCrystalCluster.java │ │ │ ├── ItemBlockLens.java │ │ │ ├── ItemBlockPrism.java │ │ │ └── ItemBlockRockCollectorCrystal.java │ │ ├── crystal │ │ │ ├── ItemAttunedCelestialCrystal.java │ │ │ ├── ItemAttunedCrystalBase.java │ │ │ ├── ItemAttunedRockCrystal.java │ │ │ ├── ItemCelestialCrystal.java │ │ │ ├── ItemCrystalBase.java │ │ │ └── ItemRockCrystal.java │ │ ├── dust │ │ │ ├── ItemIlluminationPowder.java │ │ │ ├── ItemNocturnalPowder.java │ │ │ └── ItemUsableDust.java │ │ ├── gem │ │ │ ├── GemAttributeHelper.java │ │ │ ├── GemType.java │ │ │ ├── ItemPerkGem.java │ │ │ ├── ItemPerkGemDay.java │ │ │ ├── ItemPerkGemNight.java │ │ │ └── ItemPerkGemSky.java │ │ ├── lens │ │ │ ├── ItemColoredLens.java │ │ │ ├── ItemColoredLensBreak.java │ │ │ ├── ItemColoredLensDamage.java │ │ │ ├── ItemColoredLensFire.java │ │ │ ├── ItemColoredLensGrowth.java │ │ │ ├── ItemColoredLensPush.java │ │ │ ├── ItemColoredLensRegeneration.java │ │ │ ├── ItemColoredLensSpectral.java │ │ │ └── LensColorType.java │ │ ├── quality │ │ │ ├── GemQuality.java │ │ │ ├── ItemDazzlingFrame.java │ │ │ └── ItemDazzlingGem.java │ │ ├── tool │ │ │ ├── CrystalToolTier.java │ │ │ ├── ItemCrystalAxe.java │ │ │ ├── ItemCrystalPickaxe.java │ │ │ ├── ItemCrystalShovel.java │ │ │ ├── ItemCrystalSword.java │ │ │ ├── ItemCrystalTierItem.java │ │ │ ├── ItemInfusedCrystalAxe.java │ │ │ ├── ItemInfusedCrystalPickaxe.java │ │ │ ├── ItemInfusedCrystalShovel.java │ │ │ └── ItemInfusedCrystalSword.java │ │ ├── useables │ │ │ ├── ItemPerkSeal.java │ │ │ ├── ItemShiftingStar.java │ │ │ ├── ItemShiftingStarAevitas.java │ │ │ ├── ItemShiftingStarArmara.java │ │ │ ├── ItemShiftingStarDiscidia.java │ │ │ ├── ItemShiftingStarEvorsio.java │ │ │ └── ItemShiftingStarVicio.java │ │ └── wand │ │ │ ├── ItemArchitectWand.java │ │ │ ├── ItemBlinkWand.java │ │ │ ├── ItemExchangeWand.java │ │ │ ├── ItemGrappleWand.java │ │ │ ├── ItemIlluminationWand.java │ │ │ ├── ItemWand.java │ │ │ └── WandInteractable.java │ ├── lib │ │ ├── AdvancementsAS.java │ │ ├── AltarRecipeEffectsAS.java │ │ ├── BlocksAS.java │ │ ├── CapabilitiesAS.java │ │ ├── ColorsAS.java │ │ ├── ConstellationEffectsAS.java │ │ ├── ConstellationsAS.java │ │ ├── ContainerTypesAS.java │ │ ├── CrystalPropertiesAS.java │ │ ├── DataAS.java │ │ ├── DataSerializersAS.java │ │ ├── EffectsAS.java │ │ ├── EnchantmentsAS.java │ │ ├── EngravingEffectsAS.java │ │ ├── EntityTypesAS.java │ │ ├── FluidsAS.java │ │ ├── GameRulesAS.java │ │ ├── IngredientSerializersAS.java │ │ ├── ItemsAS.java │ │ ├── LootAS.java │ │ ├── MantleEffectsAS.java │ │ ├── MaterialsAS.java │ │ ├── PerkAttributeTypesAS.java │ │ ├── PerkConvertersAS.java │ │ ├── PerkCustomModifiersAS.java │ │ ├── PerkNamesAS.java │ │ ├── RecipeSerializersAS.java │ │ ├── RecipeTypesAS.java │ │ ├── RegistriesAS.java │ │ ├── SoundsAS.java │ │ ├── StructureTypesAS.java │ │ ├── StructuresAS.java │ │ ├── TagsAS.java │ │ ├── TileEntityTypesAS.java │ │ └── WorldGenerationAS.java │ ├── loot │ │ ├── CopyConstellation.java │ │ ├── CopyCrystalProperties.java │ │ ├── CopyGatewayColor.java │ │ ├── LinearLuckBonus.java │ │ ├── RandomCrystalProperty.java │ │ └── global │ │ │ ├── LootModifierPerkVoidTrash.java │ │ │ └── LootModifierScorchingHeat.java │ ├── network │ │ ├── PacketChannel.java │ │ ├── base │ │ │ ├── ASLoginPacket.java │ │ │ └── ASPacket.java │ │ ├── channel │ │ │ ├── BufferedReplyChannel.java │ │ │ └── SimpleSendChannel.java │ │ ├── login │ │ │ ├── client │ │ │ │ └── PktLoginAcknowledge.java │ │ │ └── server │ │ │ │ ├── PktLoginSyncDataHolder.java │ │ │ │ ├── PktLoginSyncGateway.java │ │ │ │ └── PktLoginSyncPerkInformation.java │ │ └── play │ │ │ ├── client │ │ │ ├── PktAttunePlayerConstellation.java │ │ │ ├── PktClearBlockStorageStack.java │ │ │ ├── PktDiscoverConstellation.java │ │ │ ├── PktEngraveGlass.java │ │ │ ├── PktPerkGemModification.java │ │ │ ├── PktRequestPerkSealAction.java │ │ │ ├── PktRequestSeed.java │ │ │ ├── PktRequestTeleport.java │ │ │ ├── PktRevokeGatewayAccess.java │ │ │ ├── PktRotateTelescope.java │ │ │ ├── PktToggleClientOption.java │ │ │ └── PktUnlockPerk.java │ │ │ └── server │ │ │ ├── PktOpenGui.java │ │ │ ├── PktOreScan.java │ │ │ ├── PktPlayEffect.java │ │ │ ├── PktProgressionUpdate.java │ │ │ ├── PktShootEntity.java │ │ │ ├── PktSyncCharge.java │ │ │ ├── PktSyncData.java │ │ │ ├── PktSyncKnowledge.java │ │ │ ├── PktSyncModifierSource.java │ │ │ ├── PktSyncPerkActivity.java │ │ │ ├── PktSyncStepAssist.java │ │ │ └── PktUpdateGateways.java │ ├── perk │ │ ├── AbstractPerk.java │ │ ├── AllocationStatus.java │ │ ├── CooldownPerk.java │ │ ├── DynamicModifierHelper.java │ │ ├── PerkAttributeHelper.java │ │ ├── PerkAttributeLimiter.java │ │ ├── PerkAttributeMap.java │ │ ├── PerkConverter.java │ │ ├── PerkCooldownHelper.java │ │ ├── PerkEffectHelper.java │ │ ├── PerkLevelManager.java │ │ ├── PerkTree.java │ │ ├── ProgressGatedPerk.java │ │ ├── data │ │ │ ├── LoadedPerkData.java │ │ │ ├── PerkTreeData.java │ │ │ ├── PerkTreeLoader.java │ │ │ ├── PerkTypeHandler.java │ │ │ ├── PreparedPerkTreeData.java │ │ │ └── builder │ │ │ │ ├── PerkDataBuilder.java │ │ │ │ └── PerkDataProvider.java │ │ ├── modifier │ │ │ ├── AttributeConverterPerk.java │ │ │ ├── AttributeModifierCritChance.java │ │ │ ├── AttributeModifierDodge.java │ │ │ ├── AttributeModifierLifeLeech.java │ │ │ ├── AttributeModifierPerk.java │ │ │ ├── AttributeModifierThorns.java │ │ │ ├── DynamicAttributeModifier.java │ │ │ └── PerkAttributeModifier.java │ │ ├── node │ │ │ ├── ConstellationPerk.java │ │ │ ├── KeyPerk.java │ │ │ ├── MajorPerk.java │ │ │ ├── RootPerk.java │ │ │ ├── focus │ │ │ │ ├── FocusPerk.java │ │ │ │ ├── KeyAlcara.java │ │ │ │ ├── KeyGelu.java │ │ │ │ ├── KeyUlteria.java │ │ │ │ └── KeyVorux.java │ │ │ ├── key │ │ │ │ ├── KeyAddEnchantment.java │ │ │ │ ├── KeyAreaOfEffect.java │ │ │ │ ├── KeyBleed.java │ │ │ │ ├── KeyChargeBalancing.java │ │ │ │ ├── KeyCheatDeath.java │ │ │ │ ├── KeyCleanseBadPotions.java │ │ │ │ ├── KeyCullingAttack.java │ │ │ │ ├── KeyDamageArmor.java │ │ │ │ ├── KeyDamageEffects.java │ │ │ │ ├── KeyDigTypes.java │ │ │ │ ├── KeyDisarm.java │ │ │ │ ├── KeyEntityReach.java │ │ │ │ ├── KeyGrowables.java │ │ │ │ ├── KeyLastBreath.java │ │ │ │ ├── KeyLightningArc.java │ │ │ │ ├── KeyMagnetDrops.java │ │ │ │ ├── KeyMantleFlight.java │ │ │ │ ├── KeyMending.java │ │ │ │ ├── KeyNoArmor.java │ │ │ │ ├── KeyNoKnockback.java │ │ │ │ ├── KeyProjectileDistance.java │ │ │ │ ├── KeyProjectileProximity.java │ │ │ │ ├── KeyRampage.java │ │ │ │ ├── KeyReducedFood.java │ │ │ │ ├── KeySpawnLights.java │ │ │ │ ├── KeyStepAssist.java │ │ │ │ ├── KeyStoneEnrichment.java │ │ │ │ ├── KeyTreeConnector.java │ │ │ │ └── KeyVoidTrash.java │ │ │ ├── root │ │ │ │ ├── RootAevitas.java │ │ │ │ ├── RootArmara.java │ │ │ │ ├── RootDiscidia.java │ │ │ │ ├── RootEvorsio.java │ │ │ │ └── RootVicio.java │ │ │ └── socket │ │ │ │ ├── GemSocketItem.java │ │ │ │ ├── GemSocketMajorPerk.java │ │ │ │ └── GemSocketPerk.java │ │ ├── reader │ │ │ ├── PerkAttributeInterpreter.java │ │ │ ├── PerkAttributeReader.java │ │ │ ├── PerkStatistic.java │ │ │ ├── ReaderAddedPercentage.java │ │ │ ├── ReaderBreakSpeed.java │ │ │ ├── ReaderFlatAttribute.java │ │ │ ├── ReaderPercentageAttribute.java │ │ │ └── ReaderVanillaAttribute.java │ │ ├── source │ │ │ ├── AttributeConverterProvider.java │ │ │ ├── AttributeModifierProvider.java │ │ │ ├── ModifierManager.java │ │ │ ├── ModifierSource.java │ │ │ ├── ModifierSourceProvider.java │ │ │ └── provider │ │ │ │ ├── PerkSourceProvider.java │ │ │ │ └── equipment │ │ │ │ ├── EquipmentAttributeModifierProvider.java │ │ │ │ ├── EquipmentModifierSource.java │ │ │ │ └── EquipmentSourceProvider.java │ │ ├── tick │ │ │ ├── PerkTickHelper.java │ │ │ └── PlayerTickPerk.java │ │ ├── tree │ │ │ ├── PerkTreeConstellation.java │ │ │ ├── PerkTreeGem.java │ │ │ ├── PerkTreeMajor.java │ │ │ └── PerkTreePoint.java │ │ └── type │ │ │ ├── AttributeTypeAllElementalResist.java │ │ │ ├── AttributeTypeArmor.java │ │ │ ├── AttributeTypeArmorToughness.java │ │ │ ├── AttributeTypeArrowSpeed.java │ │ │ ├── AttributeTypeAttackSpeed.java │ │ │ ├── AttributeTypeBreakSpeed.java │ │ │ ├── AttributeTypeChargeMaximum.java │ │ │ ├── AttributeTypeCooldown.java │ │ │ ├── AttributeTypeCritChance.java │ │ │ ├── AttributeTypeCritMultiplier.java │ │ │ ├── AttributeTypeDodge.java │ │ │ ├── AttributeTypeEnchantmentEffectiveness.java │ │ │ ├── AttributeTypeLifeLeech.java │ │ │ ├── AttributeTypeLifeRecovery.java │ │ │ ├── AttributeTypeLuck.java │ │ │ ├── AttributeTypeMaxHealth.java │ │ │ ├── AttributeTypeMaxReach.java │ │ │ ├── AttributeTypeMeleeAttackDamage.java │ │ │ ├── AttributeTypeMiningSize.java │ │ │ ├── AttributeTypeMovementSpeed.java │ │ │ ├── AttributeTypePerkEffect.java │ │ │ ├── AttributeTypePotionDuration.java │ │ │ ├── AttributeTypeProjectileAttackDamage.java │ │ │ ├── AttributeTypeSwimSpeed.java │ │ │ ├── AttributeTypeThorns.java │ │ │ ├── ModifierType.java │ │ │ ├── PerkAttributeType.java │ │ │ ├── PerkAttributeTypeHelper.java │ │ │ └── vanilla │ │ │ ├── VanillaAttributeType.java │ │ │ └── VanillaPerkAttributeType.java │ ├── registry │ │ ├── RegistryAdvancements.java │ │ ├── RegistryArgumentTypes.java │ │ ├── RegistryBlockRenderTypes.java │ │ ├── RegistryBlocks.java │ │ ├── RegistryCapabilities.java │ │ ├── RegistryConstellationEffects.java │ │ ├── RegistryConstellations.java │ │ ├── RegistryContainerTypes.java │ │ ├── RegistryCrystalProperties.java │ │ ├── RegistryCrystalPropertyUsages.java │ │ ├── RegistryData.java │ │ ├── RegistryDataSerializers.java │ │ ├── RegistryEffects.java │ │ ├── RegistryEnchantments.java │ │ ├── RegistryEngravingEffects.java │ │ ├── RegistryEntities.java │ │ ├── RegistryFluids.java │ │ ├── RegistryGameRules.java │ │ ├── RegistryIngredientTypes.java │ │ ├── RegistryItems.java │ │ ├── RegistryLoot.java │ │ ├── RegistryMantleEffects.java │ │ ├── RegistryMaterials.java │ │ ├── RegistryPerkAttributeReaders.java │ │ ├── RegistryPerkAttributeTypes.java │ │ ├── RegistryPerkConverters.java │ │ ├── RegistryPerkCustomModifiers.java │ │ ├── RegistryPerks.java │ │ ├── RegistryRecipeSerializers.java │ │ ├── RegistryRecipeTypes.java │ │ ├── RegistryRegistries.java │ │ ├── RegistryResearch.java │ │ ├── RegistrySounds.java │ │ ├── RegistryStructureTypes.java │ │ ├── RegistryStructures.java │ │ ├── RegistryTileEntities.java │ │ ├── RegistryWorldGeneration.java │ │ └── internal │ │ │ ├── InternalRegistryPrimer.java │ │ │ └── PrimerEventHandler.java │ ├── starlight │ │ ├── IIndependentStarlightSource.java │ │ ├── IStarlightReceiver.java │ │ ├── IStarlightSource.java │ │ ├── IStarlightTransmission.java │ │ ├── WorldNetworkHandler.java │ │ ├── network │ │ │ ├── StarlightNetworkRegistry.java │ │ │ ├── StarlightTransmissionHandler.java │ │ │ ├── StarlightUpdateHandler.java │ │ │ ├── TransmissionChain.java │ │ │ ├── TransmissionChunkTracker.java │ │ │ ├── TransmissionWorldHandler.java │ │ │ └── handler │ │ │ │ └── BlockTransmutationHandler.java │ │ └── transmission │ │ │ ├── IPrismTransmissionNode.java │ │ │ ├── ITransmissionNode.java │ │ │ ├── ITransmissionReceiver.java │ │ │ ├── ITransmissionSource.java │ │ │ ├── NodeConnection.java │ │ │ ├── TransmissionNetworkHelper.java │ │ │ ├── base │ │ │ ├── SimplePrismTransmissionNode.java │ │ │ ├── SimpleTransmissionNode.java │ │ │ ├── SimpleTransmissionReceiver.java │ │ │ ├── SimpleTransmissionSourceNode.java │ │ │ └── crystal │ │ │ │ ├── CrystalPrismTransmissionNode.java │ │ │ │ ├── CrystalTransmissionNode.java │ │ │ │ └── IndependentCrystalSource.java │ │ │ └── registry │ │ │ ├── SourceClassRegistry.java │ │ │ ├── TransmissionClassRegistry.java │ │ │ └── TransmissionProvider.java │ ├── storage │ │ ├── IStorageNetworkTile.java │ │ ├── StorageCache.java │ │ ├── StorageKey.java │ │ ├── StorageNetwork.java │ │ ├── StorageNetworkHandler.java │ │ └── StoredItemStack.java │ ├── structure │ │ ├── PatternAltarAttunement.java │ │ ├── PatternAltarConstellation.java │ │ ├── PatternAltarTrait.java │ │ ├── PatternAttunementAltar.java │ │ ├── PatternCelestialGateway.java │ │ ├── PatternEnhancedCollectorCrystal.java │ │ ├── PatternFountain.java │ │ ├── PatternInfuser.java │ │ ├── PatternRitualPedestal.java │ │ ├── PatternSingularity.java │ │ ├── PatternSpectralRelay.java │ │ └── types │ │ │ └── StructureType.java │ ├── tile │ │ ├── TileAttunementAltar.java │ │ ├── TileCelestialCrystals.java │ │ ├── TileCelestialGateway.java │ │ ├── TileChalice.java │ │ ├── TileCollectorCrystal.java │ │ ├── TileFountain.java │ │ ├── TileGemCrystals.java │ │ ├── TileIlluminator.java │ │ ├── TileInfuser.java │ │ ├── TileLens.java │ │ ├── TileObservatory.java │ │ ├── TilePrism.java │ │ ├── TileRefractionTable.java │ │ ├── TileRitualLink.java │ │ ├── TileRitualPedestal.java │ │ ├── TileSpectralRelay.java │ │ ├── TileTelescope.java │ │ ├── TileTranslucentBlock.java │ │ ├── TileTreeBeacon.java │ │ ├── TileTreeBeaconComponent.java │ │ ├── TileVanishing.java │ │ ├── TileWell.java │ │ ├── altar │ │ │ ├── AltarCollectionCategory.java │ │ │ ├── DeferredStarlightStorage.java │ │ │ └── TileAltar.java │ │ ├── base │ │ │ ├── TileAreaOfInfluence.java │ │ │ ├── TileEntitySynchronized.java │ │ │ ├── TileEntityTick.java │ │ │ ├── TileFakedState.java │ │ │ ├── TileNetwork.java │ │ │ ├── TileOwned.java │ │ │ ├── TileRequiresMultiblock.java │ │ │ └── network │ │ │ │ ├── TileReceiverBase.java │ │ │ │ ├── TileSourceBase.java │ │ │ │ └── TileTransmissionBase.java │ │ └── network │ │ │ ├── StarlightReceiverAltar.java │ │ │ ├── StarlightReceiverRitualPedestal.java │ │ │ ├── StarlightReceiverTreeBeacon.java │ │ │ ├── StarlightReceiverWell.java │ │ │ ├── StarlightTransmissionLens.java │ │ │ └── StarlightTransmissionPrism.java │ ├── util │ │ ├── ASMHookEndpoint.java │ │ ├── BlockDropCaptureAssist.java │ │ ├── CacheEventBus.java │ │ ├── CalendarUtils.java │ │ ├── CelestialStrike.java │ │ ├── ColorUtils.java │ │ ├── Counter.java │ │ ├── DamageSourceUtil.java │ │ ├── DamageUtil.java │ │ ├── DiminishingMultiplier.java │ │ ├── EffectIncrementer.java │ │ ├── IngredientHelper.java │ │ ├── MapStream.java │ │ ├── MiscUtils.java │ │ ├── NameUtil.java │ │ ├── NoOpTeleporter.java │ │ ├── PartialEffectExecutor.java │ │ ├── PlayerReference.java │ │ ├── RaytraceAssist.java │ │ ├── ReadWriteLockable.java │ │ ├── RecipeHelper.java │ │ ├── ServerLifecycleListener.java │ │ ├── SidedReference.java │ │ ├── TriFunction.java │ │ ├── VoxelUtils.java │ │ ├── WRItemObject.java │ │ ├── block │ │ │ ├── BlockDiscoverer.java │ │ │ ├── BlockGeometry.java │ │ │ ├── BlockMatchInformation.java │ │ │ ├── BlockPredicate.java │ │ │ ├── BlockPredicates.java │ │ │ ├── BlockStateHelper.java │ │ │ ├── BlockStateList.java │ │ │ ├── BlockSymmetryHelper.java │ │ │ ├── BlockUtils.java │ │ │ ├── ILocatable.java │ │ │ ├── SimpleBlockPredicate.java │ │ │ ├── TestBlockUseContext.java │ │ │ ├── TreeDiscoverer.java │ │ │ ├── WorldBlockPos.java │ │ │ └── iterator │ │ │ │ ├── BlockLayerPositionGenerator.java │ │ │ │ ├── BlockPositionGenerator.java │ │ │ │ ├── BlockRandomPositionGenerator.java │ │ │ │ ├── BlockRandomProximityPositionGenerator.java │ │ │ │ └── BlockSpherePositionGenerator.java │ │ ├── collision │ │ │ ├── CollisionHelper.java │ │ │ ├── CollisionManager.java │ │ │ └── CustomCollisionHandler.java │ │ ├── data │ │ │ ├── ASDataSerializers.java │ │ │ ├── BiDiPair.java │ │ │ ├── ByteBufUtils.java │ │ │ ├── JsonHelper.java │ │ │ └── Vector3.java │ │ ├── dispenser │ │ │ └── FluidContainerDispenseBehavior.java │ │ ├── entity │ │ │ └── EntityUtils.java │ │ ├── item │ │ │ ├── ItemComparator.java │ │ │ └── ItemUtils.java │ │ ├── log │ │ │ ├── LogCategory.java │ │ │ └── LogUtil.java │ │ ├── loot │ │ │ ├── LootCollector.java │ │ │ └── LootUtil.java │ │ ├── nbt │ │ │ ├── NBTComparator.java │ │ │ └── NBTHelper.java │ │ ├── object │ │ │ ├── CacheReference.java │ │ │ ├── ObjectReference.java │ │ │ ├── PredicateBuilder.java │ │ │ └── TransformReference.java │ │ ├── order │ │ │ ├── DependencySorter.java │ │ │ └── OrderSortable.java │ │ ├── reflection │ │ │ ├── ReflectionException.java │ │ │ └── ReflectionHelper.java │ │ ├── sound │ │ │ ├── CategorizedSoundEvent.java │ │ │ └── SoundHelper.java │ │ ├── tick │ │ │ ├── TickTokenMap.java │ │ │ ├── TimeoutList.java │ │ │ ├── TimeoutListContainer.java │ │ │ └── TokenMap.java │ │ ├── tile │ │ │ ├── FluidTankAccess.java │ │ │ ├── NamedInventoryTile.java │ │ │ ├── PrecisionSingleFluidTank.java │ │ │ ├── SimpleSingleFluidTank.java │ │ │ ├── TileInventory.java │ │ │ └── TileInventoryFiltered.java │ │ ├── time │ │ │ ├── TimeStopController.java │ │ │ ├── TimeStopEffectHelper.java │ │ │ └── TimeStopZone.java │ │ └── world │ │ │ ├── SkyCollectionHelper.java │ │ │ └── WorldSeedCache.java │ └── world │ │ ├── FeatureGenerationConfig.java │ │ ├── StructureGenerationConfig.java │ │ ├── TemplateStructure.java │ │ ├── TemplateStructureFeature.java │ │ ├── feature │ │ ├── ReplaceBlockFeature.java │ │ ├── RockCrystalFeature.java │ │ └── config │ │ │ └── ReplaceBlockConfig.java │ │ ├── marker │ │ └── MarkerManagerAS.java │ │ ├── placement │ │ ├── ChancePlacement.java │ │ ├── RiverbedPlacement.java │ │ ├── WorldFilteredPlacement.java │ │ └── config │ │ │ ├── ChanceConfig.java │ │ │ └── WorldFilterConfig.java │ │ └── structure │ │ ├── AncientShrineStructure.java │ │ ├── DesertShrineStructure.java │ │ ├── SmallShrineStructure.java │ │ └── feature │ │ ├── FeatureAncientShrineStructure.java │ │ ├── FeatureDesertShrineStructure.java │ │ └── FeatureSmallShrineStructure.java │ ├── datagen │ ├── AstralDataGenerator.java │ ├── assets │ │ └── AstralBlockStateMappingProvider.java │ └── data │ │ ├── advancements │ │ └── AstralAdvancementProvider.java │ │ ├── loot │ │ ├── AstralLootTableProvider.java │ │ ├── BlockLootTableProvider.java │ │ ├── ChestLootTableProvider.java │ │ ├── EntityLootTableProvider.java │ │ └── GameplayLootTableProvider.java │ │ ├── perks │ │ └── AstralPerkTreeProvider.java │ │ ├── recipes │ │ ├── AstralRecipeProvider.java │ │ ├── altar │ │ │ ├── AttunementAltarRecipeProvider.java │ │ │ ├── CelestialAltarRecipeProvider.java │ │ │ ├── DiscoveryAltarRecipeProvider.java │ │ │ └── RadianceAltarRecipeProvider.java │ │ ├── builder │ │ │ ├── ResultCookingRecipeBuilder.java │ │ │ ├── SimpleShapedRecipeBuilder.java │ │ │ ├── SimpleShapelessRecipeBuilder.java │ │ │ └── StoneCuttingRecipeBuilder.java │ │ ├── infuser │ │ │ └── InfuserRecipeProvider.java │ │ ├── interaction │ │ │ └── InteractionRecipeProvider.java │ │ ├── transmutation │ │ │ └── BlockTransmutationRecipeProvider.java │ │ ├── vanilla │ │ │ └── VanillaTypedRecipeProvider.java │ │ └── well │ │ │ └── LightwellRecipeProvider.java │ │ └── tags │ │ ├── AstralBlockTagsProvider.java │ │ └── AstralItemTagsProvider.java │ └── mixin │ ├── MixinAttributeModifierManager.java │ ├── MixinCooldownTracker.java │ ├── MixinEnchantmentHelper.java │ ├── MixinEntity.java │ ├── MixinForgeHooks.java │ ├── MixinItemPredicate.java │ ├── MixinItemStack.java │ ├── MixinLivingEntity.java │ ├── MixinModifiableAttributeInstance.java │ ├── MixinServerPlayNetHandler.java │ ├── MixinVoxelShapeSpliterator.java │ ├── MixinWorld.java │ └── client │ ├── MixinClientWorld.java │ ├── MixinGameRenderer.java │ ├── MixinItemStack.java │ └── MixinParticleManager.java └── resources ├── META-INF ├── MANIFEST.MF ├── accesstransformer.cfg ├── coremods.json └── mods.toml ├── assets └── astralsorcery │ ├── astralsorcery.mixins.json │ ├── blockstates │ ├── altar_attunement.json │ ├── altar_constellation.json │ ├── altar_discovery.json │ ├── altar_radiance.json │ ├── aquamarine_sand_ore.json │ ├── attunement_altar.json │ ├── black_marble_arch.json │ ├── black_marble_bricks.json │ ├── black_marble_chiseled.json │ ├── black_marble_engraved.json │ ├── black_marble_pillar.json │ ├── black_marble_raw.json │ ├── black_marble_runed.json │ ├── black_marble_slab.json │ ├── black_marble_stairs.json │ ├── celestial_collector_crystal.json │ ├── celestial_crystal_cluster.json │ ├── celestial_gateway.json │ ├── chalice.json │ ├── flare_light.json │ ├── fountain.json │ ├── fountain_prime_liquid.json │ ├── fountain_prime_ore.json │ ├── fountain_prime_vortex.json │ ├── gem_crystal_cluster.json │ ├── glow_flower.json │ ├── illuminator.json │ ├── infused_wood.json │ ├── infused_wood_arch.json │ ├── infused_wood_column.json │ ├── infused_wood_engraved.json │ ├── infused_wood_enriched.json │ ├── infused_wood_infused.json │ ├── infused_wood_planks.json │ ├── infused_wood_slab.json │ ├── infused_wood_stairs.json │ ├── infuser.json │ ├── lens.json │ ├── liquid_starlight.json │ ├── marble_arch.json │ ├── marble_bricks.json │ ├── marble_chiseled.json │ ├── marble_engraved.json │ ├── marble_pillar.json │ ├── marble_raw.json │ ├── marble_runed.json │ ├── marble_slab.json │ ├── marble_stairs.json │ ├── observatory.json │ ├── prism.json │ ├── refraction_table.json │ ├── ritual_link.json │ ├── ritual_pedestal.json │ ├── rock_collector_crystal.json │ ├── rock_crystal_ore.json │ ├── spectral_relay.json │ ├── starmetal.json │ ├── starmetal_ore.json │ ├── structural.json │ ├── telescope.json │ ├── translucent_block.json │ ├── tree_beacon.json │ ├── tree_beacon_component.json │ ├── vanishing.json │ └── well.json │ ├── lang │ ├── en_us.json │ ├── ru_ru.json │ └── zh_cn.json │ ├── models │ ├── block │ │ ├── altar_attunement.json │ │ ├── altar_constellation.json │ │ ├── altar_discovery.json │ │ ├── altar_radiance.json │ │ ├── attunement_altar.json │ │ ├── base │ │ │ └── nothing.json │ │ ├── black_marble_arch.json │ │ ├── black_marble_bricks.json │ │ ├── black_marble_chiseled.json │ │ ├── black_marble_engraved.json │ │ ├── black_marble_pillar.json │ │ ├── black_marble_pillar_bottom.json │ │ ├── black_marble_pillar_top.json │ │ ├── black_marble_raw.json │ │ ├── black_marble_runed.json │ │ ├── black_marble_slab.json │ │ ├── black_marble_slab_top.json │ │ ├── black_marble_stairs.json │ │ ├── black_marble_stairs_inner.json │ │ ├── black_marble_stairs_outer.json │ │ ├── celestial_collector_crystal_all.json │ │ ├── celestial_collector_crystal_solid.json │ │ ├── celestial_collector_crystal_translucent.json │ │ ├── celestial_crystal_cluster_0_all.json │ │ ├── celestial_crystal_cluster_0_solid.json │ │ ├── celestial_crystal_cluster_0_translucent.json │ │ ├── celestial_crystal_cluster_1_all.json │ │ ├── celestial_crystal_cluster_1_solid.json │ │ ├── celestial_crystal_cluster_1_translucent.json │ │ ├── celestial_crystal_cluster_2_all.json │ │ ├── celestial_crystal_cluster_2_solid.json │ │ ├── celestial_crystal_cluster_2_translucent.json │ │ ├── celestial_crystal_cluster_3_all.json │ │ ├── celestial_crystal_cluster_3_solid.json │ │ ├── celestial_crystal_cluster_3_translucent.json │ │ ├── celestial_crystal_cluster_4_all.json │ │ ├── celestial_crystal_cluster_4_solid.json │ │ ├── celestial_crystal_cluster_4_translucent.json │ │ ├── celestial_gateway_all.json │ │ ├── celestial_gateway_solid.json │ │ ├── celestial_gateway_translucent.json │ │ ├── chalice.json │ │ ├── fountain.json │ │ ├── fountain_prime_liquid_all.json │ │ ├── fountain_prime_liquid_solid.json │ │ ├── fountain_prime_liquid_translucent.json │ │ ├── fountain_prime_ore_all.json │ │ ├── fountain_prime_ore_solid.json │ │ ├── fountain_prime_ore_translucent.json │ │ ├── fountain_prime_vortex_all.json │ │ ├── fountain_prime_vortex_solid.json │ │ ├── fountain_prime_vortex_translucent.json │ │ ├── gem_crystal_cluster_stage_0_all.json │ │ ├── gem_crystal_cluster_stage_0_solid.json │ │ ├── gem_crystal_cluster_stage_0_translucent.json │ │ ├── gem_crystal_cluster_stage_1_all.json │ │ ├── gem_crystal_cluster_stage_1_solid.json │ │ ├── gem_crystal_cluster_stage_1_translucent.json │ │ ├── gem_crystal_cluster_stage_2_day_all.json │ │ ├── gem_crystal_cluster_stage_2_day_solid.json │ │ ├── gem_crystal_cluster_stage_2_day_translucent.json │ │ ├── gem_crystal_cluster_stage_2_night_all.json │ │ ├── gem_crystal_cluster_stage_2_night_solid.json │ │ ├── gem_crystal_cluster_stage_2_night_translucent.json │ │ ├── gem_crystal_cluster_stage_2_sky_all.json │ │ ├── gem_crystal_cluster_stage_2_sky_solid.json │ │ ├── gem_crystal_cluster_stage_2_sky_translucent.json │ │ ├── glow_flower.json │ │ ├── illuminator_all.json │ │ ├── illuminator_solid.json │ │ ├── illuminator_translucent.json │ │ ├── infused_wood.json │ │ ├── infused_wood_arch.json │ │ ├── infused_wood_column.json │ │ ├── infused_wood_column_bottom.json │ │ ├── infused_wood_column_top.json │ │ ├── infused_wood_engraved.json │ │ ├── infused_wood_enriched.json │ │ ├── infused_wood_infused.json │ │ ├── infused_wood_planks.json │ │ ├── infused_wood_slab.json │ │ ├── infused_wood_slab_top.json │ │ ├── infused_wood_stairs.json │ │ ├── infused_wood_stairs_inner.json │ │ ├── infused_wood_stairs_outer.json │ │ ├── infuser_all.json │ │ ├── infuser_solid.json │ │ ├── infuser_translucent.json │ │ ├── lens_base.json │ │ ├── lens_full.json │ │ ├── liquid_starlight.json │ │ ├── marble_arch.json │ │ ├── marble_bricks.json │ │ ├── marble_chiseled.json │ │ ├── marble_engraved.json │ │ ├── marble_pillar.json │ │ ├── marble_pillar_bottom.json │ │ ├── marble_pillar_top.json │ │ ├── marble_raw.json │ │ ├── marble_runed.json │ │ ├── marble_slab.json │ │ ├── marble_slab_top.json │ │ ├── marble_stairs.json │ │ ├── marble_stairs_inner.json │ │ ├── marble_stairs_outer.json │ │ ├── multilayer │ │ │ ├── aquamarine_sand_ore.json │ │ │ ├── celestial_collector_crystal.json │ │ │ ├── celestial_crystal_cluster_0.json │ │ │ ├── celestial_crystal_cluster_1.json │ │ │ ├── celestial_crystal_cluster_2.json │ │ │ ├── celestial_crystal_cluster_3.json │ │ │ ├── celestial_crystal_cluster_4.json │ │ │ ├── celestial_gateway.json │ │ │ ├── fountain_prime_liquid.json │ │ │ ├── fountain_prime_ore.json │ │ │ ├── fountain_prime_vortex.json │ │ │ ├── gem_crystal_cluster_stage_0.json │ │ │ ├── gem_crystal_cluster_stage_1.json │ │ │ ├── gem_crystal_cluster_stage_2_day.json │ │ │ ├── gem_crystal_cluster_stage_2_night.json │ │ │ ├── gem_crystal_cluster_stage_2_sky.json │ │ │ ├── illuminator.json │ │ │ ├── infuser.json │ │ │ ├── prism.json │ │ │ ├── prism_colored.json │ │ │ ├── ritual_link.json │ │ │ ├── ritual_pedestal.json │ │ │ ├── rock_collector_crystal.json │ │ │ ├── rock_crystal_ore.json │ │ │ ├── spectral_relay.json │ │ │ └── starmetal_ore.json │ │ ├── observatory.json │ │ ├── pillar.json │ │ ├── pillar_bottom.json │ │ ├── pillar_top.json │ │ ├── prism_all.json │ │ ├── prism_colored_all.json │ │ ├── prism_colored_solid.json │ │ ├── prism_colored_translucent.json │ │ ├── prism_solid.json │ │ ├── prism_translucent.json │ │ ├── refraction_table.json │ │ ├── refraction_table_particle.json │ │ ├── ritual_link_all.json │ │ ├── ritual_link_solid.json │ │ ├── ritual_link_translucent.json │ │ ├── ritual_pedestal_all.json │ │ ├── ritual_pedestal_solid.json │ │ ├── ritual_pedestal_translucent.json │ │ ├── rock_collector_crystal_all.json │ │ ├── rock_collector_crystal_solid.json │ │ ├── rock_collector_crystal_translucent.json │ │ ├── spectral_relay_all.json │ │ ├── spectral_relay_solid.json │ │ ├── spectral_relay_translucent.json │ │ ├── starmetal.json │ │ ├── telescope.json │ │ ├── tree_beacon.json │ │ └── well.json │ ├── item │ │ ├── altar_attunement.json │ │ ├── altar_constellation.json │ │ ├── altar_discovery.json │ │ ├── altar_radiance.json │ │ ├── aquamarine.json │ │ ├── aquamarine_sand_ore.json │ │ ├── architect_wand.json │ │ ├── attuned_celestial_crystal.json │ │ ├── attuned_rock_crystal.json │ │ ├── attunement_altar.json │ │ ├── black_marble_arch.json │ │ ├── black_marble_bricks.json │ │ ├── black_marble_chiseled.json │ │ ├── black_marble_engraved.json │ │ ├── black_marble_pillar.json │ │ ├── black_marble_raw.json │ │ ├── black_marble_runed.json │ │ ├── black_marble_slab.json │ │ ├── black_marble_stairs.json │ │ ├── blink_wand.json │ │ ├── celestial_collector_crystal.json │ │ ├── celestial_crystal.json │ │ ├── celestial_crystal_cluster.json │ │ ├── celestial_gateway.json │ │ ├── chalice.json │ │ ├── chisel.json │ │ ├── colored_lens_break.json │ │ ├── colored_lens_damage.json │ │ ├── colored_lens_fire.json │ │ ├── colored_lens_growth.json │ │ ├── colored_lens_push.json │ │ ├── colored_lens_regeneration.json │ │ ├── colored_lens_spectral.json │ │ ├── constellation_paper.json │ │ ├── crystal_axe.json │ │ ├── crystal_pickaxe.json │ │ ├── crystal_shovel.json │ │ ├── crystal_sword.json │ │ ├── enchantment_amulet.json │ │ ├── exchange_wand.json │ │ ├── fountain.json │ │ ├── fountain_prime_liquid.json │ │ ├── fountain_prime_ore.json │ │ ├── fountain_prime_vortex.json │ │ ├── gem_crystal_cluster.json │ │ ├── glass_lens.json │ │ ├── glow_flower.json │ │ ├── grapple_wand.json │ │ ├── hand_telescope.json │ │ ├── illumination_powder.json │ │ ├── illumination_wand.json │ │ ├── illuminator.json │ │ ├── infused_crystal_axe.json │ │ ├── infused_crystal_pickaxe.json │ │ ├── infused_crystal_shovel.json │ │ ├── infused_crystal_sword.json │ │ ├── infused_glass.json │ │ ├── infused_glass_engraved.json │ │ ├── infused_wood.json │ │ ├── infused_wood_arch.json │ │ ├── infused_wood_column.json │ │ ├── infused_wood_engraved.json │ │ ├── infused_wood_enriched.json │ │ ├── infused_wood_infused.json │ │ ├── infused_wood_planks.json │ │ ├── infused_wood_slab.json │ │ ├── infused_wood_stairs.json │ │ ├── infuser.json │ │ ├── knowledge_share.json │ │ ├── knowledge_share_empty.json │ │ ├── knowledge_share_written.json │ │ ├── lens.json │ │ ├── linking_tool.json │ │ ├── liquid_starlight_bucket.json │ │ ├── mantle.json │ │ ├── marble_arch.json │ │ ├── marble_bricks.json │ │ ├── marble_chiseled.json │ │ ├── marble_engraved.json │ │ ├── marble_pillar.json │ │ ├── marble_raw.json │ │ ├── marble_runed.json │ │ ├── marble_slab.json │ │ ├── marble_stairs.json │ │ ├── nocturnal_powder.json │ │ ├── observatory.json │ │ ├── parchment.json │ │ ├── perk_gem_day.json │ │ ├── perk_gem_night.json │ │ ├── perk_gem_sky.json │ │ ├── perk_seal.json │ │ ├── prism.json │ │ ├── refraction_table.json │ │ ├── resonating_gem.json │ │ ├── resonator.json │ │ ├── resonator_liquid.json │ │ ├── resonator_starlight.json │ │ ├── resonator_structure.json │ │ ├── ritual_link.json │ │ ├── ritual_pedestal.json │ │ ├── rock_collector_crystal.json │ │ ├── rock_crystal.json │ │ ├── rock_crystal_ore.json │ │ ├── shifting_star.json │ │ ├── shifting_star_aevitas.json │ │ ├── shifting_star_armara.json │ │ ├── shifting_star_discidia.json │ │ ├── shifting_star_evorsio.json │ │ ├── shifting_star_vicio.json │ │ ├── spectral_relay.json │ │ ├── stardust.json │ │ ├── starmetal.json │ │ ├── starmetal_ingot.json │ │ ├── starmetal_ore.json │ │ ├── telescope.json │ │ ├── tome.json │ │ ├── tree_beacon.json │ │ ├── wand.json │ │ └── well.json │ └── obj │ │ ├── celestial_wings.obj │ │ ├── crystal.obj │ │ └── wraith_wings.obj │ ├── sounds.json │ ├── sounds │ ├── altar │ │ ├── craft_finish_1.ogg │ │ ├── craft_finish_2.ogg │ │ ├── craft_loop_t1.ogg │ │ ├── craft_loop_t2.ogg │ │ ├── craft_loop_t3.ogg │ │ ├── craft_loop_t4.ogg │ │ ├── craft_loop_t4_waiting.ogg │ │ ├── craft_start_1.ogg │ │ └── craft_start_2.ogg │ ├── attunement │ │ ├── altar_idle_loop.ogg │ │ ├── altar_item_finish1.ogg │ │ ├── altar_item_finish2.ogg │ │ ├── altar_item_loop.ogg │ │ ├── altar_item_start1.ogg │ │ ├── altar_item_start2.ogg │ │ └── altar_player_attune.ogg │ ├── block_coloredlens_attach.ogg │ ├── craft_attunement.ogg │ ├── craft_finish.ogg │ ├── gui_journal_close.ogg │ ├── gui_journal_page_1.ogg │ ├── gui_journal_page_2.ogg │ ├── infuser │ │ ├── craft_finish_1.ogg │ │ ├── craft_finish_2.ogg │ │ ├── craft_loop_1.ogg │ │ ├── craft_loop_2.ogg │ │ ├── craft_start_1.ogg │ │ └── craft_start_2.ogg │ ├── perk │ │ ├── perk_seal_1.ogg │ │ ├── perk_seal_2.ogg │ │ ├── perk_unlock_1.ogg │ │ ├── perk_unlock_2.ogg │ │ ├── perk_unseal_1.ogg │ │ └── perk_unseal_2.ogg │ └── wand │ │ ├── illumination_wand_highlight_1.ogg │ │ ├── illumination_wand_highlight_2.ogg │ │ ├── illumination_wand_light_1.ogg │ │ ├── illumination_wand_light_2.ogg │ │ ├── illumination_wand_unhighlight_1.ogg │ │ └── illumination_wand_unhighlight_2.ogg │ └── textures │ ├── block │ ├── altar_1_bottom.png │ ├── altar_1_side.png │ ├── altar_1_top.png │ ├── altar_2_bottom.png │ ├── altar_2_side.png │ ├── altar_2_top.png │ ├── altar_3_bottom.png │ ├── altar_3_side.png │ ├── altar_3_top.png │ ├── altar_4_bottom.png │ ├── altar_4_side.png │ ├── altar_4_top.png │ ├── altar_hovering.png │ ├── attunement_altar.png │ ├── black_marble_arch.png │ ├── black_marble_bricks.png │ ├── black_marble_chiseled.png │ ├── black_marble_engraved.png │ ├── black_marble_pillar.png │ ├── black_marble_pillar_bottom.png │ ├── black_marble_pillar_inner.png │ ├── black_marble_pillar_top.png │ ├── black_marble_pillar_updown.png │ ├── black_marble_raw.png │ ├── black_marble_runed.png │ ├── celestial_collector_crystal.png │ ├── celestial_collector_crystal_core.png │ ├── celestial_gateway_orb_inner.png │ ├── celestial_gateway_orb_outer.png │ ├── celestial_gateway_platform.png │ ├── chalice_base.png │ ├── chalice_cup_bottom.png │ ├── chalice_cup_top.png │ ├── chalice_detail.png │ ├── crystal │ │ ├── celestial_cluster_core.png │ │ ├── celestial_cluster_stage_1.png │ │ ├── celestial_cluster_stage_2.png │ │ ├── celestial_cluster_stage_3.png │ │ ├── celestial_cluster_stage_4.png │ │ ├── celestial_cluster_stage_5.png │ │ ├── gem_cluster_stage_0_crystal.png │ │ ├── gem_cluster_stage_1_core.png │ │ ├── gem_cluster_stage_1_crystal.png │ │ ├── gem_cluster_stage_2.png │ │ ├── gem_cluster_stage_2_earth.png │ │ ├── gem_cluster_stage_2_earth_crystal.png │ │ ├── gem_cluster_stage_2_moon.png │ │ ├── gem_cluster_stage_2_moon_crystal.png │ │ ├── gem_cluster_stage_2_sun.png │ │ └── gem_cluster_stage_2_sun_crystal.png │ ├── entity │ │ ├── attunement_altar.png │ │ ├── lens_color.png │ │ ├── lens_frame.png │ │ ├── observatory.png │ │ ├── refraction_table.png │ │ └── telescope.png │ ├── fountain_core_bottom.png │ ├── fountain_core_side.png │ ├── fountain_core_top.png │ ├── fountain_prime_base.png │ ├── fountain_prime_fitting.png │ ├── fountain_prime_liquid.png │ ├── fountain_prime_ore.png │ ├── fountain_prime_vortex.png │ ├── glow_flower.png │ ├── glow_flower.png.mcmeta │ ├── illuminator_core.png │ ├── illuminator_glass.png │ ├── illuminator_glass.png.mcmeta │ ├── infuser.png │ ├── infuser_glass.png │ ├── infuser_glass.png.mcmeta │ ├── lens.png │ ├── lens_base1.png │ ├── lens_base2.png │ ├── lens_floor.png │ ├── lens_frame.png │ ├── lightwell.png │ ├── marble_arch.png │ ├── marble_bricks.png │ ├── marble_chiseled.png │ ├── marble_engraved.png │ ├── marble_pillar.png │ ├── marble_pillar_bottom.png │ ├── marble_pillar_inner.png │ ├── marble_pillar_top.png │ ├── marble_pillar_updown.png │ ├── marble_raw.png │ ├── marble_runed.png │ ├── observatory_base.png │ ├── observatory_particle.png │ ├── observatory_seat_tube.png │ ├── ore_aquamarine.png │ ├── ore_rockcrystal.png │ ├── ore_starmetal.png │ ├── ore_starmetal.png.mcmeta │ ├── prism_base1.png │ ├── prism_base2.png │ ├── prism_color_fitting.png │ ├── prism_color_side.png │ ├── prism_color_top.png │ ├── prism_frame.png │ ├── prism_side.png │ ├── prism_top.png │ ├── refraction_table_detail.png │ ├── refraction_table_frame.png │ ├── refraction_table_particle.png │ ├── ritual_link.png │ ├── ritual_link_glass.png │ ├── ritual_pedestal.png │ ├── ritual_pedestal_glass.png │ ├── rock_collector_crystal.png │ ├── rock_collector_crystal_core.png │ ├── spectral_relay.png │ ├── spectral_relay_glass.png │ ├── starmetal.png │ ├── starmetal.png.mcmeta │ ├── telescope.png │ ├── tree_beacon.png │ ├── wood_arch.png │ ├── wood_column.png │ ├── wood_column_bottom.png │ ├── wood_column_inner.png │ ├── wood_column_top.png │ ├── wood_column_updown.png │ ├── wood_engraved.png │ ├── wood_enriched.png │ ├── wood_infused.png │ ├── wood_planks.png │ └── wood_raw.png │ ├── constellation │ ├── background_aevitas.png │ ├── background_alcara.png │ ├── background_armara.png │ ├── background_bootes.png │ ├── background_discidia.png │ ├── background_evorsio.png │ ├── background_fornax.png │ ├── background_gelu.png │ ├── background_horologium.png │ ├── background_lucerna.png │ ├── background_mineralis.png │ ├── background_octans.png │ ├── background_pelotrio.png │ ├── background_ulteria.png │ ├── background_vicio.png │ └── background_vorux.png │ ├── effect │ ├── area_of_effect_cube.png │ ├── attunement_flare.png │ ├── attunement_flare.png.mcmeta │ ├── collector_crystal_burst.png │ ├── collector_crystal_burst.png.mcmeta │ ├── craft_burst.png │ ├── craft_burst.png.mcmeta │ ├── craft_flare.png │ ├── craft_flare.png.mcmeta │ ├── crystal_burst_effect_1.png │ ├── crystal_burst_effect_1.png.mcmeta │ ├── crystal_burst_effect_2.png │ ├── crystal_burst_effect_2.png.mcmeta │ ├── crystal_burst_effect_3.png │ ├── crystal_burst_effect_3.png.mcmeta │ ├── dazzling_aura.png │ ├── dazzling_aura.png.mcmeta │ ├── entity_flare.png │ ├── entity_flare.png.mcmeta │ ├── fountain_liquid.png │ ├── fountain_liquid.png.mcmeta │ ├── fountain_vortex.png │ ├── fountain_vortex.png.mcmeta │ ├── gem_crystal_burst.png │ ├── gem_crystal_burst.png.mcmeta │ ├── gem_crystal_burst_day.png │ ├── gem_crystal_burst_day.png.mcmeta │ ├── gem_crystal_burst_night.png │ ├── gem_crystal_burst_night.png.mcmeta │ ├── gem_crystal_burst_sky.png │ ├── gem_crystal_burst_sky.png.mcmeta │ ├── grappling_hook.png │ ├── grappling_hook.png.mcmeta │ ├── halo_infusion.png │ ├── halo_infusion.png.mcmeta │ ├── halo_ritual.png │ ├── halo_ritual.png.mcmeta │ ├── lightbeam.png │ ├── lightbeam_transfer.png │ ├── lightning_part.png │ ├── lightning_part.png.mcmeta │ ├── particle_large.png │ ├── particle_large.png.mcmeta │ ├── particle_small.png │ ├── particle_small.png.mcmeta │ ├── patreonflares │ │ ├── air.png │ │ ├── air.png.mcmeta │ │ ├── blue.png │ │ ├── blue.png.mcmeta │ │ ├── dark_green.png │ │ ├── dark_green.png.mcmeta │ │ ├── dark_red.png │ │ ├── dark_red.png.mcmeta │ │ ├── dawn.png │ │ ├── dawn.png.mcmeta │ │ ├── earth.png │ │ ├── earth.png.mcmeta │ │ ├── eldritch.png │ │ ├── eldritch.png.mcmeta │ │ ├── fire.png │ │ ├── fire.png.mcmeta │ │ ├── gold.png │ │ ├── gold.png.mcmeta │ │ ├── gray_mono.png │ │ ├── gray_mono.png.mcmeta │ │ ├── green.png │ │ ├── green.png.mcmeta │ │ ├── magenta.png │ │ ├── magenta.png.mcmeta │ │ ├── red.png │ │ ├── red.png.mcmeta │ │ ├── standard.png │ │ ├── standard.png.mcmeta │ │ ├── water.png │ │ ├── water.png.mcmeta │ │ ├── white.png │ │ ├── white.png.mcmeta │ │ ├── yellow.png │ │ └── yellow.png.mcmeta │ ├── relay_flare.png │ ├── relay_flare.png.mcmeta │ └── starlight_storage.png │ ├── environment │ ├── line.png │ ├── solar_eclipse.png │ ├── star_1.png │ ├── star_1.png.mcmeta │ ├── star_2.png │ └── star_2.png.mcmeta │ ├── fluid │ ├── bucket_mask.png │ ├── liquid_starlight_flowing.png │ ├── liquid_starlight_flowing.png.mcmeta │ ├── liquid_starlight_still.png │ └── liquid_starlight_still.png.mcmeta │ ├── gui │ ├── book │ │ ├── arrows.png │ │ ├── background_constellations.png │ │ ├── background_default.png │ │ ├── background_perks.png │ │ ├── blank.png │ │ ├── bookmark.png │ │ ├── bookmark_stretched.png │ │ ├── cluster_attunement.png │ │ ├── cluster_basiccraft.png │ │ ├── cluster_brilliance.png │ │ ├── cluster_constellation.png │ │ ├── cluster_discovery.png │ │ ├── cluster_radiance.png │ │ ├── cluster_unused_1.png │ │ ├── cluster_unused_2.png │ │ ├── frame_full.png │ │ ├── frame_left.png │ │ ├── grid_infusion.png │ │ ├── grid_recipe.png │ │ ├── grid_slot.png │ │ ├── grid_t1.png │ │ ├── grid_t2.png │ │ ├── grid_t3.png │ │ ├── grid_t4.png │ │ ├── grid_transmutation.png │ │ ├── starfield_overlay.png │ │ ├── structure_icons.png │ │ └── underline.png │ ├── constellation_paper.png │ ├── container_altar_attunement.png │ ├── container_altar_constellation.png │ ├── container_altar_discovery.png │ ├── container_altar_radiance.png │ ├── container_tome_storage.png │ ├── effect │ │ ├── bleed.png │ │ ├── cheat_death.png │ │ ├── drop_modifier.png │ │ └── time_freeze.png │ ├── hand_telescope_frame.png │ ├── jei │ │ ├── altar_attunement.png │ │ ├── altar_constellation.png │ │ ├── altar_discovery.png │ │ ├── altar_trait.png │ │ ├── infuser.png │ │ ├── interaction.png │ │ ├── lightwell.png │ │ └── transmutation.png │ ├── line_connection.png │ ├── menu_slot.png │ ├── menu_slot_gem_context.png │ ├── observatory_frame.png │ ├── overlay │ │ ├── charge.png │ │ ├── charge.png.mcmeta │ │ ├── charge_colorless.png │ │ ├── charge_colorless.png.mcmeta │ │ ├── exp_bar.png │ │ ├── exp_bar.png.mcmeta │ │ ├── exp_frame.png │ │ ├── exp_frame.png.mcmeta │ │ ├── item_frame.png │ │ ├── item_frame.png.mcmeta │ │ ├── item_frame_extension.png │ │ └── item_frame_extension.png.mcmeta │ ├── parchment_blank.png │ ├── perk │ │ ├── activateable.png │ │ ├── activateable.png.mcmeta │ │ ├── active.png │ │ ├── active.png.mcmeta │ │ ├── halo_activateable.png │ │ ├── halo_activateable.png.mcmeta │ │ ├── halo_active.png │ │ ├── halo_active.png.mcmeta │ │ ├── halo_inactive.png │ │ ├── halo_inactive.png.mcmeta │ │ ├── inactive.png │ │ ├── inactive.png.mcmeta │ │ ├── seal.png │ │ ├── seal.png.mcmeta │ │ ├── seal_break.png │ │ ├── seal_break.png.mcmeta │ │ ├── unlock.png │ │ └── unlock.png.mcmeta │ ├── refraction_table_empty.png │ ├── refraction_table_parchment.png │ ├── research_frame_wood.png │ ├── telescope_frame.png │ └── text_field.png │ ├── item │ ├── amulet.png │ ├── amulet_gem.png │ ├── amulet_shine.png │ ├── aquamarine.png │ ├── chisel.png │ ├── chisel.png.mcmeta │ ├── crystal_axe.png │ ├── crystal_celestial.png │ ├── crystal_pickaxe.png │ ├── crystal_rock.png │ ├── crystal_shovel.png │ ├── crystal_sword.png │ ├── glass_lens.png │ ├── glass_lens_coloured.png │ ├── illumination_powder.png │ ├── illumination_powder.png.mcmeta │ ├── illumination_wand.png │ ├── illumination_wand_overlay.png │ ├── infused_crystal_axe.png │ ├── infused_crystal_axe.png.mcmeta │ ├── infused_crystal_pickaxe.png │ ├── infused_crystal_pickaxe.png.mcmeta │ ├── infused_crystal_shovel.png │ ├── infused_crystal_shovel.png.mcmeta │ ├── infused_crystal_sword.png │ ├── infused_crystal_sword.png.mcmeta │ ├── infused_glass.png │ ├── infused_glass_engraved.png │ ├── linking_tool.png │ ├── looking_glass.png │ ├── mantle.png │ ├── mantle_overlay.png │ ├── nocturnal_powder.png │ ├── nocturnal_powder.png.mcmeta │ ├── parchment.png │ ├── perk_gem_day.png │ ├── perk_gem_night.png │ ├── perk_gem_sky.png │ ├── perk_seal.png │ ├── resonating_gem.png │ ├── resonating_gem.png.mcmeta │ ├── resonator_liquid.png │ ├── resonator_liquid.png.mcmeta │ ├── resonator_starlight.png │ ├── resonator_starlight.png.mcmeta │ ├── resonator_structure.png │ ├── resonator_structure.png.mcmeta │ ├── scroll_constellation.png │ ├── scroll_constellation_overlay.png │ ├── scroll_empty.png │ ├── scroll_written.png │ ├── shifting_star.png │ ├── shifting_star.png.mcmeta │ ├── shifting_star_aevitas.png │ ├── shifting_star_aevitas.png.mcmeta │ ├── shifting_star_armara.png │ ├── shifting_star_armara.png.mcmeta │ ├── shifting_star_base.png │ ├── shifting_star_base.png.mcmeta │ ├── shifting_star_discidia.png │ ├── shifting_star_discidia.png.mcmeta │ ├── shifting_star_evorsio.png │ ├── shifting_star_evorsio.png.mcmeta │ ├── shifting_star_vicio.png │ ├── shifting_star_vicio.png.mcmeta │ ├── stardust.png │ ├── stardust.png.mcmeta │ ├── starmetal_ingot.png │ ├── starmetal_ingot.png.mcmeta │ ├── tome.png │ ├── wand.png │ ├── wand_architect.png │ ├── wand_blink.png │ ├── wand_exchange.png │ └── wand_grapple.png │ ├── misc │ ├── black.png │ ├── blank.png │ ├── moon_full.png │ ├── moon_new.png │ ├── moon_waning_1_2.png │ ├── moon_waning_1_4.png │ ├── moon_waning_3_4.png │ ├── moon_waxing_1_2.png │ ├── moon_waxing_1_4.png │ ├── moon_waxing_3_4.png │ ├── smoke_1.png │ ├── smoke_1.png.mcmeta │ ├── smoke_2.png │ ├── smoke_2.png.mcmeta │ ├── smoke_3.png │ ├── smoke_3.png.mcmeta │ ├── smoke_4.png │ └── smoke_4.png.mcmeta │ ├── mob_effect │ ├── bleed.png │ ├── cheat_death.png │ ├── drop_modifier.png │ └── time_freeze.png │ └── model │ ├── armor │ └── mantle.png │ ├── celestial_wings_background.png │ ├── crystal_blue.png │ ├── crystal_magenta.png │ ├── crystal_red.png │ └── crystal_white.png ├── coremods ├── reach_set_client_renderer.js └── reach_set_server_entity_interact.js ├── data ├── astralsorcery │ ├── advancements │ │ ├── attune_crystal.json │ │ ├── attune_self.json │ │ ├── attune_trait.json │ │ ├── celestial_crystals.json │ │ ├── craft_t2_altar.json │ │ ├── craft_t3_altar.json │ │ ├── craft_t4_altar.json │ │ ├── find_constellation.json │ │ ├── find_minor_constellation.json │ │ ├── find_weak_constellation.json │ │ ├── perk_level_large.json │ │ ├── perk_level_medium.json │ │ ├── perk_level_small.json │ │ ├── rock_crystals.json │ │ └── root.json │ ├── loot_modifiers │ │ ├── perk_void_trash.json │ │ └── scorching_heat.json │ ├── loot_tables │ │ ├── blocks │ │ │ ├── altar_attunement.json │ │ │ ├── altar_constellation.json │ │ │ ├── altar_discovery.json │ │ │ ├── altar_radiance.json │ │ │ ├── aquamarine_sand_ore.json │ │ │ ├── attunement_altar.json │ │ │ ├── black_marble_arch.json │ │ │ ├── black_marble_bricks.json │ │ │ ├── black_marble_chiseled.json │ │ │ ├── black_marble_engraved.json │ │ │ ├── black_marble_pillar.json │ │ │ ├── black_marble_raw.json │ │ │ ├── black_marble_runed.json │ │ │ ├── black_marble_slab.json │ │ │ ├── black_marble_stairs.json │ │ │ ├── celestial_collector_crystal.json │ │ │ ├── celestial_crystal_cluster.json │ │ │ ├── celestial_gateway.json │ │ │ ├── chalice.json │ │ │ ├── flare_light.json │ │ │ ├── fountain.json │ │ │ ├── fountain_prime_liquid.json │ │ │ ├── fountain_prime_ore.json │ │ │ ├── fountain_prime_vortex.json │ │ │ ├── gem_crystal_cluster.json │ │ │ ├── glow_flower.json │ │ │ ├── illuminator.json │ │ │ ├── infused_wood.json │ │ │ ├── infused_wood_arch.json │ │ │ ├── infused_wood_column.json │ │ │ ├── infused_wood_engraved.json │ │ │ ├── infused_wood_enriched.json │ │ │ ├── infused_wood_infused.json │ │ │ ├── infused_wood_planks.json │ │ │ ├── infused_wood_slab.json │ │ │ ├── infused_wood_stairs.json │ │ │ ├── infuser.json │ │ │ ├── lens.json │ │ │ ├── marble_arch.json │ │ │ ├── marble_bricks.json │ │ │ ├── marble_chiseled.json │ │ │ ├── marble_engraved.json │ │ │ ├── marble_pillar.json │ │ │ ├── marble_raw.json │ │ │ ├── marble_runed.json │ │ │ ├── marble_slab.json │ │ │ ├── marble_stairs.json │ │ │ ├── observatory.json │ │ │ ├── prism.json │ │ │ ├── refraction_table.json │ │ │ ├── ritual_link.json │ │ │ ├── ritual_pedestal.json │ │ │ ├── rock_collector_crystal.json │ │ │ ├── rock_crystal_ore.json │ │ │ ├── spectral_relay.json │ │ │ ├── starmetal.json │ │ │ ├── starmetal_ore.json │ │ │ ├── structural.json │ │ │ ├── telescope.json │ │ │ ├── translucent_block.json │ │ │ ├── tree_beacon.json │ │ │ ├── tree_beacon_component.json │ │ │ ├── vanishing.json │ │ │ └── well.json │ │ └── shrine_chest.json │ ├── perks │ │ ├── _full_tree.json │ │ ├── ae_ev_effect_1.json │ │ ├── ae_ev_effect_2.json │ │ ├── ae_ev_exp_1.json │ │ ├── ae_ev_exp_2.json │ │ ├── ae_vi_effect_1.json │ │ ├── ae_vi_effect_2.json │ │ ├── ae_vi_exp_1.json │ │ ├── ae_vi_exp_2.json │ │ ├── aevitas.json │ │ ├── aevitas_armor_life_1.json │ │ ├── aevitas_armor_life_2.json │ │ ├── aevitas_armor_life_3.json │ │ ├── aevitas_c_armor_1.json │ │ ├── aevitas_c_armor_2.json │ │ ├── aevitas_c_reach_1.json │ │ ├── aevitas_c_reach_2.json │ │ ├── aevitas_cleanse_1.json │ │ ├── aevitas_cleanse_2.json │ │ ├── aevitas_cleanse_3.json │ │ ├── aevitas_co_armor_1.json │ │ ├── aevitas_co_armor_2.json │ │ ├── aevitas_co_ats_1.json │ │ ├── aevitas_co_ats_2.json │ │ ├── aevitas_connector_1.json │ │ ├── aevitas_connector_2.json │ │ ├── aevitas_connector_3.json │ │ ├── aevitas_connector_4.json │ │ ├── aevitas_inner_1.json │ │ ├── aevitas_inner_2.json │ │ ├── aevitas_inner_3.json │ │ ├── aevitas_inner_4.json │ │ ├── aevitas_inner_charge_1.json │ │ ├── aevitas_inner_charge_2.json │ │ ├── aevitas_inner_charge_3.json │ │ ├── aevitas_life_armor_1.json │ │ ├── aevitas_life_armor_2.json │ │ ├── aevitas_life_bridge_1.json │ │ ├── aevitas_life_bridge_2.json │ │ ├── aevitas_life_bridge_3.json │ │ ├── aevitas_life_reach_1.json │ │ ├── aevitas_life_reach_2.json │ │ ├── aevitas_m_gem.json │ │ ├── aevitas_m_life_armor.json │ │ ├── aevitas_m_life_resist.json │ │ ├── aevitas_outer_cdr_1.json │ │ ├── aevitas_outer_cdr_2.json │ │ ├── aevitas_outer_cdr_3.json │ │ ├── aevitas_outer_dodge_1.json │ │ ├── aevitas_outer_dodge_2.json │ │ ├── aevitas_outer_dodge_3.json │ │ ├── aevitas_outer_enrich_1.json │ │ ├── aevitas_outer_enrich_2.json │ │ ├── aevitas_outer_enrich_3.json │ │ ├── aevitas_outer_enrich_4.json │ │ ├── aevitas_outer_mending_1.json │ │ ├── aevitas_outer_mending_2.json │ │ ├── aevitas_outer_mending_3.json │ │ ├── aevitas_outer_mending_4.json │ │ ├── aevitas_outer_perkexp_1.json │ │ ├── aevitas_outer_perkexp_2.json │ │ ├── aevitas_outer_ttt_1.json │ │ ├── aevitas_outer_ttt_2.json │ │ ├── aevitas_outer_ttt_3.json │ │ ├── aevitas_outer_ttt_4.json │ │ ├── aevitas_outer_vit_1.json │ │ ├── aevitas_outer_vit_2.json │ │ ├── aevitas_outer_vit_3.json │ │ ├── aevitas_plant_growth_1.json │ │ ├── aevitas_plant_growth_2.json │ │ ├── aevitas_plant_growth_3.json │ │ ├── alcara_effect.json │ │ ├── alcara_exp.json │ │ ├── amara_maxcharge_inner_1.json │ │ ├── amara_maxcharge_inner_2.json │ │ ├── amara_maxcharge_inner_3.json │ │ ├── ar_ds_effect_1.json │ │ ├── ar_ds_effect_2.json │ │ ├── ar_ds_exp_1.json │ │ ├── ar_ds_exp_2.json │ │ ├── ar_vi_effect_1.json │ │ ├── ar_vi_effect_2.json │ │ ├── ar_vi_exp_1.json │ │ ├── ar_vi_exp_2.json │ │ ├── armara.json │ │ ├── armara_armor_1.json │ │ ├── armara_armor_2.json │ │ ├── armara_armor_inner_1.json │ │ ├── armara_armor_inner_2.json │ │ ├── armara_armor_inner_3.json │ │ ├── armara_c_movespeed_1.json │ │ ├── armara_c_movespeed_2.json │ │ ├── armara_c_recovery_1.json │ │ ├── armara_c_recovery_2.json │ │ ├── armara_co_life_1.json │ │ ├── armara_co_life_2.json │ │ ├── armara_co_mining_1.json │ │ ├── armara_co_mining_2.json │ │ ├── armara_connector_1.json │ │ ├── armara_connector_2.json │ │ ├── armara_connector_3.json │ │ ├── armara_connector_4.json │ │ ├── armara_dmgarmor_1.json │ │ ├── armara_dmgarmor_2.json │ │ ├── armara_dmgarmor_3.json │ │ ├── armara_dodge_bridge_1.json │ │ ├── armara_dodge_bridge_2.json │ │ ├── armara_dodge_bridge_3.json │ │ ├── armara_inner_1.json │ │ ├── armara_inner_2.json │ │ ├── armara_inner_3.json │ │ ├── armara_inner_4.json │ │ ├── armara_m_gem.json │ │ ├── armara_m_life_armor.json │ │ ├── armara_m_resist_armor.json │ │ ├── armara_noknockback_1.json │ │ ├── armara_noknockback_2.json │ │ ├── armara_noknockback_3.json │ │ ├── armara_outer_exp_1.json │ │ ├── armara_outer_exp_2.json │ │ ├── armara_outer_exp_3.json │ │ ├── armara_outer_proj_1.json │ │ ├── armara_outer_proj_2.json │ │ ├── armara_outer_proj_3.json │ │ ├── armara_outer_recovery_1.json │ │ ├── armara_outer_recovery_2.json │ │ ├── armara_outer_recovery_3.json │ │ ├── armara_outer_reflect_1.json │ │ ├── armara_outer_reflect_2.json │ │ ├── armara_outer_reflect_3.json │ │ ├── armara_outer_reflect_4.json │ │ ├── armara_outer_revive_1.json │ │ ├── armara_outer_revive_2.json │ │ ├── armara_outer_revive_3.json │ │ ├── armara_outer_revive_4.json │ │ ├── armara_outer_worn_1.json │ │ ├── armara_outer_worn_2.json │ │ ├── armara_outer_worn_3.json │ │ ├── armara_outer_worn_4.json │ │ ├── armara_resist_1.json │ │ ├── armara_resist_2.json │ │ ├── core_aoe_reach_1.json │ │ ├── core_aoe_reach_2.json │ │ ├── core_aoe_reach_3.json │ │ ├── core_cdr_1.json │ │ ├── core_cdr_2.json │ │ ├── core_cdr_3.json │ │ ├── core_charge_cave_1.json │ │ ├── core_charge_cave_2.json │ │ ├── core_charge_cave_3.json │ │ ├── core_ench_effect_1.json │ │ ├── core_ench_effect_2.json │ │ ├── core_ench_effect_3.json │ │ ├── core_infinity_1.json │ │ ├── core_infinity_2.json │ │ ├── core_lifeleech_1.json │ │ ├── core_lifeleech_2.json │ │ ├── core_lifeleech_3.json │ │ ├── core_luck_1.json │ │ ├── core_luck_2.json │ │ ├── core_m_gem.json │ │ ├── core_perk_exp_1.json │ │ ├── core_perk_exp_2.json │ │ ├── core_perk_exp_3.json │ │ ├── core_perk_exp_4.json │ │ ├── core_potion_dur_1.json │ │ ├── core_potion_dur_2.json │ │ ├── core_potion_dur_3.json │ │ ├── core_potion_dur_4.json │ │ ├── core_smite_1.json │ │ ├── core_smite_2.json │ │ ├── core_unbreaking_1.json │ │ ├── core_unbreaking_2.json │ │ ├── core_unbreaking_3.json │ │ ├── discidia.json │ │ ├── discidia_c_ats_bridge_1.json │ │ ├── discidia_c_ats_bridge_2.json │ │ ├── discidia_c_damage_1.json │ │ ├── discidia_c_damage_2.json │ │ ├── discidia_close_range_1.json │ │ ├── discidia_close_range_2.json │ │ ├── discidia_close_range_3.json │ │ ├── discidia_co_melee_1.json │ │ ├── discidia_co_melee_2.json │ │ ├── discidia_co_projectiles_1.json │ │ ├── discidia_co_projectiles_2.json │ │ ├── discidia_connector_1.json │ │ ├── discidia_connector_2.json │ │ ├── discidia_connector_3.json │ │ ├── discidia_connector_4.json │ │ ├── discidia_crit_bridge_1.json │ │ ├── discidia_crit_bridge_2.json │ │ ├── discidia_crit_bridge_3.json │ │ ├── discidia_distance_1.json │ │ ├── discidia_distance_2.json │ │ ├── discidia_distance_3.json │ │ ├── discidia_inner_1.json │ │ ├── discidia_inner_2.json │ │ ├── discidia_inner_3.json │ │ ├── discidia_inner_4.json │ │ ├── discidia_m_gem.json │ │ ├── discidia_m_melee_reach.json │ │ ├── discidia_m_proj_dmg_speed.json │ │ ├── discidia_melee_1.json │ │ ├── discidia_melee_2.json │ │ ├── discidia_multi_1.json │ │ ├── discidia_multi_2.json │ │ ├── discidia_multi_3.json │ │ ├── discidia_outer_arc_1.json │ │ ├── discidia_outer_arc_2.json │ │ ├── discidia_outer_arc_3.json │ │ ├── discidia_outer_arc_4.json │ │ ├── discidia_outer_bleed_1.json │ │ ├── discidia_outer_bleed_2.json │ │ ├── discidia_outer_bleed_3.json │ │ ├── discidia_outer_bleed_4.json │ │ ├── discidia_outer_bleed_5.json │ │ ├── discidia_outer_crit_1.json │ │ ├── discidia_outer_crit_2.json │ │ ├── discidia_outer_cull_1.json │ │ ├── discidia_outer_cull_2.json │ │ ├── discidia_outer_cull_3.json │ │ ├── discidia_outer_cull_4.json │ │ ├── discidia_outer_exp_1.json │ │ ├── discidia_outer_exp_2.json │ │ ├── discidia_outer_exp_3.json │ │ ├── discidia_outer_potionhit_1.json │ │ ├── discidia_outer_potionhit_2.json │ │ ├── discidia_outer_potionhit_3.json │ │ ├── discidia_outer_potionhit_4.json │ │ ├── discidia_proj_1.json │ │ ├── discidia_proj_2.json │ │ ├── discidia_rampage_1.json │ │ ├── discidia_rampage_2.json │ │ ├── discidia_rampage_3.json │ │ ├── ev_ds_effect_1.json │ │ ├── ev_ds_effect_2.json │ │ ├── ev_ds_exp_1.json │ │ ├── ev_ds_exp_2.json │ │ ├── evorsio.json │ │ ├── evorsio_c_armor_1.json │ │ ├── evorsio_c_armor_2.json │ │ ├── evorsio_c_mining_1.json │ │ ├── evorsio_c_mining_2.json │ │ ├── evorsio_charge_inner_1.json │ │ ├── evorsio_charge_inner_2.json │ │ ├── evorsio_charge_inner_3.json │ │ ├── evorsio_co_cdr_1.json │ │ ├── evorsio_co_cdr_2.json │ │ ├── evorsio_co_reach_1.json │ │ ├── evorsio_co_reach_2.json │ │ ├── evorsio_connector_1.json │ │ ├── evorsio_connector_2.json │ │ ├── evorsio_connector_3.json │ │ ├── evorsio_connector_4.json │ │ ├── evorsio_damage_1.json │ │ ├── evorsio_damage_2.json │ │ ├── evorsio_digtypes_1.json │ │ ├── evorsio_digtypes_2.json │ │ ├── evorsio_digtypes_3.json │ │ ├── evorsio_inner_1.json │ │ ├── evorsio_inner_2.json │ │ ├── evorsio_inner_3.json │ │ ├── evorsio_inner_4.json │ │ ├── evorsio_inner_crit1.json │ │ ├── evorsio_inner_crit2.json │ │ ├── evorsio_inner_crit3.json │ │ ├── evorsio_m_dmg_ats.json │ │ ├── evorsio_m_gem.json │ │ ├── evorsio_m_mining_reach.json │ │ ├── evorsio_mining_1.json │ │ ├── evorsio_mining_2.json │ │ ├── evorsio_mining_bridge_1.json │ │ ├── evorsio_mining_bridge_2.json │ │ ├── evorsio_mining_bridge_3.json │ │ ├── evorsio_mining_size_1.json │ │ ├── evorsio_mining_size_2.json │ │ ├── evorsio_mining_size_3.json │ │ ├── evorsio_outer_entity_reach_1.json │ │ ├── evorsio_outer_entity_reach_2.json │ │ ├── evorsio_outer_entity_reach_3.json │ │ ├── evorsio_outer_lowlife_1.json │ │ ├── evorsio_outer_lowlife_2.json │ │ ├── evorsio_outer_lowlife_3.json │ │ ├── evorsio_outer_luck_1.json │ │ ├── evorsio_outer_luck_2.json │ │ ├── evorsio_outer_luck_3.json │ │ ├── evorsio_outer_size_1.json │ │ ├── evorsio_outer_size_2.json │ │ ├── evorsio_outer_size_3.json │ │ ├── evorsio_outer_size_4.json │ │ ├── focus_alcara.json │ │ ├── focus_gelu.json │ │ ├── focus_ulteria.json │ │ ├── focus_vorux.json │ │ ├── gelu_effect.json │ │ ├── gelu_exp.json │ │ ├── travel_0.json │ │ ├── travel_1.json │ │ ├── travel_10.json │ │ ├── travel_11.json │ │ ├── travel_12.json │ │ ├── travel_13.json │ │ ├── travel_14.json │ │ ├── travel_15.json │ │ ├── travel_16.json │ │ ├── travel_17.json │ │ ├── travel_18.json │ │ ├── travel_19.json │ │ ├── travel_2.json │ │ ├── travel_20.json │ │ ├── travel_21.json │ │ ├── travel_22.json │ │ ├── travel_23.json │ │ ├── travel_24.json │ │ ├── travel_25.json │ │ ├── travel_26.json │ │ ├── travel_27.json │ │ ├── travel_28.json │ │ ├── travel_29.json │ │ ├── travel_3.json │ │ ├── travel_30.json │ │ ├── travel_31.json │ │ ├── travel_32.json │ │ ├── travel_33.json │ │ ├── travel_34.json │ │ ├── travel_35.json │ │ ├── travel_36.json │ │ ├── travel_37.json │ │ ├── travel_38.json │ │ ├── travel_39.json │ │ ├── travel_4.json │ │ ├── travel_40.json │ │ ├── travel_41.json │ │ ├── travel_42.json │ │ ├── travel_43.json │ │ ├── travel_44.json │ │ ├── travel_45.json │ │ ├── travel_46.json │ │ ├── travel_47.json │ │ ├── travel_48.json │ │ ├── travel_49.json │ │ ├── travel_5.json │ │ ├── travel_50.json │ │ ├── travel_51.json │ │ ├── travel_52.json │ │ ├── travel_53.json │ │ ├── travel_54.json │ │ ├── travel_6.json │ │ ├── travel_7.json │ │ ├── travel_8.json │ │ ├── travel_9.json │ │ ├── ulteria_effect.json │ │ ├── ulteria_exp.json │ │ ├── vicio.json │ │ ├── vicio_ats_bridge_1.json │ │ ├── vicio_ats_bridge_2.json │ │ ├── vicio_ats_bridge_3.json │ │ ├── vicio_ats_inner_1.json │ │ ├── vicio_ats_inner_2.json │ │ ├── vicio_ats_inner_3.json │ │ ├── vicio_c_armor_1.json │ │ ├── vicio_c_armor_2.json │ │ ├── vicio_c_mining_1.json │ │ ├── vicio_c_mining_2.json │ │ ├── vicio_charge_inner_1.json │ │ ├── vicio_charge_inner_2.json │ │ ├── vicio_charge_inner_3.json │ │ ├── vicio_co_dodge_1.json │ │ ├── vicio_co_dodge_2.json │ │ ├── vicio_co_ms_1.json │ │ ├── vicio_co_ms_2.json │ │ ├── vicio_connector_1.json │ │ ├── vicio_connector_2.json │ │ ├── vicio_connector_3.json │ │ ├── vicio_connector_4.json │ │ ├── vicio_dodge_1.json │ │ ├── vicio_dodge_2.json │ │ ├── vicio_food_reduction_1.json │ │ ├── vicio_food_reduction_2.json │ │ ├── vicio_food_reduction_3.json │ │ ├── vicio_inner_1.json │ │ ├── vicio_inner_2.json │ │ ├── vicio_inner_3.json │ │ ├── vicio_inner_4.json │ │ ├── vicio_m_dodge_movespeed.json │ │ ├── vicio_m_gem.json │ │ ├── vicio_m_reach_movespeed.json │ │ ├── vicio_outer_cdr_1.json │ │ ├── vicio_outer_cdr_2.json │ │ ├── vicio_outer_cdr_3.json │ │ ├── vicio_outer_charge_resist_1.json │ │ ├── vicio_outer_charge_resist_2.json │ │ ├── vicio_outer_charge_resist_3.json │ │ ├── vicio_outer_flight_1.json │ │ ├── vicio_outer_flight_2.json │ │ ├── vicio_outer_flight_3.json │ │ ├── vicio_outer_flight_4.json │ │ ├── vicio_outer_magnet_1.json │ │ ├── vicio_outer_magnet_2.json │ │ ├── vicio_outer_magnet_3.json │ │ ├── vicio_outer_magnet_4.json │ │ ├── vicio_outer_meleedmg_1.json │ │ ├── vicio_outer_meleedmg_2.json │ │ ├── vicio_outer_meleedmg_3.json │ │ ├── vicio_outer_movespeed_1.json │ │ ├── vicio_outer_movespeed_2.json │ │ ├── vicio_outer_step_1.json │ │ ├── vicio_outer_step_2.json │ │ ├── vicio_outer_step_3.json │ │ ├── vicio_outer_step_4.json │ │ ├── vicio_place_lights_1.json │ │ ├── vicio_place_lights_2.json │ │ ├── vicio_place_lights_3.json │ │ ├── vicio_reach_1.json │ │ ├── vicio_reach_2.json │ │ ├── vorux_effect.json │ │ └── vorux_exp.json │ ├── recipes │ │ ├── altar │ │ │ ├── altar_attunement.json │ │ │ ├── altar_constellation.json │ │ │ ├── altar_radiance.json │ │ │ ├── architect_wand.json │ │ │ ├── attunement_altar.json │ │ │ ├── black_marble_arch.json │ │ │ ├── black_marble_bricks.json │ │ │ ├── black_marble_chiseled.json │ │ │ ├── black_marble_engraved.json │ │ │ ├── black_marble_pillar.json │ │ │ ├── black_marble_raw.json │ │ │ ├── black_marble_runed.json │ │ │ ├── black_marble_slab.json │ │ │ ├── black_marble_stairs.json │ │ │ ├── blink_wand.json │ │ │ ├── celestial_collector_crystal.json │ │ │ ├── celestial_gateway.json │ │ │ ├── chalice.json │ │ │ ├── chisel.json │ │ │ ├── colored_lens_break.json │ │ │ ├── colored_lens_damage.json │ │ │ ├── colored_lens_fire.json │ │ │ ├── colored_lens_growth.json │ │ │ ├── colored_lens_push.json │ │ │ ├── colored_lens_regeneration.json │ │ │ ├── colored_lens_spectral.json │ │ │ ├── constellation_paper_aevitas.json │ │ │ ├── constellation_paper_alcara.json │ │ │ ├── constellation_paper_armara.json │ │ │ ├── constellation_paper_bootes.json │ │ │ ├── constellation_paper_discidia.json │ │ │ ├── constellation_paper_evorsio.json │ │ │ ├── constellation_paper_fornax.json │ │ │ ├── constellation_paper_gelu.json │ │ │ ├── constellation_paper_horologium.json │ │ │ ├── constellation_paper_lucerna.json │ │ │ ├── constellation_paper_mineralis.json │ │ │ ├── constellation_paper_octans.json │ │ │ ├── constellation_paper_pelotrio.json │ │ │ ├── constellation_paper_ulteria.json │ │ │ ├── constellation_paper_vicio.json │ │ │ ├── constellation_paper_vorux.json │ │ │ ├── crystal_axe.json │ │ │ ├── crystal_pickaxe.json │ │ │ ├── crystal_shovel.json │ │ │ ├── crystal_sword.json │ │ │ ├── enchantment_amulet_init.json │ │ │ ├── enchantment_amulet_reroll.json │ │ │ ├── exchange_wand.json │ │ │ ├── fountain.json │ │ │ ├── fountain_prime_liquid.json │ │ │ ├── fountain_prime_vortex.json │ │ │ ├── glass_lens.json │ │ │ ├── grapple_wand.json │ │ │ ├── hand_telescope.json │ │ │ ├── illumination_powder.json │ │ │ ├── illumination_wand.json │ │ │ ├── illuminator.json │ │ │ ├── infused_glass.json │ │ │ ├── infused_wood_arch.json │ │ │ ├── infused_wood_column.json │ │ │ ├── infused_wood_engraved.json │ │ │ ├── infused_wood_enriched.json │ │ │ ├── infused_wood_planks.json │ │ │ ├── infused_wood_slab.json │ │ │ ├── infused_wood_stairs.json │ │ │ ├── infuser.json │ │ │ ├── knowledge_share.json │ │ │ ├── lens.json │ │ │ ├── linking_tool.json │ │ │ ├── mantle.json │ │ │ ├── mantle_aevitas.json │ │ │ ├── mantle_armara.json │ │ │ ├── mantle_bootes.json │ │ │ ├── mantle_discidia.json │ │ │ ├── mantle_evorsio.json │ │ │ ├── mantle_fornax.json │ │ │ ├── mantle_horologium.json │ │ │ ├── mantle_lucerna.json │ │ │ ├── mantle_mineralis.json │ │ │ ├── mantle_octans.json │ │ │ ├── mantle_pelotrio.json │ │ │ ├── mantle_vicio.json │ │ │ ├── marble_arch.json │ │ │ ├── marble_bricks.json │ │ │ ├── marble_chiseled.json │ │ │ ├── marble_engraved.json │ │ │ ├── marble_pillar.json │ │ │ ├── marble_runed.json │ │ │ ├── marble_slab.json │ │ │ ├── marble_slabs_from_bricks.json │ │ │ ├── marble_stairs.json │ │ │ ├── marble_stairs_from_bricks.json │ │ │ ├── nocturnal_powder.json │ │ │ ├── observatory.json │ │ │ ├── parchment.json │ │ │ ├── perk_seal.json │ │ │ ├── prism.json │ │ │ ├── refraction_table.json │ │ │ ├── resonator.json │ │ │ ├── resonator_upgrade_domic.json │ │ │ ├── resonator_upgrade_ichosic.json │ │ │ ├── ritual_link.json │ │ │ ├── ritual_pedestal.json │ │ │ ├── rock_collector_crystal.json │ │ │ ├── shifting_star.json │ │ │ ├── shifting_star_aevitas.json │ │ │ ├── shifting_star_armara.json │ │ │ ├── shifting_star_discidia.json │ │ │ ├── shifting_star_evorsio.json │ │ │ ├── shifting_star_vicio.json │ │ │ ├── spectral_relay.json │ │ │ ├── telescope.json │ │ │ ├── tome.json │ │ │ ├── tree_beacon.json │ │ │ ├── wand.json │ │ │ └── well.json │ │ ├── blasting │ │ │ ├── aquamarine.json │ │ │ └── starmetal_ingot.json │ │ ├── block_transmutation │ │ │ ├── craftingtable_altar.json │ │ │ ├── diamond_emerald.json │ │ │ ├── iron_starmetal.json │ │ │ ├── magma_obsidian.json │ │ │ ├── netherrack_netherbrick.json │ │ │ ├── netherwart_soulsand.json │ │ │ ├── pumpkin_cake.json │ │ │ ├── sand_clay.json │ │ │ ├── sandstone_endstone.json │ │ │ └── sealantern_lapis.json │ │ ├── change_gateway_color.json │ │ ├── change_wand_color.json │ │ ├── infuser │ │ │ ├── ancient_debris.json │ │ │ ├── aquamarine.json │ │ │ ├── blaze_rod.json │ │ │ ├── bone.json │ │ │ ├── carrot.json │ │ │ ├── crystal_axe.json │ │ │ ├── crystal_pickaxe.json │ │ │ ├── crystal_shovel.json │ │ │ ├── crystal_sword.json │ │ │ ├── diamond_ore.json │ │ │ ├── dirt.json │ │ │ ├── emerald_ore.json │ │ │ ├── ender_pearl.json │ │ │ ├── glass.json │ │ │ ├── glass_pane.json │ │ │ ├── gold_ore.json │ │ │ ├── gunpowder.json │ │ │ ├── infused_wood.json │ │ │ ├── iron_ore.json │ │ │ ├── lapis_ore.json │ │ │ ├── melon_slice.json │ │ │ ├── nether_gold_ore.json │ │ │ ├── redstone.json │ │ │ ├── redstone_ore.json │ │ │ ├── sand.json │ │ │ └── slime_ball.json │ │ ├── lightwell │ │ │ ├── lava_magma_block.json │ │ │ ├── lava_netherrack.json │ │ │ ├── starlight_aquamarine.json │ │ │ ├── starlight_attuned_celestial_crystal.json │ │ │ ├── starlight_attuned_rock_crystal.json │ │ │ ├── starlight_celestial_crystal.json │ │ │ ├── starlight_resonating_gem.json │ │ │ ├── starlight_rock_crystal.json │ │ │ ├── water_ice.json │ │ │ ├── water_packed_ice.json │ │ │ └── water_snow.json │ │ ├── liquid_interaction │ │ │ ├── liquidstarlight_lava_aquamarine.json │ │ │ ├── liquidstarlight_lava_sand.json │ │ │ ├── liquidstarlight_water_ice.json │ │ │ ├── water_lava_cobblestone.json │ │ │ ├── water_lava_obsidian.json │ │ │ └── water_lava_stone.json │ │ ├── shaped │ │ │ ├── black_marble │ │ │ │ ├── black_marble_arch.json │ │ │ │ ├── black_marble_bricks.json │ │ │ │ ├── black_marble_chiseled.json │ │ │ │ ├── black_marble_engraved.json │ │ │ │ ├── black_marble_pillar.json │ │ │ │ ├── black_marble_raw.json │ │ │ │ ├── black_marble_runed.json │ │ │ │ ├── black_marble_slab.json │ │ │ │ └── black_marble_stairs.json │ │ │ ├── marble │ │ │ │ ├── marble_arch.json │ │ │ │ ├── marble_bricks.json │ │ │ │ ├── marble_chiseled.json │ │ │ │ ├── marble_engraved.json │ │ │ │ ├── marble_pillar.json │ │ │ │ ├── marble_runed.json │ │ │ │ ├── marble_slab.json │ │ │ │ ├── marble_slab_from_bricks.json │ │ │ │ ├── marble_stairs.json │ │ │ │ └── marble_stairs_from_bricks.json │ │ │ ├── parchment.json │ │ │ ├── starmetal.json │ │ │ ├── tome.json │ │ │ └── wand.json │ │ ├── shapeless │ │ │ └── starmetal_ingot.json │ │ ├── smelting │ │ │ ├── aquamarine.json │ │ │ └── starmetal_ingot.json │ │ └── stonecutting │ │ │ ├── black_marble_arch.json │ │ │ ├── black_marble_bricks.json │ │ │ ├── black_marble_chiseled.json │ │ │ ├── black_marble_engraved.json │ │ │ ├── black_marble_pillar.json │ │ │ ├── black_marble_runed.json │ │ │ ├── black_marble_slab.json │ │ │ ├── black_marble_stairs.json │ │ │ ├── marble_arch.json │ │ │ ├── marble_bricks.json │ │ │ ├── marble_chiseled.json │ │ │ ├── marble_engraved.json │ │ │ ├── marble_pillar.json │ │ │ ├── marble_runed.json │ │ │ ├── marble_slab.json │ │ │ ├── marble_slab_from_bricks.json │ │ │ ├── marble_stairs.json │ │ │ └── marble_stairs_from_bricks.json │ ├── scripts │ │ └── astralsorcery │ │ │ ├── altar.zs │ │ │ ├── block_transmutation.zs │ │ │ ├── infusion.zs │ │ │ ├── liquid_interaction.zs │ │ │ └── well.zs │ ├── structures │ │ ├── ancient_shrine.nbt │ │ ├── desert_shrine.nbt │ │ └── small_shrine.nbt │ └── tags │ │ └── items │ │ ├── colored_lens.json │ │ ├── stardust.json │ │ └── starmetal.json ├── create │ └── tags │ │ └── fluids │ │ └── no_infinite_draining.json ├── curios │ └── tags │ │ └── items │ │ └── necklace.json ├── forge │ ├── loot_modifiers │ │ └── global_loot_modifiers.json │ └── tags │ │ ├── blocks │ │ ├── marble.json │ │ └── ores.json │ │ └── items │ │ ├── gems │ │ └── aquamarine.json │ │ └── ores.json └── minecraft │ └── tags │ ├── blocks │ └── beacon_base_blocks.json │ └── items │ └── lectern_books.json └── pack.mcmeta /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/.gitignore -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/README.md -------------------------------------------------------------------------------- /perkTreeMap.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/perkTreeMap.pdn -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/AstralSorcery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/AstralSorcery.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/MixinConnector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/MixinConnector.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/client/ClientProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/client/ClientProxy.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/client/ClientScheduler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/client/ClientScheduler.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/client/effect/EffectType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/client/effect/EffectType.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/client/effect/vfx/FXBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/client/effect/vfx/FXBlock.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/client/effect/vfx/FXCube.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/client/effect/vfx/FXCube.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/client/lib/EffectTypesAS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/client/lib/EffectTypesAS.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/client/lib/KeyBindingsAS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/client/lib/KeyBindingsAS.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/client/lib/RenderTypesAS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/client/lib/RenderTypesAS.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/client/lib/SpritesAS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/client/lib/SpritesAS.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/client/lib/TexturesAS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/client/lib/TexturesAS.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/client/util/Blending.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/client/util/Blending.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/client/util/GatewayUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/client/util/GatewayUI.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/client/util/LightmapUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/client/util/LightmapUtil.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/client/util/MiscPlayEffect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/client/util/MiscPlayEffect.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/client/util/MouseUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/client/util/MouseUtil.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/client/util/RenderingUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/client/util/RenderingUtils.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/client/util/SphereBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/client/util/SphereBuilder.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/client/util/color/MMCQ.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/client/util/color/MMCQ.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/client/util/obj/Face.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/client/util/obj/Face.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/client/util/obj/Vertex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/client/util/obj/Vertex.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/CommonProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/CommonProxy.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/CommonScheduler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/CommonScheduler.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/GuiType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/GuiType.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/base/Mods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/base/Mods.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/base/MoonPhase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/base/MoonPhase.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/base/TreeType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/base/TreeType.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/cmd/sub/CommandExp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/cmd/sub/CommandExp.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/effect/EffectBleed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/effect/EffectBleed.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/entity/EntityFlare.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/entity/EntityFlare.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/event/EventFlags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/event/EventFlags.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/item/ItemAquamarine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/item/ItemAquamarine.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/item/ItemChisel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/item/ItemChisel.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/item/ItemGlassLens.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/item/ItemGlassLens.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/item/ItemParchment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/item/ItemParchment.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/item/ItemResonator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/item/ItemResonator.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/item/ItemStardust.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/item/ItemStardust.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/item/ItemTome.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/item/ItemTome.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/item/gem/GemType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/item/gem/GemType.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/item/wand/ItemWand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/item/wand/ItemWand.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/lib/AdvancementsAS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/lib/AdvancementsAS.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/lib/BlocksAS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/lib/BlocksAS.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/lib/CapabilitiesAS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/lib/CapabilitiesAS.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/lib/ColorsAS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/lib/ColorsAS.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/lib/DataAS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/lib/DataAS.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/lib/EffectsAS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/lib/EffectsAS.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/lib/EnchantmentsAS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/lib/EnchantmentsAS.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/lib/EntityTypesAS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/lib/EntityTypesAS.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/lib/FluidsAS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/lib/FluidsAS.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/lib/GameRulesAS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/lib/GameRulesAS.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/lib/ItemsAS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/lib/ItemsAS.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/lib/LootAS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/lib/LootAS.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/lib/MantleEffectsAS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/lib/MantleEffectsAS.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/lib/MaterialsAS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/lib/MaterialsAS.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/lib/PerkNamesAS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/lib/PerkNamesAS.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/lib/RecipeTypesAS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/lib/RecipeTypesAS.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/lib/RegistriesAS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/lib/RegistriesAS.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/lib/SoundsAS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/lib/SoundsAS.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/lib/StructuresAS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/lib/StructuresAS.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/lib/TagsAS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/lib/TagsAS.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/perk/AbstractPerk.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/perk/AbstractPerk.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/perk/CooldownPerk.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/perk/CooldownPerk.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/perk/PerkConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/perk/PerkConverter.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/perk/PerkTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/perk/PerkTree.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/perk/node/KeyPerk.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/perk/node/KeyPerk.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/perk/node/MajorPerk.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/perk/node/MajorPerk.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/perk/node/RootPerk.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/perk/node/RootPerk.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/storage/StorageKey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/storage/StorageKey.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/tile/TileChalice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/tile/TileChalice.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/tile/TileFountain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/tile/TileFountain.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/tile/TileInfuser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/tile/TileInfuser.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/tile/TileLens.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/tile/TileLens.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/tile/TilePrism.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/tile/TilePrism.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/tile/TileRitualLink.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/tile/TileRitualLink.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/tile/TileTelescope.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/tile/TileTelescope.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/tile/TileTreeBeacon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/tile/TileTreeBeacon.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/tile/TileVanishing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/tile/TileVanishing.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/tile/TileWell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/tile/TileWell.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/tile/base/TileOwned.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/tile/base/TileOwned.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/util/CacheEventBus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/util/CacheEventBus.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/util/CalendarUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/util/CalendarUtils.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/util/ColorUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/util/ColorUtils.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/util/Counter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/util/Counter.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/util/DamageUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/util/DamageUtil.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/util/MapStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/util/MapStream.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/util/MiscUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/util/MiscUtils.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/util/NameUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/util/NameUtil.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/util/NoOpTeleporter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/util/NoOpTeleporter.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/util/RaytraceAssist.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/util/RaytraceAssist.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/util/RecipeHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/util/RecipeHelper.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/util/SidedReference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/util/SidedReference.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/util/TriFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/util/TriFunction.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/util/VoxelUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/util/VoxelUtils.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/util/WRItemObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/util/WRItemObject.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/util/data/BiDiPair.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/util/data/BiDiPair.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/util/data/Vector3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/util/data/Vector3.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/util/item/ItemUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/util/item/ItemUtils.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/util/log/LogUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/util/log/LogUtil.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/util/loot/LootUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/util/loot/LootUtil.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/util/nbt/NBTHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/util/nbt/NBTHelper.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/common/util/tick/TokenMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/common/util/tick/TokenMap.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/mixin/MixinCooldownTracker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/mixin/MixinCooldownTracker.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/mixin/MixinEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/mixin/MixinEntity.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/mixin/MixinForgeHooks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/mixin/MixinForgeHooks.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/mixin/MixinItemPredicate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/mixin/MixinItemPredicate.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/mixin/MixinItemStack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/mixin/MixinItemStack.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/mixin/MixinLivingEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/mixin/MixinLivingEntity.java -------------------------------------------------------------------------------- /src/main/java/hellfirepvp/astralsorcery/mixin/MixinWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/java/hellfirepvp/astralsorcery/mixin/MixinWorld.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /src/main/resources/META-INF/accesstransformer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/META-INF/accesstransformer.cfg -------------------------------------------------------------------------------- /src/main/resources/META-INF/coremods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/META-INF/coremods.json -------------------------------------------------------------------------------- /src/main/resources/META-INF/mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/META-INF/mods.toml -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/astralsorcery.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/astralsorcery.mixins.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/blockstates/altar_radiance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/blockstates/altar_radiance.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/blockstates/chalice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/blockstates/chalice.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/blockstates/flare_light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/blockstates/flare_light.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/blockstates/fountain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/blockstates/fountain.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/blockstates/glow_flower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/blockstates/glow_flower.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/blockstates/illuminator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/blockstates/illuminator.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/blockstates/infused_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/blockstates/infused_wood.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/blockstates/infuser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/blockstates/infuser.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/blockstates/lens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/blockstates/lens.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/blockstates/marble_arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/blockstates/marble_arch.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/blockstates/marble_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/blockstates/marble_bricks.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/blockstates/marble_pillar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/blockstates/marble_pillar.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/blockstates/marble_raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/blockstates/marble_raw.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/blockstates/marble_runed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/blockstates/marble_runed.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/blockstates/marble_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/blockstates/marble_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/blockstates/marble_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/blockstates/marble_stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/blockstates/observatory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/blockstates/observatory.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/blockstates/prism.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/blockstates/prism.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/blockstates/ritual_link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/blockstates/ritual_link.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/blockstates/spectral_relay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/blockstates/spectral_relay.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/blockstates/starmetal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/blockstates/starmetal.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/blockstates/starmetal_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/blockstates/starmetal_ore.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/blockstates/structural.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/blockstates/structural.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/blockstates/telescope.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/blockstates/telescope.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/blockstates/tree_beacon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/blockstates/tree_beacon.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/blockstates/vanishing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/blockstates/vanishing.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/blockstates/well.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/blockstates/well.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/lang/en_us.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/lang/ru_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/lang/ru_ru.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/lang/zh_cn.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/block/base/nothing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/block/base/nothing.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/block/chalice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/block/chalice.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/block/fountain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/block/fountain.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/block/glow_flower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/block/glow_flower.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/block/infused_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/block/infused_wood.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/block/infuser_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/block/infuser_all.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/block/infuser_solid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/block/infuser_solid.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/block/lens_base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/block/lens_base.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/block/lens_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/block/lens_full.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/block/marble_arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/block/marble_arch.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/block/marble_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/block/marble_bricks.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/block/marble_pillar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/block/marble_pillar.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/block/marble_raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/block/marble_raw.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/block/marble_runed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/block/marble_runed.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/block/marble_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/block/marble_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/block/marble_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/block/marble_stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/block/observatory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/block/observatory.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/block/pillar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/block/pillar.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/block/pillar_bottom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/block/pillar_bottom.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/block/pillar_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/block/pillar_top.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/block/prism_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/block/prism_all.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/block/prism_solid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/block/prism_solid.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/block/starmetal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/block/starmetal.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/block/telescope.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/block/telescope.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/block/tree_beacon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/block/tree_beacon.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/block/well.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/block/well.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/altar_attunement.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/altar_attunement" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/altar_constellation.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/altar_constellation" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/altar_discovery.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/altar_discovery" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/altar_radiance.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/altar_radiance" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/aquamarine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/aquamarine.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/architect_wand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/architect_wand.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/black_marble_arch.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/black_marble_arch" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/black_marble_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/black_marble_bricks" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/black_marble_chiseled.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/black_marble_chiseled" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/black_marble_engraved.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/black_marble_engraved" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/black_marble_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/black_marble_pillar" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/black_marble_raw.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/black_marble_raw" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/black_marble_runed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/black_marble_runed" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/black_marble_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/black_marble_slab" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/black_marble_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/black_marble_stairs" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/blink_wand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/blink_wand.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/celestial_gateway.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/celestial_gateway_all" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/chalice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/chalice" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/chisel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/chisel.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/crystal_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/crystal_axe.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/crystal_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/crystal_shovel.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/crystal_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/crystal_sword.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/exchange_wand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/exchange_wand.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/fountain.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/fountain" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/fountain_prime_liquid.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/fountain_prime_liquid_all" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/fountain_prime_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/fountain_prime_ore_all" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/fountain_prime_vortex.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/fountain_prime_vortex_all" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/glass_lens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/glass_lens.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/glow_flower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/glow_flower.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/grapple_wand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/grapple_wand.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/hand_telescope.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/hand_telescope.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/illuminator.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/illuminator_all" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/infused_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/infused_glass.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/infused_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/infused_wood" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/infused_wood_arch.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/infused_wood_arch" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/infused_wood_column.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/infused_wood_column" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/infused_wood_engraved.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/infused_wood_engraved" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/infused_wood_enriched.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/infused_wood_enriched" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/infused_wood_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/infused_wood_planks" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/infused_wood_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/infused_wood_slab" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/infused_wood_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/infused_wood_stairs" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/infuser.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/infuser_all" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/lens.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/lens_full" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/linking_tool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/linking_tool.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/mantle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/mantle.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/marble_arch.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/marble_arch" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/marble_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/marble_bricks" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/marble_chiseled.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/marble_chiseled" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/marble_engraved.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/marble_engraved" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/marble_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/marble_pillar" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/marble_raw.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/marble_raw" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/marble_runed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/marble_runed" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/marble_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/marble_slab" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/marble_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/marble_stairs" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/observatory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/observatory.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/parchment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/parchment.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/perk_gem_day.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/perk_gem_day.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/perk_gem_night.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/perk_gem_night.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/perk_gem_sky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/perk_gem_sky.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/perk_seal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/perk_seal.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/prism.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/prism_all" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/refraction_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/refraction_table" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/resonating_gem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/resonating_gem.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/resonator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/resonator.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/ritual_link.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/ritual_link_all" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/rock_crystal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/rock_crystal.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/rock_crystal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/multilayer/rock_crystal_ore" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/shifting_star.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/shifting_star.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/spectral_relay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/spectral_relay.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/stardust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/stardust.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/starmetal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/starmetal" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/starmetal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/multilayer/starmetal_ore" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/telescope.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/telescope.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/tome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/tome.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/tree_beacon.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/tree_beacon" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/wand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/item/wand.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/item/well.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "astralsorcery:block/well" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/obj/celestial_wings.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/obj/celestial_wings.obj -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/obj/crystal.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/obj/crystal.obj -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/models/obj/wraith_wings.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/models/obj/wraith_wings.obj -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/sounds.json -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/sounds/altar/craft_finish_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/sounds/altar/craft_finish_1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/sounds/altar/craft_finish_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/sounds/altar/craft_finish_2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/sounds/altar/craft_loop_t1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/sounds/altar/craft_loop_t1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/sounds/altar/craft_loop_t2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/sounds/altar/craft_loop_t2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/sounds/altar/craft_loop_t3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/sounds/altar/craft_loop_t3.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/sounds/altar/craft_loop_t4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/sounds/altar/craft_loop_t4.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/sounds/altar/craft_start_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/sounds/altar/craft_start_1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/sounds/altar/craft_start_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/sounds/altar/craft_start_2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/sounds/craft_attunement.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/sounds/craft_attunement.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/sounds/craft_finish.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/sounds/craft_finish.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/sounds/gui_journal_close.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/sounds/gui_journal_close.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/sounds/gui_journal_page_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/sounds/gui_journal_page_1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/sounds/gui_journal_page_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/sounds/gui_journal_page_2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/sounds/infuser/craft_loop_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/sounds/infuser/craft_loop_1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/sounds/infuser/craft_loop_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/sounds/infuser/craft_loop_2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/sounds/perk/perk_seal_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/sounds/perk/perk_seal_1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/sounds/perk/perk_seal_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/sounds/perk/perk_seal_2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/sounds/perk/perk_unlock_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/sounds/perk/perk_unlock_1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/sounds/perk/perk_unlock_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/sounds/perk/perk_unlock_2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/sounds/perk/perk_unseal_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/sounds/perk/perk_unseal_1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/sounds/perk/perk_unseal_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/sounds/perk/perk_unseal_2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/altar_1_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/altar_1_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/altar_1_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/altar_1_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/altar_2_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/altar_2_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/altar_2_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/altar_2_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/altar_3_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/altar_3_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/altar_3_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/altar_3_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/altar_4_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/altar_4_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/altar_4_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/altar_4_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/chalice_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/chalice_base.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/glow_flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/glow_flower.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/infuser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/infuser.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/lens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/lens.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/lens_base1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/lens_base1.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/lens_base2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/lens_base2.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/lens_floor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/lens_floor.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/lens_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/lens_frame.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/lightwell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/lightwell.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/marble_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/marble_arch.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/marble_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/marble_raw.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/marble_runed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/marble_runed.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/prism_base1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/prism_base1.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/prism_base2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/prism_base2.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/prism_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/prism_frame.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/prism_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/prism_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/prism_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/prism_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/ritual_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/ritual_link.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/starmetal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/starmetal.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/telescope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/telescope.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/tree_beacon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/tree_beacon.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/wood_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/wood_arch.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/wood_column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/wood_column.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/wood_infused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/wood_infused.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/wood_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/wood_planks.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/block/wood_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/block/wood_raw.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/effect/craft_burst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/effect/craft_burst.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/effect/craft_flare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/effect/craft_flare.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/effect/halo_ritual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/effect/halo_ritual.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/effect/lightbeam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/effect/lightbeam.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/effect/relay_flare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/effect/relay_flare.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/environment/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/environment/line.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/environment/star_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/environment/star_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/environment/star_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/environment/star_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/fluid/bucket_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/fluid/bucket_mask.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/gui/book/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/gui/book/arrows.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/gui/book/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/gui/book/blank.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/gui/book/bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/gui/book/bookmark.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/gui/jei/infuser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/gui/jei/infuser.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/gui/menu_slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/gui/menu_slot.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/gui/perk/active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/gui/perk/active.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/gui/perk/seal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/gui/perk/seal.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/gui/perk/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/gui/perk/unlock.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/gui/text_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/gui/text_field.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/item/amulet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/item/amulet.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/item/amulet_gem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/item/amulet_gem.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/item/aquamarine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/item/aquamarine.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/item/chisel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/item/chisel.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/item/glass_lens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/item/glass_lens.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/item/mantle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/item/mantle.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/item/parchment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/item/parchment.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/item/perk_seal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/item/perk_seal.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/item/stardust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/item/stardust.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/item/tome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/item/tome.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/item/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/item/wand.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/item/wand_blink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/item/wand_blink.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/misc/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/misc/black.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/misc/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/misc/blank.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/misc/moon_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/misc/moon_full.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/misc/moon_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/misc/moon_new.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/misc/smoke_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/misc/smoke_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/misc/smoke_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/misc/smoke_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/misc/smoke_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/misc/smoke_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/astralsorcery/textures/misc/smoke_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/assets/astralsorcery/textures/misc/smoke_4.png -------------------------------------------------------------------------------- /src/main/resources/coremods/reach_set_client_renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/coremods/reach_set_client_renderer.js -------------------------------------------------------------------------------- /src/main/resources/coremods/reach_set_server_entity_interact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/coremods/reach_set_server_entity_interact.js -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/advancements/attune_self.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/advancements/attune_self.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/advancements/attune_trait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/advancements/attune_trait.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/advancements/root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/advancements/root.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/loot_modifiers/perk_void_trash.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [] 3 | } -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/loot_tables/blocks/flare_light.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block" 3 | } -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/loot_tables/blocks/lens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/loot_tables/blocks/lens.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/loot_tables/blocks/prism.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/loot_tables/blocks/prism.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/loot_tables/blocks/structural.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block" 3 | } -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/loot_tables/blocks/translucent_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block" 3 | } -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/loot_tables/blocks/tree_beacon_component.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block" 3 | } -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/loot_tables/blocks/vanishing.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block" 3 | } -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/loot_tables/blocks/well.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/loot_tables/blocks/well.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/loot_tables/shrine_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/loot_tables/shrine_chest.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/_full_tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/_full_tree.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/ae_ev_effect_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/ae_ev_effect_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/ae_ev_effect_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/ae_ev_effect_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/ae_ev_exp_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/ae_ev_exp_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/ae_ev_exp_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/ae_ev_exp_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/ae_vi_effect_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/ae_vi_effect_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/ae_vi_effect_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/ae_vi_effect_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/ae_vi_exp_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/ae_vi_exp_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/ae_vi_exp_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/ae_vi_exp_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_c_armor_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_c_armor_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_c_armor_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_c_armor_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_c_reach_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_c_reach_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_c_reach_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_c_reach_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_cleanse_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_cleanse_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_cleanse_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_cleanse_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_cleanse_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_cleanse_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_co_armor_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_co_armor_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_co_armor_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_co_armor_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_co_ats_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_co_ats_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_co_ats_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_co_ats_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_connector_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_connector_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_connector_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_connector_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_connector_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_connector_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_connector_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_connector_4.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_inner_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_inner_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_inner_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_inner_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_inner_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_inner_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_inner_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_inner_4.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_m_gem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_m_gem.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_outer_cdr_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_outer_cdr_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_outer_cdr_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_outer_cdr_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_outer_cdr_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_outer_cdr_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_outer_ttt_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_outer_ttt_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_outer_ttt_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_outer_ttt_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_outer_ttt_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_outer_ttt_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_outer_ttt_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_outer_ttt_4.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_outer_vit_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_outer_vit_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_outer_vit_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_outer_vit_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/aevitas_outer_vit_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/aevitas_outer_vit_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/alcara_effect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/alcara_effect.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/alcara_exp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/alcara_exp.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/ar_ds_effect_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/ar_ds_effect_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/ar_ds_effect_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/ar_ds_effect_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/ar_ds_exp_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/ar_ds_exp_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/ar_ds_exp_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/ar_ds_exp_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/ar_vi_effect_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/ar_vi_effect_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/ar_vi_effect_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/ar_vi_effect_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/ar_vi_exp_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/ar_vi_exp_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/ar_vi_exp_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/ar_vi_exp_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_armor_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_armor_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_armor_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_armor_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_c_recovery_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_c_recovery_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_c_recovery_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_c_recovery_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_co_life_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_co_life_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_co_life_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_co_life_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_co_mining_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_co_mining_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_co_mining_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_co_mining_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_connector_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_connector_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_connector_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_connector_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_connector_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_connector_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_connector_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_connector_4.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_dmgarmor_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_dmgarmor_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_dmgarmor_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_dmgarmor_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_dmgarmor_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_dmgarmor_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_inner_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_inner_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_inner_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_inner_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_inner_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_inner_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_inner_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_inner_4.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_m_gem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_m_gem.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_m_life_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_m_life_armor.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_outer_exp_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_outer_exp_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_outer_exp_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_outer_exp_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_outer_exp_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_outer_exp_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_outer_proj_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_outer_proj_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_outer_proj_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_outer_proj_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_outer_proj_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_outer_proj_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_outer_worn_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_outer_worn_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_outer_worn_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_outer_worn_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_outer_worn_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_outer_worn_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_outer_worn_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_outer_worn_4.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_resist_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_resist_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/armara_resist_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/armara_resist_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_aoe_reach_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_aoe_reach_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_aoe_reach_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_aoe_reach_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_aoe_reach_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_aoe_reach_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_cdr_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_cdr_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_cdr_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_cdr_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_cdr_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_cdr_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_charge_cave_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_charge_cave_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_charge_cave_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_charge_cave_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_charge_cave_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_charge_cave_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_ench_effect_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_ench_effect_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_ench_effect_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_ench_effect_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_ench_effect_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_ench_effect_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_infinity_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_infinity_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_infinity_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_infinity_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_lifeleech_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_lifeleech_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_lifeleech_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_lifeleech_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_lifeleech_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_lifeleech_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_luck_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_luck_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_luck_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_luck_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_m_gem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_m_gem.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_perk_exp_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_perk_exp_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_perk_exp_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_perk_exp_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_perk_exp_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_perk_exp_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_perk_exp_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_perk_exp_4.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_potion_dur_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_potion_dur_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_potion_dur_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_potion_dur_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_potion_dur_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_potion_dur_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_potion_dur_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_potion_dur_4.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_smite_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_smite_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_smite_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_smite_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_unbreaking_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_unbreaking_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_unbreaking_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_unbreaking_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/core_unbreaking_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/core_unbreaking_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/discidia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/discidia.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/discidia_c_damage_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/discidia_c_damage_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/discidia_c_damage_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/discidia_c_damage_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/discidia_co_melee_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/discidia_co_melee_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/discidia_co_melee_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/discidia_co_melee_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/discidia_distance_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/discidia_distance_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/discidia_distance_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/discidia_distance_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/discidia_distance_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/discidia_distance_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/discidia_inner_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/discidia_inner_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/discidia_inner_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/discidia_inner_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/discidia_inner_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/discidia_inner_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/discidia_inner_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/discidia_inner_4.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/discidia_m_gem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/discidia_m_gem.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/discidia_melee_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/discidia_melee_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/discidia_melee_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/discidia_melee_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/discidia_multi_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/discidia_multi_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/discidia_multi_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/discidia_multi_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/discidia_multi_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/discidia_multi_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/discidia_proj_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/discidia_proj_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/discidia_proj_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/discidia_proj_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/discidia_rampage_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/discidia_rampage_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/discidia_rampage_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/discidia_rampage_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/discidia_rampage_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/discidia_rampage_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/ev_ds_effect_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/ev_ds_effect_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/ev_ds_effect_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/ev_ds_effect_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/ev_ds_exp_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/ev_ds_exp_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/ev_ds_exp_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/ev_ds_exp_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio_c_armor_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio_c_armor_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio_c_armor_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio_c_armor_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio_c_mining_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio_c_mining_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio_c_mining_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio_c_mining_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio_co_cdr_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio_co_cdr_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio_co_cdr_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio_co_cdr_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio_co_reach_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio_co_reach_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio_co_reach_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio_co_reach_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio_connector_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio_connector_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio_connector_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio_connector_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio_connector_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio_connector_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio_connector_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio_connector_4.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio_damage_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio_damage_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio_damage_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio_damage_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio_digtypes_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio_digtypes_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio_digtypes_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio_digtypes_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio_digtypes_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio_digtypes_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio_inner_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio_inner_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio_inner_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio_inner_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio_inner_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio_inner_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio_inner_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio_inner_4.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio_inner_crit1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio_inner_crit1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio_inner_crit2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio_inner_crit2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio_inner_crit3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio_inner_crit3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio_m_dmg_ats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio_m_dmg_ats.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio_m_gem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio_m_gem.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio_mining_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio_mining_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/evorsio_mining_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/evorsio_mining_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/focus_alcara.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/focus_alcara.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/focus_gelu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/focus_gelu.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/focus_ulteria.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/focus_ulteria.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/focus_vorux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/focus_vorux.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/gelu_effect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/gelu_effect.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/gelu_exp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/gelu_exp.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_0.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_10.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_11.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_12.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_13.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_14.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_15.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_16.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_17.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_18.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_19.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_20.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_21.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_22.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_23.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_24.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_25.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_26.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_27.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_28.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_29.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_30.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_31.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_32.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_33.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_33.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_34.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_35.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_36.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_37.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_38.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_39.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_4.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_40.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_41.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_41.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_42.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_43.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_44.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_45.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_45.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_46.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_46.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_47.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_47.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_48.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_48.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_49.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_49.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_5.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_50.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_51.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_51.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_52.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_52.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_53.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_54.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_54.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_6.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_7.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_8.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/travel_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/travel_9.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/ulteria_effect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/ulteria_effect.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/ulteria_exp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/ulteria_exp.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_ats_bridge_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_ats_bridge_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_ats_bridge_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_ats_bridge_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_ats_bridge_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_ats_bridge_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_ats_inner_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_ats_inner_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_ats_inner_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_ats_inner_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_ats_inner_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_ats_inner_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_c_armor_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_c_armor_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_c_armor_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_c_armor_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_c_mining_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_c_mining_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_c_mining_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_c_mining_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_co_dodge_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_co_dodge_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_co_dodge_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_co_dodge_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_co_ms_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_co_ms_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_co_ms_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_co_ms_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_connector_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_connector_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_connector_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_connector_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_connector_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_connector_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_connector_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_connector_4.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_dodge_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_dodge_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_dodge_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_dodge_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_inner_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_inner_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_inner_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_inner_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_inner_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_inner_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_inner_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_inner_4.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_m_gem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_m_gem.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_outer_cdr_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_outer_cdr_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_outer_cdr_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_outer_cdr_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_outer_cdr_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_outer_cdr_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_outer_step_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_outer_step_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_outer_step_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_outer_step_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_outer_step_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_outer_step_3.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_outer_step_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_outer_step_4.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_reach_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_reach_1.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vicio_reach_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vicio_reach_2.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vorux_effect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vorux_effect.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/perks/vorux_exp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/perks/vorux_exp.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/altar/blink_wand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/altar/blink_wand.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/altar/chalice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/altar/chalice.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/altar/chisel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/altar/chisel.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/altar/crystal_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/altar/crystal_axe.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/altar/fountain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/altar/fountain.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/altar/glass_lens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/altar/glass_lens.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/altar/illuminator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/altar/illuminator.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/altar/infuser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/altar/infuser.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/altar/lens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/altar/lens.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/altar/mantle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/altar/mantle.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/altar/marble_arch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/altar/marble_arch.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/altar/marble_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/altar/marble_slab.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/altar/observatory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/altar/observatory.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/altar/parchment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/altar/parchment.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/altar/perk_seal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/altar/perk_seal.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/altar/prism.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/altar/prism.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/altar/resonator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/altar/resonator.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/altar/ritual_link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/altar/ritual_link.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/altar/telescope.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/altar/telescope.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/altar/tome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/altar/tome.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/altar/tree_beacon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/altar/tree_beacon.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/altar/wand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/altar/wand.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/altar/well.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/altar/well.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/change_gateway_color.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "astralsorcery:change_gateway_color" 3 | } -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/change_wand_color.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "astralsorcery:change_wand_color" 3 | } -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/infuser/blaze_rod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/infuser/blaze_rod.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/infuser/bone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/infuser/bone.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/infuser/carrot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/infuser/carrot.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/infuser/dirt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/infuser/dirt.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/infuser/glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/infuser/glass.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/infuser/gold_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/infuser/gold_ore.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/infuser/gunpowder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/infuser/gunpowder.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/infuser/iron_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/infuser/iron_ore.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/infuser/lapis_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/infuser/lapis_ore.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/infuser/redstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/infuser/redstone.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/infuser/sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/infuser/sand.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/shaped/parchment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/shaped/parchment.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/shaped/starmetal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/shaped/starmetal.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/shaped/tome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/shaped/tome.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/recipes/shaped/wand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/recipes/shaped/wand.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/scripts/astralsorcery/altar.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/scripts/astralsorcery/altar.zs -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/scripts/astralsorcery/well.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/scripts/astralsorcery/well.zs -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/structures/ancient_shrine.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/structures/ancient_shrine.nbt -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/structures/desert_shrine.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/structures/desert_shrine.nbt -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/structures/small_shrine.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/structures/small_shrine.nbt -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/tags/items/colored_lens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/tags/items/colored_lens.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/tags/items/stardust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/tags/items/stardust.json -------------------------------------------------------------------------------- /src/main/resources/data/astralsorcery/tags/items/starmetal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/astralsorcery/tags/items/starmetal.json -------------------------------------------------------------------------------- /src/main/resources/data/create/tags/fluids/no_infinite_draining.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/create/tags/fluids/no_infinite_draining.json -------------------------------------------------------------------------------- /src/main/resources/data/curios/tags/items/necklace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/curios/tags/items/necklace.json -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/blocks/marble.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/forge/tags/blocks/marble.json -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/blocks/ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/forge/tags/blocks/ores.json -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/gems/aquamarine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/forge/tags/items/gems/aquamarine.json -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/forge/tags/items/ores.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/items/lectern_books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/data/minecraft/tags/items/lectern_books.json -------------------------------------------------------------------------------- /src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellFirePvP/AstralSorcery/HEAD/src/main/resources/pack.mcmeta --------------------------------------------------------------------------------