Full Code of Ladysnake/Illuminations for AI

main f6ec2bf4a18b cached
188 files
423.1 KB
115.9k tokens
441 symbols
1 requests
Download .txt
Showing preview only (481K chars total). Download the full file or copy to clipboard to get everything.
Repository: Ladysnake/Illuminations
Branch: main
Commit: f6ec2bf4a18b
Files: 188
Total size: 423.1 KB

Directory structure:
gitextract_kldsscd_/

├── .gitignore
├── CHANGELOG.md
├── LICENSE-ART
├── LICENSE-CODE
├── README.md
├── build.gradle
├── gradle/
│   └── wrapper/
│       ├── gradle-wrapper.jar
│       └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── lib/
│   ├── javax.annotation.jar
│   ├── javax.ejb.jar
│   ├── javax.jms.jar
│   ├── javax.persistence.jar
│   ├── javax.resource.jar
│   ├── javax.servlet.jar
│   ├── javax.servlet.jsp.jar
│   ├── javax.servlet.jsp.jstl.jar
│   └── javax.transaction.jar
├── logs/
│   └── latest.log
├── release.gradle
├── settings.gradle
└── src/
    └── main/
        ├── java/
        │   └── ladysnake/
        │       └── illuminations/
        │           ├── IlluminationsMixinConfigPlugin.java
        │           ├── client/
        │           │   ├── Illuminations.java
        │           │   ├── IlluminationsModMenuIntegration.java
        │           │   ├── Rainbowlluminations.java
        │           │   ├── config/
        │           │   │   ├── Config.java
        │           │   │   └── DefaultConfig.java
        │           │   ├── data/
        │           │   │   ├── AuraData.java
        │           │   │   ├── AuraSettings.java
        │           │   │   ├── BiomeSettings.java
        │           │   │   ├── IlluminationData.java
        │           │   │   ├── OverheadData.java
        │           │   │   └── PlayerCosmeticData.java
        │           │   ├── enums/
        │           │   │   ├── BiomeCategory.java
        │           │   │   ├── EyesInTheDarkSpawnRate.java
        │           │   │   ├── FireflySpawnRate.java
        │           │   │   ├── GlowwormSpawnRate.java
        │           │   │   ├── HalloweenFeatures.java
        │           │   │   ├── PlanktonSpawnRate.java
        │           │   │   └── WillOWispsSpawnRate.java
        │           │   ├── gui/
        │           │   │   ├── AutoUpdateGreetingScreen.java
        │           │   │   ├── DonateToast.java
        │           │   │   └── UpdateToast.java
        │           │   ├── particle/
        │           │   │   ├── ChorusPetalParticle.java
        │           │   │   ├── EmberParticle.java
        │           │   │   ├── EyesParticle.java
        │           │   │   ├── FireflyParticle.java
        │           │   │   ├── GlowwormParticle.java
        │           │   │   ├── PlanktonParticle.java
        │           │   │   ├── PoltergeistParticle.java
        │           │   │   ├── PrismarineCrystalParticle.java
        │           │   │   ├── PumpkinSpiritParticle.java
        │           │   │   ├── WillOWispParticle.java
        │           │   │   ├── WispTrailParticle.java
        │           │   │   ├── WispTrailParticleEffect.java
        │           │   │   ├── aura/
        │           │   │   │   ├── AutumnLeavesParticle.java
        │           │   │   │   ├── ChorusAuraParticle.java
        │           │   │   │   ├── ConfettiParticle.java
        │           │   │   │   ├── GhostlyAuraParticle.java
        │           │   │   │   ├── GoldenrodAuraParticle.java
        │           │   │   │   ├── PrismarineAuraParticle.java
        │           │   │   │   ├── PrismaticConfettiParticle.java
        │           │   │   │   ├── SculkTendrilParticle.java
        │           │   │   │   ├── ShadowbringerParticle.java
        │           │   │   │   └── TwilightFireflyParticle.java
        │           │   │   └── pet/
        │           │   │       ├── JackoParticle.java
        │           │   │       ├── PetParticle.java
        │           │   │       ├── PlayerLanternParticle.java
        │           │   │       ├── PlayerWispParticle.java
        │           │   │       └── PrideHeartParticle.java
        │           │   └── render/
        │           │       ├── GlowyRenderLayer.java
        │           │       └── entity/
        │           │           ├── feature/
        │           │           │   └── OverheadFeatureRenderer.java
        │           │           └── model/
        │           │               ├── hat/
        │           │               │   ├── CrownModel.java
        │           │               │   ├── HaloModel.java
        │           │               │   ├── HornsModel.java
        │           │               │   ├── OverheadModel.java
        │           │               │   ├── TiaraModel.java
        │           │               │   ├── VoidheartTiaraModel.java
        │           │               │   └── WreathModel.java
        │           │               └── pet/
        │           │                   ├── LanternModel.java
        │           │                   ├── PrideHeartModel.java
        │           │                   └── WillOWispModel.java
        │           ├── mixin/
        │           │   ├── BlockMixin.java
        │           │   ├── CarvedPumpkinBlockMixin.java
        │           │   ├── ChorusFlowerBlockMixin.java
        │           │   ├── ClientWorldMixin.java
        │           │   ├── LanternBlockMixin.java
        │           │   ├── LivingEntityMixin.java
        │           │   ├── ParticleManagerMixin.java
        │           │   ├── PlayerEntityMixin.java
        │           │   ├── RenderLayerAccessor.java
        │           │   ├── SkullBlockMixin.java
        │           │   ├── TitleScreenMixin.java
        │           │   └── jeb/
        │           │       ├── FeatureRendererMixin.java
        │           │       └── LivingEntityRendererMixin.java
        │           └── updater/
        │               └── IlluminationsUpdater.java
        └── resources/
            ├── assets/
            │   ├── illuminations/
            │   │   ├── lang/
            │   │   │   ├── de_de.json
            │   │   │   ├── en_us.json
            │   │   │   ├── id_id.json
            │   │   │   ├── ru_ru.json
            │   │   │   └── zh_cn.json
            │   │   ├── materialmaps/
            │   │   │   ├── entity/
            │   │   │   │   └── will_o_wisp.json
            │   │   │   └── particle/
            │   │   │       ├── ace_pride_pet.json
            │   │   │       ├── autumn_leaves.json
            │   │   │       ├── bi_pride_pet.json
            │   │   │       ├── chorus_aura.json
            │   │   │       ├── chorus_petal.json
            │   │   │       ├── confetti.json
            │   │   │       ├── dissolution_wisp_pet.json
            │   │   │       ├── eyes.json
            │   │   │       ├── firefly.json
            │   │   │       ├── ghostly_aura.json
            │   │   │       ├── glowworm.json
            │   │   │       ├── goldenrod_aura.json
            │   │   │       ├── intersex_pride_pet.json
            │   │   │       ├── jacko_pet.json
            │   │   │       ├── lesbian_pride_pet.json
            │   │   │       ├── nb_pride_pet.json
            │   │   │       ├── plankton.json
            │   │   │       ├── pride_pet.json
            │   │   │       ├── prismarine_aura.json
            │   │   │       ├── prismarine_crystal.json
            │   │   │       ├── prismatic_confetti.json
            │   │   │       ├── sculk_tendril.json
            │   │   │       ├── shadowbringer_aura.json
            │   │   │       ├── trans_pride_pet.json
            │   │   │       ├── twilight_aura.json
            │   │   │       └── wisp_trail.json
            │   │   ├── particles/
            │   │   │   ├── ace_pride_pet.json
            │   │   │   ├── agender_pride_pet.json
            │   │   │   ├── aro_pride_pet.json
            │   │   │   ├── autumn_leaves.json
            │   │   │   ├── bi_pride_pet.json
            │   │   │   ├── chorus_aura.json
            │   │   │   ├── chorus_petal.json
            │   │   │   ├── confetti.json
            │   │   │   ├── crying_lantern_pet.json
            │   │   │   ├── dissolution_wisp_pet.json
            │   │   │   ├── ember.json
            │   │   │   ├── ember_trail.json
            │   │   │   ├── eyes.json
            │   │   │   ├── firefly.json
            │   │   │   ├── founding_skull_pet.json
            │   │   │   ├── gay_pride_pet.json
            │   │   │   ├── ghostly.json
            │   │   │   ├── ghostly_aura.json
            │   │   │   ├── glowworm.json
            │   │   │   ├── golden_will_pet.json
            │   │   │   ├── goldenrod_aura.json
            │   │   │   ├── intersex_pride_pet.json
            │   │   │   ├── jacko_pet.json
            │   │   │   ├── lantern_pet.json
            │   │   │   ├── lesbian_pride_pet.json
            │   │   │   ├── nb_pride_pet.json
            │   │   │   ├── pan_pride_pet.json
            │   │   │   ├── plankton.json
            │   │   │   ├── poltergeist.json
            │   │   │   ├── poltergeist_pet.json
            │   │   │   ├── pride_pet.json
            │   │   │   ├── prismarine_aura.json
            │   │   │   ├── prismarine_crystal.json
            │   │   │   ├── prismatic_confetti.json
            │   │   │   ├── pumpkin_spirit.json
            │   │   │   ├── pumpkin_spirit_pet.json
            │   │   │   ├── sculk_tendril.json
            │   │   │   ├── shadowbringer_aura.json
            │   │   │   ├── soothing_lantern_pet.json
            │   │   │   ├── soul_lantern_pet.json
            │   │   │   ├── trans_pride_pet.json
            │   │   │   ├── twilight_aura.json
            │   │   │   ├── will_o_wisp.json
            │   │   │   ├── will_o_wisp_pet.json
            │   │   │   └── wisp_trail.json
            │   │   ├── shaders/
            │   │   │   └── core/
            │   │   │       ├── jeb.fsh
            │   │   │       ├── jeb.json
            │   │   │       └── jeb.vsh
            │   │   └── textures/
            │   │       └── particle/
            │   │           ├── dissolution_wisp.png.mcmeta
            │   │           ├── tendril_active.png.mcmeta
            │   │           └── tendril_inactive.png.mcmeta
            │   └── minecraft/
            │       ├── materialmaps/
            │       │   └── entity/
            │       │       └── player.json
            │       └── shaders/
            │           └── core/
            │               └── particle.fsh
            ├── fabric.mod.json
            ├── illuminations-uninstaller.jar
            ├── illuminations.accesswidener
            ├── illuminations.mixins.json
            └── pack.mcmeta

================================================
FILE CONTENTS
================================================

================================================
FILE: .gitignore
================================================
# gradle

.gradle/
build/
out/

# idea

bin/
.idea/
.settings/
.project
*.iml
*.ipr
*.iws
*.launch

# fabric

run/

================================================
FILE: CHANGELOG.md
================================================
# Illuminations - Changelog:

### Illuminations 1.10.2 - 1.18
- Update to Minecraft 1.18

### Illuminations 1.10.1 - 1.17.1
- Added two integrated resource packs that control the firefly, glowworm and plankton texture. Two options are now available: "lowerres", a lower resolution of the firefly texture, and "pixelaccurate", a firefly texture made to look like the Minecraft Live 2021 firefly announced for the Wild Update
- Added a debug mode config option to enable debug mode logs to troubleshoot issues with cosmetics loading

### Illuminations 1.10 - 1.17.1
- Added a new Illuminations type: Prismarine Crystals. Spawning in the shade of sea lanterns, these crystals will float underwater and oscillate between white, cyan and green.
- Added a new aura for tier 2 donators: Prismarine aura
- Added a new crown for tier 2 donators: Prismarine crown
- Fixed the texture issue with the auto-update toast
- Added a new donation toast to inform users of donation perks

### Illuminations 1.9: Hearts and Lanterns - 1.17.1
- Reworked all pride hearts to now be in 3D, better looking, and spinning!
- Added Gay, Aromantic, Pansexual and Agender pride hearts
- Added 4 new pets for supporters: the floating lanterns! Available in normal lantern, soul lantern as well as crying lantern and soothing lantern (from Spawn Lanterns). They also have two cute faces and spin!
- All 3D particles are no longer shaded

### Illuminations 1.8 - 1.17.1
- Added Pumpkin Spirits! These mischievous entities take the form of small flying Jack o' Lanterns and will act like Will o' Wisps, appearing from Jack o' Lanterns at night
- Added Poltergeists! These devious flying skulls will appear from placed skeleton skulls at night, and may also appear when you kill undead at night
- These two new spirits are also available as pets for Illuminations supporters
- Transformed the Eyes in the Dark option to Halloween Features. Eyes in the dark, Pumpkin spirits and poltergeists will now be controlled by this setting.
- Fixed an issue that caused very transparent particles to not appear ruining the intended design of several auras and effects

### Illuminations 1.7.2 - 1.17.1
- Illuminations will now be able to spawn much further from the player.
    - This change dilutes illumination density and dispersion them more, but also increases the ambient immersion, as you will no longer have the feeling illuminations only appear in a 16 block radius around you!
- Fixed illuminations spawning in blocks other than air
- Fixed Jacko pet lighting up during the day and lighting off during the night

### Illuminations 1.7.1 - 1.17.1
- Fixed an issue that cause the greeting screen to always show
- Fixed fireflies not spawning at night if the world time is invalid

### Illuminations 1.7: Configuminations - 1.17.1
- Added new biome settings tabs for Overworld, Nether, End and Other dimensions to modify firefly, glowworm and plankton spawn rates and firefly colors for each biome category!
- Added spawn rate settings for eyes in the dark, will o' wisps and chorus petals
- Added options for fireflies to spawn every time of day and underground
- Added a custom rainbow mode options for fireflies!

All of this update was entirely made by a community member: Boerdereinar, so big kudos and thanks to them!

### Illuminations 1.6.4 - 1.17.1
- Optimized mod assets thanks to RDKRACZ!
- Added indonesian localization thanks to suryomujahid!

### Illuminations 1.6.3 - 1.17.1
- Made a minor refactor for eventual mod compatibility features

### Illuminations 1.6.2 - 1.17.1
- Added two new auras for tier 2 donators: Confetti and Prismatic Confetti
    - These auras will sprinkle confetti around the player, that will stay on the ground for around 20 seconds!
    - Normal confetti aura will spawn randomly colored confetti, prismatic confetti aura will spawn confetti according to the player's color
- Fixed config button not showing up in Mod Menu

### Illuminations 1.6.1 - 1.17.1
- Fixed a crash that would sometimes occur with Satin API installed

### Illuminations 1.6 - 1.17.1
- Added "jeb_" mobs:
    - Any mob named jeb will be applied a glowing rainbow effect shifting its colors gradually
    - Requires Satin API (https://www.curseforge.com/minecraft/mc-mods/satin-api). If Satin API is present, the functionality will be enabled. If Satin is not present, the functionality will be disabled.
    - The functionality will not work if Canvas Renderer is present.
    - The functionality is incompatible with Iris. If Iris is present, the functionality will be disabled.
- Fixed the game crashing on startup if Iris is loaded
- Removed an annoying log spam every time the player reloads Illuminations cosmetics
- Updated to Minecraft 1.17.1

### Illuminations 1.5.2 - 1.17
- Updated to Minecraft 1.17

### Illuminations 1.5.1 - 1.16.5
- Added a config option to see your own cosmetics in first person

### Illuminations 1.5: Souls and Wisps - 1.16.5
- Added Will o' Wisps! Inhabiting Soul Sand Valleys, these wandering spirits roam the dead fields and will appear, phase through and disappear into soul sand.
- Will o' Wisps can also spawn from Soul Lanterns so you can use them for an eerie or magical ambience outside of soul sand valleys
- Added pets for Illuminations donators:
    - Added Will o' Wisp, Golden Will, Founding Skull and the classic Dissolution Wisp pets 
    - All free pride overheads and Jacko have been converted into pets
- Reduced eyes in the dark spawn chances tenfold
- Fixed eyes in the dark not glowing
- Removed Vanguard and replaced it for an internal auto-updater, as well as making that auto-updater opt-in
- Added a first time greeting screen for the user to choose if they want to enable the auto-updates or not

### Illuminations 1.4.9 - 1.16.5
- Added the Lesbian, Bi, Ace, NB and Intersex pride free overheads thanks to JothGC
Get them for free at https://illuminations.uuid.gg/pride

### Illuminations 1.4.8 - 1.16.5
- Fixed an issue that caused the prismatic color to not be retrieved from the dashboard
- Fixed the bad UV mapping of the Summerbreeze Wreath and the Voidhearrt Tiara crowns
- Fixed Drip only appearing when invisible

### Illuminations 1.4.7 - 1.16.5
- Added the Illuminations contest winning crowns and auras for tier 2 donators
    - Added the Voidheart Tiara and Shadowbringer Soul aura by azazelthedemonlord
    - Added the Deepsculk Horns, Springfae Horns and Worldweaver Halo overheads by ArathainFarqoe
    - Added the Glowsquid Cult and Time Aspect Cult crowns by Heather Shadelight
    - Added the Golden Rod aura and Summerbreaze Wreath overhead by 24Chrome
    - Added the Sculk Tendrils and Autumn Leaves auras by SekoiaTree
- Added a color customizable Drip cosmetic for over-generous donators

### Illuminations 1.4.6 - 1.16.5
- Fixed chorus petals not uniformly rotating
- Improved log output when having trouble with cosmetics

### Illuminations 1.4.5 - 1.16.5
- Illuminations cosmetics will now be reloaded upon a player joining a world, no longer needing to restart the game in order to see changes

### Illuminations 1.4.4 - 1.16.5
- Fixed an issue that caused fireflies not to spawn if time is set to something greater than 24000
- Updated to Vanguard 1.0.5

### Illuminations 1.4.3 - 1.16.4
- Updated to Vanguard 1.0.4
- Removed the no longer used auto-update config option 

### Illuminations 1.4.2 - 1.16.4
- Updated to Vanguard 1.0.1

### Illuminations 1.4.1 - 1.16.4
- Added missing Canvas compatibility with the Chorus aura
- Switched from the integrated auto-updater to Vanguard
- Added three new occult-themed crowns for tier 2 donators: Bloodfiend, Dreadlich and Mooncult, all desgined by ArathainFarqoe!

### Illuminations 1.4: The Chorus Petals Update - 1.16.4
- Introduced Chorus Petals: appearing near Chorus flowers, these beautiful petals will twirl down to the ground, to the winds of the End, transitioning from a beautiful white to a majestic purple
    - The younger the flower is, the more petals will appear
    - Breaking a Chorus flower will provoke a burst of petals
        - Again, the younger the flower, the more petals will burst
- Added the Chorus aura for Tier 2 donators
- Added the Chorus crown for Tier 2 donators

### Illuminations 1.3.1 - 1.16.4
- Fixed an issue where illuminations would not glow in the dark without Canvas
- Added a firefly white alpha config options
    - Controls the alpha value of the white center glow for fireflies, glowworms, plankton and twilight aura fireflies (0 is no white center, 100 is a full alpha white center)
- Fixed an issue where values under 100 for illumination spawn density would prevent spawn entirely
- Fixed an issue where the config file would only generate with ModMenu loaded

### Illuminations 1.3 - 1.16.4
- Tweaked firefly render
- Added proper Canvas bloom compatibility for illuminations and cosmetics
- Introduced two new unique overheads: the frost crown and the solar crown
On an unrelated but still important note: the way donator rewards work has been changed.
- Instead of having special rewards depending on the time of your donation, donators will be classed into two tiers:
    - Tier 1: Donations of at least 2€ will reward you with the color customizable **Twilight aura**
    - Tier 2: Donations of at least 5€ will reward you with **all other cosmetics as well as future cosmetics** (as well as tier 1 rewards)
- All previous donators have been rewarded with Tier 2

### Illuminations 1.2.6 - 1.16.4
- Added a "density" config option that multiplies the amount of illuminations appearing
- Added an auto-updater built into the mod : if Illuminations is outdated, it will notify you and automatically install the latest version
    - Enabled by default, can be disabled via a config option
- Fixed (ONCE MORE, CAUSE I HAVE DUM) an issue where server players using Illuminations would crash upon a player with an aura dying
    - This time it's fixed for good (I swear (I think (I hope)))
- Added some disgusting temporary hacks to fix an issue where illuminations would never appear if BetterEnd was installed

### Illuminations 1.2.5 - 1.16.4
- Fixed an issue that caused a crash when Illuminations servers aren't reachable
- Updated to Minecraft 1.16.4

### Illuminations 1.2.4 - 20w45a
- Removed bugballs, making the mod client-only again
- Updated to Minecraft snapshot 20w45a

### Illuminations 1.2.3 - 1.16.3
- Fixed an issue where server players using Illuminations would crash upon a player with an aura dying (again)
- Fixed an issue where players with an aura would crash upon dying in third person modes (again)

### Illuminations 1.2.2 - 1.16.3
- Introduced a config
- Added a config option to enable, disable or always display eyes in the dark
- Eyes in the dark no longer appear if the player has night vision

### Illuminations 1.2.1 - 1.16.3
- Fixed an issue with glowing eyes appearing in other dimensions than the overworld
- Added website and issue links to the mod description

### Illuminations 1.2 - 1.16.3 and 1.16.1
- Added autumn flies: during the month of October, fireflies will be orange
- Added eyes in the dark: during the month of October, glowing eyes may appear in very dark places to creep on you
- Added the Jacko overhead
- Added the Ghostly aura

### Illuminations 1.1 - 1.16.3 and 1.16.1
- Introduced bugballs: get them from a full composter (up to four) and throw them around to spawn fireflies! (only available if Illuminations is installed on both server and clients)
- Introduced overheads, a new type of cosmetic that can be equipped independently of auras and will float over your head
    - Added the Pride and Trans Pride overheads, obtainable for free at https://illuminations.uuid.gg/pride
- Fixed an issue where server players using Illuminations would crash upon a player with an aura dying
- Fixed an issue where players with an aura would crash upon dying in third person modes
- Updated to Minecraft 1.16.3

### Illuminations 1.0.5 - 1.16.2
- Restricted firefly spawn between daily times 13000 and 23000 (previously was between 13000 and 1000)
- Updated to Minecraft 1.16.2

### Illuminations 1.0.4 - 1.16.1
- Fixed an issue that caused illuminations to be incorrectly rendered with higher resolution resource packs

### Illuminations 1.0.3 - 1.16.1
- Added an offline mode so the mod doesn't crash when unable to contact the Illuminations server

### Illuminations 1.0.2 - 1.16.1
- Introduced prismatic auras, auras that you can change the color of on the [Illuminations dashboard](https://illuminations.uuid.gg/)
  - Made the twilight aura prismatic

### Illuminations 1.0.1 - 1.16.1
- Fixed an issue where the game would crash upon loading the mod with Sodium

### Illuminations 1.0 - 1.16.1
The great overhaul is here! Illuminations is now client only for better performance, spawn control, and the ability to connect to vanilla servers with it.
- Illuminations are now particles instead of entities, enjoy being able having ten million fireflies without your server committing seppuku
- Fireflies will now appear regularly in varying quantities depending on the various biomes instead of clouds
- Added glowworms, illuminations that will stick to cave ceilings
- Added glowing plankton, illuminations that will spawn in the dark sea depths
- Removed firefly grass and firefly lantern blocks, glowmeal and firefly items and firefly grass world features
- Introduced auras, special Illuminations effects around the player visible to other players that have the mod. These auras are currently a bonus for donators but some may be available through giveaways and other special events in the future.
    - Added the Twilight aura

### Illuminations 0.5.1 - 1.16.1
- Updated to Minecraft 1.16.1 (thanks to Bulldog83 for the contribution!)

### Illuminations 0.5 - 20w06a
- Updated to Minecraft snapshot 20w06a

### Illuminations 0.4 - 1.15.1
- Reduced firefly AI tasks (light checking, despawn checking)
- Removed firefly render distance limit
- Removed the bug net
- Fireflies are now catchable by hand
- Firefly flickering animations are now paused when the game is paused
- Increased firefly in a bottle light strength from 10 to 15 (now equivalent to a lantern)
- Recipes for firefly grass (short and tall) and firefly in a bottle now unlocks upon getting a firefly for the first time
- Recipe for glow meal now unlocks upon getting lime dye, glowstone dust or bone meal
- Updated to Minecraft 1.15.1

### Illuminations 0.3 - 1.14.3
+ Added glow meal
	+ Crafted from a lime dye, bone meal and glowstone dust
	+ When used on grass, grows firefly grass
+ Updated to Minecraft 1.14.3

### Illuminations 0.2 - 1.14.2
+ Added Firefly grass (and Firefly tall grass)
    + Generates in the world in plain, swamp, forest, jungle, savanna and river biomes
    + Acts exactly like normal grass and tall grass
    + Has a luminosity of 1
    + Can be crafted from one Grass and one Firefly
+ Completely change Firefly spawning mechanics
    + Fireflies no longer spawn randomly, but now spawn from Firefly grass during night
    + Fireflies are now very common to see in their habitat biomes
+ Optimize firefly spawns and despawns, greatly decreasing the lag caused by the mod
+ Fireflies now disappear on daytime
+ Added trail particles to Will o' Wisps
+ Reduced Firefly health to 1
+ Added french localization
+ Updated to Minecraft 1.14.2

### Illuminations 0.1.7 - 1.14.1
+ Fixed the bug where mip map levels wouldn't work
+ Completely removed the experimental items

### Illuminations 0.1.6 - 1.14.1
+ Added Firefly in a bottle
+ Added Bug Net (can be used to capture Fireflies by attacking them)
+ Added Firefly item
+ Removed experimental items (nests, throwable Will o' Wisp...) from the creative inventory
+ Updated to Minecraft 1.14.1

### Illuminations 0.1.5 - 1.14
+ Updated to Minecraft 1.14

### Illuminations 0.1.4 - 19w14b
+ Updated to Minecraft snapshot 19w14b

### Illuminations 0.1.3 - 19w11b
+ Added firefly and lightning bug nests: acts as a spawner for fireflies and lightning bugs during night
+ Updated to Minecraft snapshot 19w11b (thanks Fab!)

### Illuminations 0.1.2 - 19w02a
+ Implemented Will o' Wisps, flaming spirits spawning in swamps at night (experimental)
	+ Will o' Wisps are catchable
	+ Will o' Wisps (in a player's hand) can be thrown
+ Updated to Minecraft snapshot 19w02a

### Illuminations 0.1.1 - 18w50a
+ Fixed server side crashing on startup

### Illuminations 0.1 - 18w50a
+ Ported to Fabric mod loader (only fireflies and lightning bugs)
+ Corrected firefly spawn rates
+ Fireflies now flicker
+ Changed the name of the mod from Lumen to Illuminations.


 see full changelog [here](https://github.com/Ladysnake/Illuminations/blob/main/CHANGELOG.md "Changelog")

================================================
FILE: LICENSE-ART
================================================
All Rights Reserved
Copyright (C) 2017-2021 Ladysnake


================================================
FILE: LICENSE-CODE
================================================
                    GNU GENERAL PUBLIC LICENSE
                       Version 3, 29 June 2007

 Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

                            Preamble

  The GNU General Public License is a free, copyleft license for
software and other kinds of works.

  The licenses for most software and other practical works are designed
to take away your freedom to share and change the works.  By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users.  We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors.  You can apply it to
your programs, too.

  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.

  To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights.  Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.

  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received.  You must make sure that they, too, receive
or can get the source code.  And you must show them these terms so they
know their rights.

  Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.

  For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software.  For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.

  Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so.  This is fundamentally incompatible with the aim of
protecting users' freedom to change the software.  The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable.  Therefore, we
have designed this version of the GPL to prohibit the practice for those
products.  If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.

  Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary.  To prevent this, the GPL assures that
patents cannot be used to render the program non-free.

  The precise terms and conditions for copying, distribution and
modification follow.

                       TERMS AND CONDITIONS

  0. Definitions.

  "This License" refers to version 3 of the GNU General Public License.

  "Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.

  "The Program" refers to any copyrightable work licensed under this
License.  Each licensee is addressed as "you".  "Licensees" and
"recipients" may be individuals or organizations.

  To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy.  The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.

  A "covered work" means either the unmodified Program or a work based
on the Program.

  To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy.  Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.

  To "convey" a work means any kind of propagation that enables other
parties to make or receive copies.  Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.

  An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License.  If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.

  1. Source Code.

  The "source code" for a work means the preferred form of the work
for making modifications to it.  "Object code" means any non-source
form of a work.

  A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.

  The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form.  A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.

  The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities.  However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work.  For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.

  The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.

  The Corresponding Source for a work in source code form is that
same work.

  2. Basic Permissions.

  All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met.  This License explicitly affirms your unlimited
permission to run the unmodified Program.  The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work.  This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.

  You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force.  You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright.  Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.

  Conveying under any other circumstances is permitted solely under
the conditions stated below.  Sublicensing is not allowed; section 10
makes it unnecessary.

  3. Protecting Users' Legal Rights From Anti-Circumvention Law.

  No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.

  When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.

  4. Conveying Verbatim Copies.

  You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.

  You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.

  5. Conveying Modified Source Versions.

  You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:

    a) The work must carry prominent notices stating that you modified
    it, and giving a relevant date.

    b) The work must carry prominent notices stating that it is
    released under this License and any conditions added under section
    7.  This requirement modifies the requirement in section 4 to
    "keep intact all notices".

    c) You must license the entire work, as a whole, under this
    License to anyone who comes into possession of a copy.  This
    License will therefore apply, along with any applicable section 7
    additional terms, to the whole of the work, and all its parts,
    regardless of how they are packaged.  This License gives no
    permission to license the work in any other way, but it does not
    invalidate such permission if you have separately received it.

    d) If the work has interactive user interfaces, each must display
    Appropriate Legal Notices; however, if the Program has interactive
    interfaces that do not display Appropriate Legal Notices, your
    work need not make them do so.

  A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit.  Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.

  6. Conveying Non-Source Forms.

  You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:

    a) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by the
    Corresponding Source fixed on a durable physical medium
    customarily used for software interchange.

    b) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by a
    written offer, valid for at least three years and valid for as
    long as you offer spare parts or customer support for that product
    model, to give anyone who possesses the object code either (1) a
    copy of the Corresponding Source for all the software in the
    product that is covered by this License, on a durable physical
    medium customarily used for software interchange, for a price no
    more than your reasonable cost of physically performing this
    conveying of source, or (2) access to copy the
    Corresponding Source from a network server at no charge.

    c) Convey individual copies of the object code with a copy of the
    written offer to provide the Corresponding Source.  This
    alternative is allowed only occasionally and noncommercially, and
    only if you received the object code with such an offer, in accord
    with subsection 6b.

    d) Convey the object code by offering access from a designated
    place (gratis or for a charge), and offer equivalent access to the
    Corresponding Source in the same way through the same place at no
    further charge.  You need not require recipients to copy the
    Corresponding Source along with the object code.  If the place to
    copy the object code is a network server, the Corresponding Source
    may be on a different server (operated by you or a third party)
    that supports equivalent copying facilities, provided you maintain
    clear directions next to the object code saying where to find the
    Corresponding Source.  Regardless of what server hosts the
    Corresponding Source, you remain obligated to ensure that it is
    available for as long as needed to satisfy these requirements.

    e) Convey the object code using peer-to-peer transmission, provided
    you inform other peers where the object code and Corresponding
    Source of the work are being offered to the general public at no
    charge under subsection 6d.

  A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.

  A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling.  In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage.  For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product.  A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.

  "Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source.  The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.

  If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information.  But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).

  The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed.  Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.

  Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.

  7. Additional Terms.

  "Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law.  If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.

  When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it.  (Additional permissions may be written to require their own
removal in certain cases when you modify the work.)  You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.

  Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:

    a) Disclaiming warranty or limiting liability differently from the
    terms of sections 15 and 16 of this License; or

    b) Requiring preservation of specified reasonable legal notices or
    author attributions in that material or in the Appropriate Legal
    Notices displayed by works containing it; or

    c) Prohibiting misrepresentation of the origin of that material, or
    requiring that modified versions of such material be marked in
    reasonable ways as different from the original version; or

    d) Limiting the use for publicity purposes of names of licensors or
    authors of the material; or

    e) Declining to grant rights under trademark law for use of some
    trade names, trademarks, or service marks; or

    f) Requiring indemnification of licensors and authors of that
    material by anyone who conveys the material (or modified versions of
    it) with contractual assumptions of liability to the recipient, for
    any liability that these contractual assumptions directly impose on
    those licensors and authors.

  All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10.  If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term.  If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.

  If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.

  Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.

  8. Termination.

  You may not propagate or modify a covered work except as expressly
provided under this License.  Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).

  However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.

  Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.

  Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License.  If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.

  9. Acceptance Not Required for Having Copies.

  You are not required to accept this License in order to receive or
run a copy of the Program.  Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance.  However,
nothing other than this License grants you permission to propagate or
modify any covered work.  These actions infringe copyright if you do
not accept this License.  Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.

  10. Automatic Licensing of Downstream Recipients.

  Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License.  You are not responsible
for enforcing compliance by third parties with this License.

  An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations.  If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.

  You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License.  For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.

  11. Patents.

  A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based.  The
work thus licensed is called the contributor's "contributor version".

  A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version.  For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.

  Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.

  In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement).  To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.

  If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients.  "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.

  If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.

  A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License.  You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.

  Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.

  12. No Surrender of Others' Freedom.

  If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all.  For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.

  13. Use with the GNU Affero General Public License.

  Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work.  The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.

  14. Revised Versions of this License.

  The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time.  Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.

  Each version is given a distinguishing version number.  If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation.  If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.

  If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.

  Later license versions may give you additional or different
permissions.  However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.

  15. Disclaimer of Warranty.

  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

  16. Limitation of Liability.

  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.

  17. Interpretation of Sections 15 and 16.

  If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.

                     END OF TERMS AND CONDITIONS

            How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.

  To do so, attach the following notices to the program.  It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper mail.

  If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:

    <program>  Copyright (C) <year>  <name of author>
    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    This is free software, and you are welcome to redistribute it
    under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License.  Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".

  You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>.

  The GNU General Public License does not permit incorporating your program
into proprietary programs.  If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library.  If this is what you want to do, use the GNU Lesser General
Public License instead of this License.  But first, please read
<https://www.gnu.org/licenses/why-not-lgpl.html>.

"MINECRAFT" LINKING EXCEPTION TO THE GPL

Linking this mod statically or dynamically with other 
modules is making a combined work based on this mod. 
Thus, the terms and conditions of the GNU General Public License cover the whole combination.

In addition, as a special exception, the copyright holders of 
this mod give you permission to combine this mod 
with free software programs or libraries that are released under the GNU LGPL 
and with code included in the standard release of Minecraft under All Rights Reserved (or 
modified versions of such code, with unchanged license). 
You may copy and distribute such a system following the terms of the GNU GPL for this mod 
and the licenses of the other code concerned.

Note that people who make modified versions of this mod are not obligated to grant 
this special exception for their modified versions; it is their choice whether to do so. 
The GNU General Public License gives permission to release a modified version without this exception; 
this exception also makes it possible to release a modified version which carries forward this exception.


================================================
FILE: README.md
================================================
# Illuminations

**Illuminations** is a client sided Minecraft Fabric mod that adds multiple ambient particles in order to make your world more enjoyable at night or in dark places.

*(All screenshots with a bloom effect were taken with Canvas Renderer)*

## Illuminations types

### Fireflies

**Fireflies** are small flying insects that come out during the night and disappear when the sun rises. They will appear in small quantities in jungle, plains, savanna and taiga type biomes, medium quantities in forest and river type biomes and great quantity in swamp type biomes.

![illuminations-1.0-fireflies](./README.assets/illuminations-1.0-fireflies.png)

### Chorus Petals

Appearing near Chorus flowers, these beautiful petals will twirl down to the ground, to the winds of the End, transitioning from a beautiful white to a majestic purple. The younger the flower is, the more petals will appear, and breaking a Chorus flower will provoke a burst of petals (again, the younger the flower, the more petals will burst).

![illuminations-1.4-choruspetals](./README.assets/illuminations-1.4-choruspetals.png)

### Glowworms

**Glowworms** are small larvae living in caves by sticking to the ceiling that will fall down if their support block is removed. They will appear in small quantities in jungle, plains, savanna and taiga type biomes, medium quantities in forest and river type biomes and great quantity in swamp type biomes.

![illuminations-1.0-glowworms](./README.assets/illuminations-1.0-glowworms.png)

### Plankton

Glowing **plankton** - even though difficult to notice because of its size - can be found floating around in the dark parts of the oceanic depths. They appear in any ocean biome as long as the light is sufficiently low.

![illuminations-1.0-plankton](./README.assets/illuminations-1.0-plankton.png)

### "Autumnflies"

During the month of October, fireflies will adopt an orange tint instead of their regular green one.

![illuminations-1.2-autumnflies](./README.assets/illuminations-1.2-autumnflies.png)

### Eyes in the Dark

Also during the month of October, you may come across glowing eyes in absolutely dark spots. These eyes will disappear if you come too close or if their darkness is disturbed by a light source.

![](./README.assets/illuminations-1.2-eyes.png)

## Configurability

Illuminations possesses a few config options you can use to change how the mod behaves to better fit your needs.

### Eyes in the Dark

Enable glowing eyes appearing in low light environments. Set on ENABLE by default.
- ENABLE: Eyes will appear during October
- DISABLE: Eyes will never appear
- ALWAYS: Eyes will appear no matter the date

### Spawn Density

The spawn rate percentage multiplier. Does not affect eyes in the dark.
0% Disables illuminations, 1000% Multiplies the amount of illuminations appearing by 10.

## Cosmetics

**Auras** are special Illuminations effects around the player visible to other players that have the mod. Auras currently serve as a bonus for donators that support the mod and are purely cosmetic with no other provided advantage whatsoever. They are visible to other players with Illuminations installed (even on vanilla servers).

**Overheads** are cosmetics that float above player heads. They are visible to other players with Illuminations installed (even on vanilla servers).

Auras and overheads can be selected and changed via the [Illuminations dashboard](https://doctor4t.uuid.gg/).

### Twilight aura

The **Twilight** aura creates colored fireflies  that will orbit around the player. The color of the fireflies can be changed to any color you want via the Illuminations dashboard. If the player moves, they will leave a trail of these fireflies. This aura is available to tier 1 donators.

![illuminations-1.0-twilight-aura](./README.assets/illuminations-1.0-twilight-aura.gif)

### Ghostly aura

The **Ghostly** aura emanates little ghosts that fly upward and gradually appear and disappear. This aura is available to tier 2 donators.

![](./README.assets/illuminations-1.2-ghostly-aura.gif)

### Frost and Solar crowns

3D overheads fit for a king or queen, that will either make you insanely cool, or astoundingly hot, depending on your choice.

![illuminations-1.3-crowns](./README.assets/illuminations-1.3-crowns.png)

### Bloodfiend, Dreadlich and Mooncult crowns

*Designed by ArathainFarqoe!*

![image-20210113112423799](./README.assets/illuminations-1.4.1-crowns.png)

### Chorus aura and crown

![illuminations-1.4-choruscosmetics](./README.assets/illuminations-1.4-choruscosmetics.gif)

### Pride (and trans pride) heart

Available for free to anyone that registers for an Illuminations account. https://doctor4t.uuid.gg/pride

![illuminations-1.1](./README.assets/illuminations-1.1.png)

### Jacko

A happy jack o' lantern that lights up at night and in dark areas. Available to tier 2 donators.

![](./README.assets/illuminations-1.2-jacko.gif)

## FAQ

#### Can I include this mod in a modpack?

**Yes**: You can. Go ahead, don't bother asking. Please however provide credit and a link to either the GitHub repository or Curse Forge project page.

#### Can I use this mod on a vanilla server?

**Yes**: If you have installed this mod on your Minecraft client, you will be able to connect to vanilla Minecraft servers and the ambient illuminations will work as intended.

#### Are cosmetics visible to other players?

**Yes**: If the player has the mod installed on their client, all your cosmetics will be visible to them, just like theirs will be visible to you.

#### How to get an aura or crown?

**Auras are currently only available to donators**, [more information here](https://doctor4t.uuid.gg/register).

#### I want to change my cosmetics / the color of my prismatic auras / disable it, what do I do?

If you have donated multiple times, you may have multiple auras and may want to select a specific one. Or you may just simply want to change your prismatic color or disable your aura. **You can do all this via the [Illuminations dashboard](https://doctor4t.uuid.gg/)** with no restrictions whatsoever.


###### Copyright (C) 2021 Ladysnake

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.


================================================
FILE: build.gradle
================================================
plugins {
    id 'fabric-loom' version '0.10-SNAPSHOT'
    id 'maven-publish'
    id 'com.matthewprenger.cursegradle' version '1.4.0'
    id 'org.ajoberstar.grgit' version '3.1.1'
    id 'com.github.breadmoirai.github-release' version '2.2.12'
}

sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
// Adds a few utility methods like getProjectProperty
apply from: 'https://raw.githubusercontent.com/NerdHubMC/Gradle-Scripts/master/scripts/utilities.gradle'
apply from: 'https://raw.githubusercontent.com/NerdHubMC/Gradle-Scripts/master/scripts/fabric/publish/changelog.gradle'

archivesBaseName = project.archives_base_name
version = project.mod_version
group = project.maven_group

loom {
    accessWidener = file("src/main/resources/illuminations.accesswidener")
}

//def apiModules = [
//		"fabric-api-base",
//		"fabric-resource-loader-v0",
//		"fabric-particles-v1"
//]

repositories {
    maven { url 'https://jitpack.io' }

    // where grondag's mods live
    maven {
        name = "dblsaiko"
        url = "https://maven.dblsaiko.net/"
    }
    maven {
        name = "Cotton"
        url = "http://server.bbkr.space:8081/artifactory/libs-release/"
        allowInsecureProtocol = true
    }
    // REI, odds and ends
    maven {
        name = "CurseForge"
        url = "https://minecraft.curseforge.com/api/maven"
    }

    // cloth config
    maven { url "https://maven.shedaniel.me/" }

    // satin
    maven {
        name = 'Ladysnake Mods'
        url = 'https://ladysnake.jfrog.io/artifactory/mods'
        content {
            includeGroup 'io.github.ladysnake'
            includeGroupByRegex 'io\\.github\\.onyxstudios.*'
        }
    }

    // mod menu
    maven {
        name = 'TerraformersMC'
        url = 'https://maven.terraformersmc.com/'
    }
}

dependencies {
    //to change the versions see the gradle.properties file
    minecraft "com.mojang:minecraft:${project.minecraft_version}"
    mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
    modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"

    // Fabric API. This is technically optional, but you probably want it anyway.
    modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
//	apiModules.each {
//		modImplementation include(fabricApi.module(it, project.fabric_version))
//	}

    // Sodium
    // modRuntime 'com.github.jellysquid3:sodium-fabric:mc1.16.1-0.1.0'

    // cloth config
    modApi("me.shedaniel.cloth:cloth-config-fabric:5.+") {
        exclude(group: "net.fabricmc.fabric-api")
    }
    include "me.shedaniel.cloth:cloth-config-fabric:5.0.34"

    // mod menu
    modCompileOnly("com.terraformersmc:modmenu:2.0.5") {
        exclude module: "fabric-api"
    }

    modRuntime("com.terraformersmc:modmenu:2.0.5") {
        exclude module: "fabric-api"
    }

    // canvas renderer
//    modImplementation "grondag:canvas-mc117-1.17:1.0.2033"

	// satin
	modCompileOnly "io.github.ladysnake:satin:${satin_version}"
}

processResources {
    inputs.property "version", project.version

    filesMatching("fabric.mod.json") {
        expand "version": project.version
    }
}

// ensure that the encoding is set to UTF-8, no matter what the system default is
// this fixes some edge cases with special characters not displaying correctly
// see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html
tasks.withType(JavaCompile) {
    options.encoding = "UTF-8"
}

// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
// if it is present.
// If you remove this task, sources will not be generated.
task sourcesJar(type: Jar, dependsOn: classes) {
    classifier = "sources"
    from sourceSets.main.allSource
}

jar {
    from "LICENSE"
}

// configure the maven publication
publishing {
    publications {
        mavenJava(MavenPublication) {
            // add all the jars that should be included when publishing to maven
            artifact(remapJar) {
                builtBy remapJar
            }
            artifact(sourcesJar) {
                builtBy remapSourcesJar
            }
        }
    }

    // select the repositories you want to publish to
    repositories {
        // uncomment to publish to the local maven
        // mavenLocal()
    }
}


task checkGitStatus() {
    group = 'publishing'
    description = 'Checks that the git repository is in a state suitable for release'
    doLast {
        if (grgit == null) throw new RuntimeException('No git repository')
        if (!grgit.status().isClean()) {
            throw new RuntimeException("Git repository not ready for release (${grgit.status()})")
        }
        def currentBranch = grgit.branch.current().getName()
        grgit.fetch()
        if (grgit.tag.list().any { it.name == project.version }) {
            throw new RuntimeException("A tag already exists for ${project.version}")
        }
        def status = grgit.branch.status(name: currentBranch)
        if (status.aheadCount != 0) {
            throw new RuntimeException('Some commits have not been pushed')
        }
        if (status.behindCount != 0) {
            throw new RuntimeException('Some commits have not been pulled')
        }
    }
}

githubRelease {
    repo "Illuminations"
    token "${getProjectProperty('github_releases_token')}"
    // default owner: last component of maven group
    // default repo: name of the project
    tagName = project.version
    targetCommitish = { grgit.branch.current().name }
    body = { project.getChangelogText() }

    FilenameFilter filter = { dir, filename -> filename.contains(project.version) && !filename.contains('-dev.jar') }
    releaseAssets = { jar.destinationDirectory.asFile.get().listFiles filter }
}
tasks.githubRelease.dependsOn(checkGitStatus)

curseforge {

    if (project.getProjectProperty('curse_key') != null) {
        apiKey = project.getProjectProperty('curse_key')
    }

    if (project.hasProperty('curseforge_id')) {
        project {
            id = findProperty('curseforge_id')

            releaseType = project.release_type

            //usually automatically determined by the CurseGradle plugin, but won't work with fabric
            "${project.curseforge_versions}".split('; ').each {
                addGameVersion it
            }
            addGameVersion 'Fabric'

            mainArtifact(remapJar) {
                displayName = "${project.name}-${project.version}.jar"

                if (project.hasProperty('cf_requirements') || project.hasProperty('cf_optionals') || project.hasProperty('cf_embeddeds') || project.hasProperty('cf_tools') || project.hasProperty('cf_incompatibles') || project.hasProperty('cf_includes')) {
                    relations {
                        if (project.hasProperty('cf_requirements')) {
                            "${project.cf_requirements}".split('; ').each {
                                requiredDependency "${it}"
                            }
                        }
                        if (project.hasProperty('cf_optionals')) {
                            "${project.cf_optionals}".split('; ').each {
                                optionalDependency "${it}"
                            }
                        }
                        if (project.hasProperty('cf_embeddeds')) {
                            "${project.cf_embeddeds}".split('; ').each {
                                embeddedLibrary "${it}"
                            }
                        }
                        if (project.hasProperty('cf_tools')) {
                            "${project.cf_tools}".split('; ').each {
                                tool "${it}"
                            }
                        }
                        if (project.hasProperty('cf_incompatibles')) {
                            "${project.cf_incompatibles}".split('; ').each {
                                incompatible "${it}"
                            }
                        }
                        if (project.hasProperty('cf_includes')) {
                            "${project.cf_includes}".split('; ').each {
                                include "${it}"
                            }
                        }
                    }
                }
            }

            changelogType = 'markdown'
            changelog = project.getChangelogText()

            afterEvaluate {
                uploadTask.dependsOn remapSourcesJar
            }
        }
        options {
            forgeGradleIntegration = false
        }
    }
}

tasks.curseforge.dependsOn(checkGitStatus)

task release(dependsOn: [tasks.githubRelease, tasks.curseforge]) {
    group = 'publishing'
    description = 'Releases a new version to Github and Curseforge'
}

================================================
FILE: gradle/wrapper/gradle-wrapper.properties
================================================
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists


================================================
FILE: gradle.properties
================================================
# Done to increase the memory available to gradle.
org.gradle.jvmargs=-Xmx1G

# Fabric Properties
minecraft_version=1.18
yarn_mappings=1.18+build.1
loader_version=0.12.6

#Fabric api
fabric_version=0.43.1+1.18

# Mod Properties
mod_version = 1.10.2
maven_group = io.github.ladysnake
archives_base_name = illuminations

#Other Dependencies
findbugs_version = 3.0.2
jb_annotations_version = 15.0
apiguardian_version = 1.0.0
satin_version = 1.+

#Publishing
owners = Ladysnake
license_header = GPL-3.0-or-later
curseforge_id = 292908
curseforge_versions = 1.18
cf_requirements = fabric-api
release_type = release
changelog_url = https://github.com/Ladysnake/Illuminations/blob/main/CHANGELOG.md

================================================
FILE: gradlew
================================================
#!/usr/bin/env sh

#
# Copyright 2015 the original author or authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

##############################################################################
##
##  Gradle start up script for UN*X
##
##############################################################################

# Attempt to set APP_HOME
# Resolve links: $0 may be a link
PRG="$0"
# Need this for relative symlinks.
while [ -h "$PRG" ] ; do
    ls=`ls -ld "$PRG"`
    link=`expr "$ls" : '.*-> \(.*\)$'`
    if expr "$link" : '/.*' > /dev/null; then
        PRG="$link"
    else
        PRG=`dirname "$PRG"`"/$link"
    fi
done
SAVED="`pwd`"
cd "`dirname \"$PRG\"`/" >/dev/null
APP_HOME="`pwd -P`"
cd "$SAVED" >/dev/null

APP_NAME="Gradle"
APP_BASE_NAME=`basename "$0"`

# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"

warn () {
    echo "$*"
}

die () {
    echo
    echo "$*"
    echo
    exit 1
}

# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
nonstop=false
case "`uname`" in
  CYGWIN* )
    cygwin=true
    ;;
  Darwin* )
    darwin=true
    ;;
  MINGW* )
    msys=true
    ;;
  NONSTOP* )
    nonstop=true
    ;;
esac

CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar

# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
    if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
        # IBM's JDK on AIX uses strange locations for the executables
        JAVACMD="$JAVA_HOME/jre/sh/java"
    else
        JAVACMD="$JAVA_HOME/bin/java"
    fi
    if [ ! -x "$JAVACMD" ] ; then
        die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME

Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
    fi
else
    JAVACMD="java"
    which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.

Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi

# Increase the maximum file descriptors if we can.
if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
    MAX_FD_LIMIT=`ulimit -H -n`
    if [ $? -eq 0 ] ; then
        if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
            MAX_FD="$MAX_FD_LIMIT"
        fi
        ulimit -n $MAX_FD
        if [ $? -ne 0 ] ; then
            warn "Could not set maximum file descriptor limit: $MAX_FD"
        fi
    else
        warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
    fi
fi

# For Darwin, add options to specify how the application appears in the dock
if $darwin; then
    GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
fi

# For Cygwin, switch paths to Windows format before running java
if $cygwin ; then
    APP_HOME=`cygpath --path --mixed "$APP_HOME"`
    CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
    JAVACMD=`cygpath --unix "$JAVACMD"`

    # We build the pattern for arguments to be converted via cygpath
    ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
    SEP=""
    for dir in $ROOTDIRSRAW ; do
        ROOTDIRS="$ROOTDIRS$SEP$dir"
        SEP="|"
    done
    OURCYGPATTERN="(^($ROOTDIRS))"
    # Add a user-defined pattern to the cygpath arguments
    if [ "$GRADLE_CYGPATTERN" != "" ] ; then
        OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
    fi
    # Now convert the arguments - kludge to limit ourselves to /bin/sh
    i=0
    for arg in "$@" ; do
        CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
        CHECK2=`echo "$arg"|egrep -c "^-"`                                 ### Determine if an option

        if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then                    ### Added a condition
            eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
        else
            eval `echo args$i`="\"$arg\""
        fi
        i=$((i+1))
    done
    case $i in
        (0) set -- ;;
        (1) set -- "$args0" ;;
        (2) set -- "$args0" "$args1" ;;
        (3) set -- "$args0" "$args1" "$args2" ;;
        (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
        (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
        (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
        (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
        (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
        (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
    esac
fi

# Escape application args
save () {
    for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
    echo " "
}
APP_ARGS=$(save "$@")

# Collect all arguments for the java command, following the shell quoting and substitution rules
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"

# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
  cd "$(dirname "$0")"
fi

exec "$JAVACMD" "$@"


================================================
FILE: gradlew.bat
================================================
@rem
@rem Copyright 2015 the original author or authors.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem      https://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem

@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem  Gradle startup script for Windows
@rem
@rem ##########################################################################

@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal

set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%

@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"

@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome

set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto init

echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.

goto fail

:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe

if exist "%JAVA_EXE%" goto init

echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.

goto fail

:init
@rem Get command-line arguments, handling Windows variants

if not "%OS%" == "Windows_NT" goto win9xME_args

:win9xME_args
@rem Slurp the command line arguments.
set CMD_LINE_ARGS=
set _SKIP=2

:win9xME_args_slurp
if "x%~1" == "x" goto execute

set CMD_LINE_ARGS=%*

:execute
@rem Setup the command line

set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar

@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%

:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd

:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if  not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1

:mainEnd
if "%OS%"=="Windows_NT" endlocal

:omega


================================================
FILE: logs/latest.log
================================================


================================================
FILE: release.gradle
================================================
task checkGitStatus() {
    group = 'publishing'
    description = 'Checks that the git repository is in a state suitable for release'
    doLast {
        if (grgit == null) throw new RuntimeException('No git repository')
        if (!grgit.status().isClean()) {
            throw new RuntimeException("Git repository not ready for release (${grgit.status()})")
        }
        def currentBranch = grgit.branch.current().getName()
        if (currentBranch != 'master' && !currentBranch.matches(/\d+\.\d+(?>\.\d+)?/)) {
            throw new RuntimeException("Need to be on master or a snapshot branch to release (currently on ${currentBranch})")
        }
        grgit.fetch()
        if (grgit.tag.list().any { it.name == project.version }) {
            throw new RuntimeException("A tag already exists for ${project.version}")
        }
        def status = grgit.branch.status(name: currentBranch)
        if (status.aheadCount != 0) {
            throw new RuntimeException('Some commits have not been pushed')
        }
        if (status.behindCount != 0) {
            throw new RuntimeException('Some commits have not been pulled')
        }
    }
}

githubRelease {
    token "${findProperty('github_releases_token')}"
    // default owner: last component of maven group
    // default repo: name of the project
    tagName = project.version
    targetCommitish = { grgit.branch.current().name }
    body = { project.getChangelogText() }

    FilenameFilter filter = { dir, filename -> filename.contains(project.version) && !filename.contains('-dev.jar') }
    releaseAssets = { jar.destinationDirectory.asFile.get().listFiles filter }
}
tasks.githubRelease.dependsOn(checkGitStatus)

curseforge {
    apiKey = project.findProperty('curse_key') ?: ""

    if (project.hasProperty('curseforge_id')) {
        project {
            id = findProperty('curseforge_id')

            releaseType = project.release_type

            //usually automatically determined by the CurseGradle plugin, but won't work with fabric
            "${project.curseforge_versions}".split('; ').each {
                addGameVersion it
            }
            addGameVersion 'Fabric'

            mainArtifact(remapJar) {
                displayName = "${project.name}-${project.version}.jar"

                if (project.hasProperty('cf_requirements') || project.hasProperty('cf_optionals') || project.hasProperty('cf_embeddeds') || project.hasProperty('cf_tools') || project.hasProperty('cf_incompatibles') || project.hasProperty('cf_includes')) {
                    relations {
                        if (project.hasProperty('cf_requirements')) {
                            "${project.cf_requirements}".split('; ').each {
                                requiredDependency "${it}"
                            }
                        }
                        if (project.hasProperty('cf_optionals')) {
                            "${project.cf_optionals}".split('; ').each {
                                optionalDependency "${it}"
                            }
                        }
                        if (project.hasProperty('cf_embeddeds')) {
                            "${project.cf_embeddeds}".split('; ').each {
                                embeddedLibrary "${it}"
                            }
                        }
                        if (project.hasProperty('cf_tools')) {
                            "${project.cf_tools}".split('; ').each {
                                tool "${it}"
                            }
                        }
                        if (project.hasProperty('cf_incompatibles')) {
                            "${project.cf_incompatibles}".split('; ').each {
                                incompatible "${it}"
                            }
                        }
                        if (project.hasProperty('cf_includes')) {
                            "${project.cf_includes}".split('; ').each {
                                include "${it}"
                            }
                        }
                    }
                }
            }

            changelogType = 'markdown'
            changelog = project.getChangelogText()

            afterEvaluate {
                uploadTask.dependsOn remapSourcesJar
            }
        }
        options {
            forgeGradleIntegration = false
        }
    }
}

tasks.curseforge.dependsOn(checkGitStatus)

task release(dependsOn: [tasks.publish, tasks.githubRelease, tasks.curseforge]) {
    group = 'publishing'
    description = 'Releases a new version to Github and Curseforge'
}

================================================
FILE: settings.gradle
================================================
pluginManagement {
    repositories {
        jcenter()
        maven {
            name = 'Fabric'
            url = 'https://maven.fabricmc.net/'
        }
        gradlePluginPortal()
    }
}


================================================
FILE: src/main/java/ladysnake/illuminations/IlluminationsMixinConfigPlugin.java
================================================
package ladysnake.illuminations;

import net.fabricmc.loader.api.FabricLoader;
import org.objectweb.asm.tree.ClassNode;
import org.spongepowered.asm.mixin.extensibility.IMixinConfigPlugin;
import org.spongepowered.asm.mixin.extensibility.IMixinInfo;

import java.util.List;
import java.util.Set;

public class IlluminationsMixinConfigPlugin implements IMixinConfigPlugin {
    @Override
    public void onLoad(String mixinPackage) {

    }

    @Override
    public String getRefMapperConfig() {
        return null;
    }

    @Override
    public boolean shouldApplyMixin(String targetClassName, String mixinClassName) {
        if (mixinClassName.startsWith("ladysnake.illuminations.mixin.jeb")) {
            return FabricLoader.getInstance().isModLoaded("satin") && !FabricLoader.getInstance().isModLoaded("iris");
        } else {
            return true;
        }
    }

    @Override
    public void acceptTargets(Set<String> myTargets, Set<String> otherTargets) {

    }

    @Override
    public List<String> getMixins() {
        return null;
    }

    @Override
    public void preApply(String targetClassName, ClassNode targetClass, String mixinClassName, IMixinInfo mixinInfo) {

    }

    @Override
    public void postApply(String targetClassName, ClassNode targetClass, String mixinClassName, IMixinInfo mixinInfo) {

    }
}


================================================
FILE: src/main/java/ladysnake/illuminations/client/Illuminations.java
================================================
package ladysnake.illuminations.client;

import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableSet;
import com.google.gson.*;
import com.google.gson.reflect.TypeToken;
import com.mojang.serialization.Codec;
import ladysnake.illuminations.client.config.Config;
import ladysnake.illuminations.client.config.DefaultConfig;
import ladysnake.illuminations.client.data.AuraData;
import ladysnake.illuminations.client.data.IlluminationData;
import ladysnake.illuminations.client.data.OverheadData;
import ladysnake.illuminations.client.data.PlayerCosmeticData;
import ladysnake.illuminations.client.enums.BiomeCategory;
import ladysnake.illuminations.client.enums.HalloweenFeatures;
import ladysnake.illuminations.client.particle.*;
import ladysnake.illuminations.client.particle.aura.*;
import ladysnake.illuminations.client.particle.pet.*;
import ladysnake.illuminations.client.render.entity.feature.OverheadFeatureRenderer;
import ladysnake.illuminations.client.render.entity.model.hat.*;
import ladysnake.illuminations.client.render.entity.model.pet.LanternModel;
import ladysnake.illuminations.client.render.entity.model.pet.PrideHeartModel;
import ladysnake.illuminations.client.render.entity.model.pet.WillOWispModel;
import ladysnake.illuminations.updater.IlluminationsUpdater;
import net.fabricmc.api.ClientModInitializer;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import net.fabricmc.fabric.api.client.particle.v1.ParticleFactoryRegistry;
import net.fabricmc.fabric.api.client.rendereregistry.v1.EntityModelLayerRegistry;
import net.fabricmc.fabric.api.client.rendereregistry.v1.LivingEntityFeatureRendererRegistrationCallback;
import net.fabricmc.fabric.api.particle.v1.FabricParticleTypes;
import net.fabricmc.fabric.api.resource.ResourceManagerHelper;
import net.fabricmc.fabric.api.resource.ResourcePackActivationType;
import net.fabricmc.loader.api.FabricLoader;
import net.minecraft.block.Block;
import net.minecraft.block.Blocks;
import net.minecraft.client.MinecraftClient;
import net.minecraft.client.network.AbstractClientPlayerEntity;
import net.minecraft.client.render.entity.feature.FeatureRendererContext;
import net.minecraft.client.render.entity.model.EntityModelLayer;
import net.minecraft.client.render.entity.model.PlayerEntityModel;
import net.minecraft.entity.EntityType;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.particle.DefaultParticleType;
import net.minecraft.particle.ParticleType;
import net.minecraft.tag.BlockTags;
import net.minecraft.tag.FluidTags;
import net.minecraft.util.Identifier;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.registry.Registry;
import net.minecraft.world.World;
import org.apache.logging.log4j.Level;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.jetbrains.annotations.Nullable;

import java.io.IOException;
import java.io.InputStreamReader;
import java.io.Reader;
import java.lang.reflect.Type;
import java.net.MalformedURLException;
import java.net.URL;
import java.time.LocalDate;
import java.time.Month;
import java.util.Collections;
import java.util.Map;
import java.util.UUID;
import java.util.concurrent.CompletableFuture;
import java.util.function.BiPredicate;

@Environment(EnvType.CLIENT)
public class Illuminations implements ClientModInitializer {
    public static final String MODID = "illuminations";
    public static final Logger logger = LogManager.getLogger("Illuminations");

    // illuminations constants
    public static final int EYES_VANISHING_DISTANCE = 5;
    public static final Gson COSMETICS_GSON = new GsonBuilder().registerTypeAdapter(PlayerCosmeticData.class, new PlayerCosmeticDataParser()).create();
    // spawn predicates
    public static final BiPredicate<World, BlockPos> FIREFLY_LOCATION_PREDICATE = (world, blockPos) -> {
        Block block = world.getBlockState(blockPos).getBlock();
        return world.getDimension().hasFixedTime()
                ? (block == Blocks.AIR || block == Blocks.VOID_AIR)
                : block == Blocks.AIR
                && (Config.doesFireflySpawnAlways() || Illuminations.isNightTime(world))
                && (Config.doesFireflySpawnUnderground() || world.isSkyVisible(blockPos));
    };
    public static final BiPredicate<World, BlockPos> GLOWWORM_LOCATION_PREDICATE = (world, blockPos) -> world.getBlockState(blockPos).getBlock() == Blocks.CAVE_AIR;
    public static final BiPredicate<World, BlockPos> PLANKTON_LOCATION_PREDICATE = (world, blockPos) -> world.getBlockState(blockPos).getFluidState().isIn(FluidTags.WATER) && world.getLightLevel(blockPos) < 2;
    public static final BiPredicate<World, BlockPos> EYES_LOCATION_PREDICATE = (world, blockPos) -> ((Config.getHalloweenFeatures() == HalloweenFeatures.ENABLE && LocalDate.now().getMonth() == Month.OCTOBER) || Config.getHalloweenFeatures() == HalloweenFeatures.ALWAYS) && (world.getBlockState(blockPos).getBlock() == Blocks.AIR || world.getBlockState(blockPos).getBlock() == Blocks.CAVE_AIR) && world.getLightLevel(blockPos) <= 0 && world.getClosestPlayer(blockPos.getX(), blockPos.getY(), blockPos.getZ(), EYES_VANISHING_DISTANCE, false) == null && world.getRegistryKey().equals(World.OVERWORLD);
    public static final BiPredicate<World, BlockPos> WISP_LOCATION_PREDICATE = (world, blockPos) -> world.getBlockState(blockPos).isIn(BlockTags.SOUL_FIRE_BASE_BLOCKS);
    // register overhead models
    public static final EntityModelLayer CROWN = new EntityModelLayer(new Identifier(MODID, "crown"), "main");
    static final Type COSMETIC_SELECT_TYPE = new TypeToken<Map<UUID, PlayerCosmeticData>>() {
    }.getType();
    // illuminations cosmetics
    private static final String COSMETICS_URL = "https://illuminations.uuid.gg/data";
    public static ImmutableMap<String, AuraData> AURAS_DATA;
    public static ImmutableMap<String, DefaultParticleType> PETS_DATA;
    public static ImmutableMap<String, OverheadData> OVERHEADS_DATA;
    // particle types
    public static DefaultParticleType FIREFLY;
    public static DefaultParticleType GLOWWORM;
    public static DefaultParticleType PLANKTON;
    public static DefaultParticleType EYES;
    public static DefaultParticleType CHORUS_PETAL;
    public static DefaultParticleType WILL_O_WISP;
    public static ParticleType<WispTrailParticleEffect> WISP_TRAIL;
    public static DefaultParticleType PUMPKIN_SPIRIT;
    public static DefaultParticleType POLTERGEIST;
    public static DefaultParticleType PRISMARINE_CRYSTAL;
    //    public static DefaultParticleType EMBER;
//    public static DefaultParticleType EMBER_TRAIL;
    // auras
    public static DefaultParticleType TWILIGHT_AURA;
    public static DefaultParticleType GHOSTLY_AURA;
    public static DefaultParticleType CHORUS_AURA;
    public static DefaultParticleType AUTUMN_LEAVES_AURA;
    public static DefaultParticleType SCULK_TENDRIL_AURA;
    public static DefaultParticleType SHADOWBRINGER_AURA;
    public static DefaultParticleType GOLDENROD_AURA;
    public static DefaultParticleType CONFETTI_AURA;
    public static DefaultParticleType PRISMATIC_CONFETTI_AURA;
    public static DefaultParticleType PRISMARINE_AURA;
    // pets
    public static DefaultParticleType PRIDE_PET;
    public static DefaultParticleType GAY_PRIDE_PET;
    public static DefaultParticleType TRANS_PRIDE_PET;
    public static DefaultParticleType JACKO_PET;
    public static DefaultParticleType LESBIAN_PRIDE_PET;
    public static DefaultParticleType BI_PRIDE_PET;
    public static DefaultParticleType ACE_PRIDE_PET;
    public static DefaultParticleType NB_PRIDE_PET;
    public static DefaultParticleType INTERSEX_PRIDE_PET;
    public static DefaultParticleType ARO_PRIDE_PET;
    public static DefaultParticleType PAN_PRIDE_PET;
    public static DefaultParticleType AGENDER_PRIDE_PET;
    public static DefaultParticleType WILL_O_WISP_PET;
    public static DefaultParticleType GOLDEN_WILL_PET;
    public static DefaultParticleType FOUNDING_SKULL_PET;
    public static DefaultParticleType DISSOLUTION_WISP_PET;
    public static DefaultParticleType PUMPKIN_SPIRIT_PET;
    public static DefaultParticleType POLTERGEIST_PET;
    public static DefaultParticleType LANTERN_PET;
    public static DefaultParticleType SOUL_LANTERN_PET;
    public static DefaultParticleType CRYING_LANTERN_PET;
    public static DefaultParticleType SOOTHING_LANTERN_PET;
    // spawn biome categories and biomes
    public static ImmutableMap<BiomeCategory, ImmutableSet<IlluminationData>> ILLUMINATIONS_BIOME_CATEGORIES;
    public static ImmutableMap<Identifier, ImmutableSet<IlluminationData>> ILLUMINATIONS_BIOMES;
    private static Map<UUID, PlayerCosmeticData> PLAYER_COSMETICS = Collections.emptyMap();

    public static @Nullable PlayerCosmeticData getCosmeticData(PlayerEntity player) {
        return PLAYER_COSMETICS.get(player.getUuid());
    }

    public static @Nullable PlayerCosmeticData getCosmeticData(UUID uuid) {
        return PLAYER_COSMETICS.get(uuid);
    }

    public static void loadPlayerCosmetics() {
        // get illuminations player cosmetics
        CompletableFuture.supplyAsync(() -> {
            try (Reader reader = new InputStreamReader(new URL(COSMETICS_URL).openStream())) {
                if (Config.isDebugMode())
                    logger.log(Level.INFO, "Retrieving Illuminations cosmetics from the dashboard...");
                return COSMETICS_GSON.<Map<UUID, PlayerCosmeticData>>fromJson(reader, COSMETIC_SELECT_TYPE);
            } catch (MalformedURLException e) {
                if (Config.isDebugMode())
                    logger.log(Level.ERROR, "Could not get player cosmetics because of malformed URL: " + e.getMessage());
            } catch (IOException e) {
                if (Config.isDebugMode())
                    logger.log(Level.ERROR, "Could not get player cosmetics because of I/O Error: " + e.getMessage());
            }

            return null;
        }).exceptionally(throwable -> {
            if (Config.isDebugMode())
                logger.log(Level.ERROR, "Could not get player cosmetics because wtf is happening", throwable);
            return null;
        }).thenAcceptAsync(playerData -> {
            if (playerData != null) {
                PLAYER_COSMETICS = playerData;
                if (Config.isDebugMode()) logger.log(Level.INFO, "Player cosmetics successfully registered");
            } else {
                PLAYER_COSMETICS = Collections.emptyMap();
                if (Config.isDebugMode())
                    logger.log(Level.WARN, "Player cosmetics could not registered, cosmetics will be ignored");
            }
        }, MinecraftClient.getInstance());
    }

    public static boolean isNightTime(World world) {
        return world.getSkyAngle(world.getTimeOfDay()) >= 0.25965086 && world.getSkyAngle(world.getTimeOfDay()) <= 0.7403491;
    }

    @Override
    public void onInitializeClient() {
        // load config
        Config.load();

        // get illuminations player cosmetics
        loadPlayerCosmetics();

        // auto-updater
        if (!FabricLoader.getInstance().isDevelopmentEnvironment() && Config.isAutoUpdate()) {
            IlluminationsUpdater.init();
        }

        // load jeb shader
        if (FabricLoader.getInstance().isModLoaded("satin")) {
            Rainbowlluminations.init();
        }

        // register resource packs
        FabricLoader.getInstance().getModContainer(MODID).ifPresent(modContainer -> {
            ResourceManagerHelper.registerBuiltinResourcePack(new Identifier(MODID, "lowerres"), modContainer, ResourcePackActivationType.NORMAL);
            ResourceManagerHelper.registerBuiltinResourcePack(new Identifier(MODID, "pixelaccurate"), modContainer, ResourcePackActivationType.NORMAL);
        });

        // register model layers
        EntityModelLayerRegistry.registerModelLayer(CrownModel.MODEL_LAYER, CrownModel::getTexturedModelData);
        EntityModelLayerRegistry.registerModelLayer(HornsModel.MODEL_LAYER, HornsModel::getTexturedModelData);
        EntityModelLayerRegistry.registerModelLayer(HaloModel.MODEL_LAYER, HaloModel::getTexturedModelData);
        EntityModelLayerRegistry.registerModelLayer(TiaraModel.MODEL_LAYER, TiaraModel::getTexturedModelData);
        EntityModelLayerRegistry.registerModelLayer(VoidheartTiaraModel.MODEL_LAYER, VoidheartTiaraModel::getTexturedModelData);
        EntityModelLayerRegistry.registerModelLayer(WreathModel.MODEL_LAYER, WreathModel::getTexturedModelData);
        EntityModelLayerRegistry.registerModelLayer(WillOWispModel.MODEL_LAYER, WillOWispModel::getTexturedModelData);
        EntityModelLayerRegistry.registerModelLayer(LanternModel.MODEL_LAYER, LanternModel::getTexturedModelData);
        EntityModelLayerRegistry.registerModelLayer(PrideHeartModel.MODEL_LAYER, PrideHeartModel::getTexturedModelData);

        // particles
        FIREFLY = Registry.register(Registry.PARTICLE_TYPE, "illuminations:firefly", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.FIREFLY, FireflyParticle.DefaultFactory::new);
        GLOWWORM = Registry.register(Registry.PARTICLE_TYPE, "illuminations:glowworm", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.GLOWWORM, GlowwormParticle.DefaultFactory::new);
        PLANKTON = Registry.register(Registry.PARTICLE_TYPE, "illuminations:plankton", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.PLANKTON, PlanktonParticle.DefaultFactory::new);
        EYES = Registry.register(Registry.PARTICLE_TYPE, "illuminations:eyes", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.EYES, EyesParticle.DefaultFactory::new);
        CHORUS_PETAL = Registry.register(Registry.PARTICLE_TYPE, "illuminations:chorus_petal", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.CHORUS_PETAL, ChorusPetalParticle.DefaultFactory::new);
        WILL_O_WISP = Registry.register(Registry.PARTICLE_TYPE, "illuminations:will_o_wisp", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.WILL_O_WISP, fabricSpriteProvider -> new WillOWispParticle.DefaultFactory(fabricSpriteProvider, new Identifier(Illuminations.MODID, "textures/entity/will_o_wisp.png"), 1.0f, 1.0f, 1.0f, -0.1f, -0.01f, 0.0f));
        WISP_TRAIL = Registry.register(Registry.PARTICLE_TYPE, "illuminations:wisp_trail", new ParticleType<WispTrailParticleEffect>(true, WispTrailParticleEffect.PARAMETERS_FACTORY) {
            @Override
            public Codec<WispTrailParticleEffect> getCodec() {
                return WispTrailParticleEffect.CODEC;
            }
        });
        ParticleFactoryRegistry.getInstance().register(Illuminations.WISP_TRAIL, WispTrailParticle.Factory::new);
        PUMPKIN_SPIRIT = Registry.register(Registry.PARTICLE_TYPE, "illuminations:pumpkin_spirit", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.PUMPKIN_SPIRIT, fabricSpriteProvider -> new PumpkinSpiritParticle.DefaultFactory(fabricSpriteProvider, new Identifier(Illuminations.MODID, "textures/entity/pumpkin_spirit.png"), 1.0f, 0.95f, 0.0f, 0.0f, -0.03f, 0.0f));
        POLTERGEIST = Registry.register(Registry.PARTICLE_TYPE, "illuminations:poltergeist", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.POLTERGEIST, fabricSpriteProvider -> new PoltergeistParticle.DefaultFactory(fabricSpriteProvider, new Identifier(Illuminations.MODID, "textures/entity/poltergeist.png"), 1.0f, 1.0f, 1.0f, 0.0f, 0.0f, 0.0f));
        PRISMARINE_CRYSTAL = Registry.register(Registry.PARTICLE_TYPE, "illuminations:prismarine_crystal", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.PRISMARINE_CRYSTAL, PrismarineCrystalParticle.DefaultFactory::new);

//        EMBER = Registry.register(Registry.PARTICLE_TYPE, "illuminations:ember", FabricParticleTypes.simple(true));
//        ParticleFactoryRegistry.getInstance().register(Illuminations.EMBER, EmberParticle.DefaultFactory::new);
        // aura particles
        TWILIGHT_AURA = Registry.register(Registry.PARTICLE_TYPE, "illuminations:twilight_aura", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.TWILIGHT_AURA, TwilightFireflyParticle.DefaultFactory::new);
        GHOSTLY_AURA = Registry.register(Registry.PARTICLE_TYPE, "illuminations:ghostly_aura", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.GHOSTLY_AURA, GhostlyAuraParticle.DefaultFactory::new);
        CHORUS_AURA = Registry.register(Registry.PARTICLE_TYPE, "illuminations:chorus_aura", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.CHORUS_AURA, ChorusAuraParticle.DefaultFactory::new);
        AUTUMN_LEAVES_AURA = Registry.register(Registry.PARTICLE_TYPE, "illuminations:autumn_leaves", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.AUTUMN_LEAVES_AURA, AutumnLeavesParticle.DefaultFactory::new);
        SCULK_TENDRIL_AURA = Registry.register(Registry.PARTICLE_TYPE, "illuminations:sculk_tendril", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.SCULK_TENDRIL_AURA, SculkTendrilParticle.DefaultFactory::new);
        SHADOWBRINGER_AURA = Registry.register(Registry.PARTICLE_TYPE, "illuminations:shadowbringer_aura", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.SHADOWBRINGER_AURA, ShadowbringerParticle.DefaultFactory::new);
        GOLDENROD_AURA = Registry.register(Registry.PARTICLE_TYPE, "illuminations:goldenrod_aura", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.GOLDENROD_AURA, GoldenrodAuraParticle.DefaultFactory::new);
        CONFETTI_AURA = Registry.register(Registry.PARTICLE_TYPE, "illuminations:confetti", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.CONFETTI_AURA, ConfettiParticle.DefaultFactory::new);
        PRISMATIC_CONFETTI_AURA = Registry.register(Registry.PARTICLE_TYPE, "illuminations:prismatic_confetti", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.PRISMATIC_CONFETTI_AURA, PrismaticConfettiParticle.DefaultFactory::new);
        PRISMARINE_AURA = Registry.register(Registry.PARTICLE_TYPE, "illuminations:prismarine_aura", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.PRISMARINE_AURA, PrismarineAuraParticle.DefaultFactory::new);

        /*
                PRIDE PETS
         */
        PRIDE_PET = Registry.register(Registry.PARTICLE_TYPE, "illuminations:pride_pet", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.PRIDE_PET, fabricSpriteProvider -> new PrideHeartParticle.DefaultFactory(fabricSpriteProvider, new Identifier(Illuminations.MODID, "textures/entity/pride_heart.png"), 1.0f, 1.0f, 1.0f));
        GAY_PRIDE_PET = Registry.register(Registry.PARTICLE_TYPE, "illuminations:gay_pride_pet", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.GAY_PRIDE_PET, fabricSpriteProvider -> new PrideHeartParticle.DefaultFactory(fabricSpriteProvider, new Identifier(Illuminations.MODID, "textures/entity/gay_pride_heart.png"), 1.0f, 1.0f, 1.0f));
        TRANS_PRIDE_PET = Registry.register(Registry.PARTICLE_TYPE, "illuminations:trans_pride_pet", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.TRANS_PRIDE_PET, fabricSpriteProvider -> new PrideHeartParticle.DefaultFactory(fabricSpriteProvider, new Identifier(Illuminations.MODID, "textures/entity/trans_pride_heart.png"), 1.0f, 1.0f, 1.0f));
        LESBIAN_PRIDE_PET = Registry.register(Registry.PARTICLE_TYPE, "illuminations:lesbian_pride_pet", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.LESBIAN_PRIDE_PET, fabricSpriteProvider -> new PrideHeartParticle.DefaultFactory(fabricSpriteProvider, new Identifier(Illuminations.MODID, "textures/entity/lesbian_pride_heart.png"), 1.0f, 1.0f, 1.0f));
        BI_PRIDE_PET = Registry.register(Registry.PARTICLE_TYPE, "illuminations:bi_pride_pet", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.BI_PRIDE_PET, fabricSpriteProvider -> new PrideHeartParticle.DefaultFactory(fabricSpriteProvider, new Identifier(Illuminations.MODID, "textures/entity/bi_pride_heart.png"), 1.0f, 1.0f, 1.0f));
        ACE_PRIDE_PET = Registry.register(Registry.PARTICLE_TYPE, "illuminations:ace_pride_pet", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.ACE_PRIDE_PET, fabricSpriteProvider -> new PrideHeartParticle.DefaultFactory(fabricSpriteProvider, new Identifier(Illuminations.MODID, "textures/entity/ace_pride_heart.png"), 1.0f, 1.0f, 1.0f));
        NB_PRIDE_PET = Registry.register(Registry.PARTICLE_TYPE, "illuminations:nb_pride_pet", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.NB_PRIDE_PET, fabricSpriteProvider -> new PrideHeartParticle.DefaultFactory(fabricSpriteProvider, new Identifier(Illuminations.MODID, "textures/entity/nb_pride_heart.png"), 1.0f, 1.0f, 1.0f));
        INTERSEX_PRIDE_PET = Registry.register(Registry.PARTICLE_TYPE, "illuminations:intersex_pride_pet", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.INTERSEX_PRIDE_PET, fabricSpriteProvider -> new PrideHeartParticle.DefaultFactory(fabricSpriteProvider, new Identifier(Illuminations.MODID, "textures/entity/intersex_pride_heart.png"), 1.0f, 1.0f, 1.0f));
        ARO_PRIDE_PET = Registry.register(Registry.PARTICLE_TYPE, "illuminations:aro_pride_pet", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.ARO_PRIDE_PET, fabricSpriteProvider -> new PrideHeartParticle.DefaultFactory(fabricSpriteProvider, new Identifier(Illuminations.MODID, "textures/entity/aro_pride_heart.png"), 1.0f, 1.0f, 1.0f));
        PAN_PRIDE_PET = Registry.register(Registry.PARTICLE_TYPE, "illuminations:pan_pride_pet", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.PAN_PRIDE_PET, fabricSpriteProvider -> new PrideHeartParticle.DefaultFactory(fabricSpriteProvider, new Identifier(Illuminations.MODID, "textures/entity/pan_pride_heart.png"), 1.0f, 1.0f, 1.0f));
        AGENDER_PRIDE_PET = Registry.register(Registry.PARTICLE_TYPE, "illuminations:agender_pride_pet", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.AGENDER_PRIDE_PET, fabricSpriteProvider -> new PrideHeartParticle.DefaultFactory(fabricSpriteProvider, new Identifier(Illuminations.MODID, "textures/entity/agender_pride_heart.png"), 1.0f, 1.0f, 1.0f));

        /*
                WILL O' WISP PETS
         */
        WILL_O_WISP_PET = Registry.register(Registry.PARTICLE_TYPE, "illuminations:will_o_wisp_pet", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.WILL_O_WISP_PET, fabricSpriteProvider -> new PlayerWispParticle.DefaultFactory(fabricSpriteProvider, new Identifier(Illuminations.MODID, "textures/entity/will_o_wisp.png"), 1.0f, 1.0f, 1.0f, -0.1f, -0.01f, 0.0f));
        GOLDEN_WILL_PET = Registry.register(Registry.PARTICLE_TYPE, "illuminations:golden_will_pet", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.GOLDEN_WILL_PET, fabricSpriteProvider -> new PlayerWispParticle.DefaultFactory(fabricSpriteProvider, new Identifier(Illuminations.MODID, "textures/entity/golden_will.png"), 1.0f, 0.3f, 1.0f, -0.05f, -0.01f, 0.0f));
        FOUNDING_SKULL_PET = Registry.register(Registry.PARTICLE_TYPE, "illuminations:founding_skull_pet", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.FOUNDING_SKULL_PET, fabricSpriteProvider -> new PlayerWispParticle.DefaultFactory(fabricSpriteProvider, new Identifier(Illuminations.MODID, "textures/entity/founding_skull.png"), 1.0f, 0.0f, 0.25f, -0.03f, 0.0f, -0.01f));
        DISSOLUTION_WISP_PET = Registry.register(Registry.PARTICLE_TYPE, "illuminations:dissolution_wisp_pet", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.DISSOLUTION_WISP_PET, PetParticle.DefaultFactory::new);

        /*
                SPOOKY PETS
         */
        JACKO_PET = Registry.register(Registry.PARTICLE_TYPE, "illuminations:jacko_pet", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.JACKO_PET, JackoParticle.DefaultFactory::new);
        PUMPKIN_SPIRIT_PET = Registry.register(Registry.PARTICLE_TYPE, "illuminations:pumpkin_spirit_pet", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.PUMPKIN_SPIRIT_PET, fabricSpriteProvider -> new PlayerWispParticle.DefaultFactory(fabricSpriteProvider, new Identifier(Illuminations.MODID, "textures/entity/pumpkin_spirit.png"), 1.0f, 0.95f, 0.0f, 0.0f, -0.03f, 0.0f));
        POLTERGEIST_PET = Registry.register(Registry.PARTICLE_TYPE, "illuminations:poltergeist_pet", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.POLTERGEIST_PET, fabricSpriteProvider -> new PlayerWispParticle.DefaultFactory(fabricSpriteProvider, new Identifier(Illuminations.MODID, "textures/entity/poltergeist.png"), 1.0f, 1.0f, 1.0f, 0f, 0f, 0f));
        LANTERN_PET = Registry.register(Registry.PARTICLE_TYPE, "illuminations:lantern_pet", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.LANTERN_PET, fabricSpriteProvider -> new PlayerLanternParticle.DefaultFactory(fabricSpriteProvider, new Identifier(Illuminations.MODID, "textures/entity/lantern.png"), 1.0f, 1.0f, 1.0f));
        SOUL_LANTERN_PET = Registry.register(Registry.PARTICLE_TYPE, "illuminations:soul_lantern_pet", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.SOUL_LANTERN_PET, fabricSpriteProvider -> new PlayerLanternParticle.DefaultFactory(fabricSpriteProvider, new Identifier(Illuminations.MODID, "textures/entity/soul_lantern.png"), 1.0f, 1.0f, 1.0f));
        CRYING_LANTERN_PET = Registry.register(Registry.PARTICLE_TYPE, "illuminations:crying_lantern_pet", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.CRYING_LANTERN_PET, fabricSpriteProvider -> new PlayerLanternParticle.DefaultFactory(fabricSpriteProvider, new Identifier(Illuminations.MODID, "textures/entity/crying_lantern.png"), 1.0f, 1.0f, 1.0f));
        SOOTHING_LANTERN_PET = Registry.register(Registry.PARTICLE_TYPE, "illuminations:soothing_lantern_pet", FabricParticleTypes.simple(true));
        ParticleFactoryRegistry.getInstance().register(Illuminations.SOOTHING_LANTERN_PET, fabricSpriteProvider -> new PlayerLanternParticle.DefaultFactory(fabricSpriteProvider, new Identifier(Illuminations.MODID, "textures/entity/soothing_lantern.png"), 1.0f, 1.0f, 1.0f));

        /*
                CROWNS FEATURE RENDERER REGISTRATION
         */
        LivingEntityFeatureRendererRegistrationCallback.EVENT.register((entityType, entityRenderer, registrationHelper, context) -> {
            if (entityType == EntityType.PLAYER) {
                @SuppressWarnings("unchecked") var playerRenderer = (FeatureRendererContext<AbstractClientPlayerEntity, PlayerEntityModel<AbstractClientPlayerEntity>>) entityRenderer;
                registrationHelper.register(new OverheadFeatureRenderer(playerRenderer, context));
            }
        });

        /*
                ADDING FIRFLY, GLOWWORM AND PLANKTON BIOMES SPAWN RATES
         */
        ImmutableMap.Builder<BiomeCategory, ImmutableSet<IlluminationData>> biomeBuilder = ImmutableMap.builder();
        Config.getBiomeSettings().forEach((biome, settings) -> {
            ImmutableSet.Builder<IlluminationData> illuminationDataBuilder = ImmutableSet.builder();

            illuminationDataBuilder.add(new IlluminationData(FIREFLY, FIREFLY_LOCATION_PREDICATE, () -> Config.getBiomeSettings(biome).fireflySpawnRate().spawnRate));
            if (settings.glowwormSpawnRate() != null)
                illuminationDataBuilder.add(new IlluminationData(GLOWWORM, GLOWWORM_LOCATION_PREDICATE, () -> Config.getBiomeSettings(biome).glowwormSpawnRate().spawnRate));
            if (settings.planktonSpawnRate() != null)
                illuminationDataBuilder.add(new IlluminationData(PLANKTON, PLANKTON_LOCATION_PREDICATE, () -> Config.getBiomeSettings(biome).planktonSpawnRate().spawnRate));

            biomeBuilder.put(biome, illuminationDataBuilder.build());
        });
        ILLUMINATIONS_BIOME_CATEGORIES = biomeBuilder.build();

        /*
                WILL O' WISP BIOME SPAWN
         */
        ILLUMINATIONS_BIOMES = ImmutableMap.<Identifier, ImmutableSet<IlluminationData>>builder()
                .put(new Identifier("minecraft:soul_sand_valley"), ImmutableSet.of(
                        new IlluminationData(WILL_O_WISP, WISP_LOCATION_PREDICATE, () -> Config.getWillOWispsSpawnRate().spawnRate)))
                .build();

        /*
             Aura matching and spawn chances + overhead matching + crown matching
             Currently set to default aura settings.
             Uncomment settings related to auras in Config.java and change getDefaultAuraSettings to getAuraSettings to restore.
         */
        AURAS_DATA = ImmutableMap.<String, AuraData>builder()
                .put("twilight", new AuraData(TWILIGHT_AURA, () -> DefaultConfig.getAuraSettings("twilight")))
                .put("ghostly", new AuraData(GHOSTLY_AURA, () -> DefaultConfig.getAuraSettings("ghostly")))
                .put("chorus", new AuraData(CHORUS_AURA, () -> DefaultConfig.getAuraSettings("chorus")))
                .put("autumn_leaves", new AuraData(AUTUMN_LEAVES_AURA, () -> DefaultConfig.getAuraSettings("autumn_leaves")))
                .put("sculk_tendrils", new AuraData(SCULK_TENDRIL_AURA, () -> DefaultConfig.getAuraSettings("sculk_tendrils")))
                .put("shadowbringer_soul", new AuraData(SHADOWBRINGER_AURA, () -> DefaultConfig.getAuraSettings("shadowbringer_soul")))
                .put("goldenrod", new AuraData(GOLDENROD_AURA, () -> DefaultConfig.getAuraSettings("goldenrod")))
                .put("confetti", new AuraData(CONFETTI_AURA, () -> DefaultConfig.getAuraSettings("confetti")))
                .put("prismatic_confetti", new AuraData(PRISMATIC_CONFETTI_AURA, () -> DefaultConfig.getAuraSettings("prismatic_confetti")))
                .put("prismarine", new AuraData(PRISMARINE_AURA, () -> DefaultConfig.getAuraSettings("prismarine")))
                .build();

        OVERHEADS_DATA = ImmutableMap.<String, OverheadData>builder()
                .put("solar_crown", new OverheadData(CrownModel::new, "solar_crown"))
                .put("frost_crown", new OverheadData(CrownModel::new, "frost_crown"))
                .put("pyro_crown", new OverheadData(CrownModel::new, "pyro_crown"))
                .put("chorus_crown", new OverheadData(CrownModel::new, "chorus_crown"))
                .put("bloodfiend_crown", new OverheadData(CrownModel::new, "bloodfiend_crown"))
                .put("dreadlich_crown", new OverheadData(CrownModel::new, "dreadlich_crown"))
                .put("mooncult_crown", new OverheadData(CrownModel::new, "mooncult_crown"))
                .put("deepsculk_horns", new OverheadData(HornsModel::new, "deepsculk_horns"))
                .put("springfae_horns", new OverheadData(HornsModel::new, "springfae_horns"))
                .put("voidheart_tiara", new OverheadData(VoidheartTiaraModel::new, "voidheart_tiara"))
                .put("worldweaver_halo", new OverheadData(HaloModel::new, "worldweaver_halo"))
                .put("summerbreeze_wreath", new OverheadData(WreathModel::new, "summerbreeze_wreath"))
                .put("glowsquid_cult_crown", new OverheadData(TiaraModel::new, "glowsquid_cult_crown"))
                .put("timeaspect_cult_crown", new OverheadData(TiaraModel::new, "timeaspect_cult_crown"))
                .put("prismarine_crown", new OverheadData(CrownModel::new, "prismarine_crown"))
                .build();

        PETS_DATA = ImmutableMap.<String, DefaultParticleType>builder()
                .put("pride", PRIDE_PET)
                .put("gay_pride", GAY_PRIDE_PET)
                .put("trans_pride", TRANS_PRIDE_PET)
                .put("lesbian_pride", LESBIAN_PRIDE_PET)
                .put("bi_pride", BI_PRIDE_PET)
                .put("ace_pride", ACE_PRIDE_PET)
                .put("nb_pride", NB_PRIDE_PET)
                .put("intersex_pride", INTERSEX_PRIDE_PET)
                .put("aro_pride", ARO_PRIDE_PET)
                .put("pan_pride", PAN_PRIDE_PET)
                .put("agender_pride", AGENDER_PRIDE_PET)
                .put("jacko", JACKO_PET)
                .put("will_o_wisp", WILL_O_WISP_PET)
                .put("golden_will", GOLDEN_WILL_PET)
                .put("founding_skull", FOUNDING_SKULL_PET)
                .put("dissolution_wisp", DISSOLUTION_WISP_PET)
                .put("pumpkin_spirit", PUMPKIN_SPIRIT_PET)
                .put("poltergeist", POLTERGEIST_PET)
                .put("lantern", LANTERN_PET)
                .put("soul_lantern", SOUL_LANTERN_PET)
                .put("crying_lantern", CRYING_LANTERN_PET)
                .put("soothing_lantern", SOOTHING_LANTERN_PET)
                .build();
    }

    private static class PlayerCosmeticDataParser implements JsonDeserializer<PlayerCosmeticData> {
        @Override
        public PlayerCosmeticData deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException {
            JsonObject jsonObject = json.getAsJsonObject();
            return new PlayerCosmeticData(jsonObject.get("aura")
                    , jsonObject.get("color")
                    , jsonObject.get("overhead")
                    , jsonObject.get("drip")
                    , jsonObject.get("pet"));
        }
    }
}


================================================
FILE: src/main/java/ladysnake/illuminations/client/IlluminationsModMenuIntegration.java
================================================
package ladysnake.illuminations.client;

import com.google.common.base.CaseFormat;
import com.terraformersmc.modmenu.api.ConfigScreenFactory;
import com.terraformersmc.modmenu.api.ModMenuApi;
import ladysnake.illuminations.client.config.Config;
import ladysnake.illuminations.client.config.DefaultConfig;
import ladysnake.illuminations.client.data.BiomeSettings;
import ladysnake.illuminations.client.enums.*;
import me.shedaniel.clothconfig2.api.ConfigBuilder;
import me.shedaniel.clothconfig2.api.ConfigCategory;
import me.shedaniel.clothconfig2.api.ConfigEntryBuilder;
import me.shedaniel.clothconfig2.impl.builders.SubCategoryBuilder;
import net.minecraft.text.StringVisitable;
import net.minecraft.text.Text;
import net.minecraft.text.TranslatableText;
import net.minecraft.util.Identifier;

import java.util.HashMap;

import static ladysnake.illuminations.client.enums.BiomeCategory.OTHER;

public class IlluminationsModMenuIntegration implements ModMenuApi {

    private ConfigBuilder builder;
    private ConfigEntryBuilder entryBuilder;

    @Override
    public ConfigScreenFactory<?> getModConfigScreenFactory() {
        return parent -> {
            // load config
            Config.load();

            // create the config
            builder = ConfigBuilder.create()
                    .setParentScreen(parent)
                    .setTitle(new TranslatableText("title.illuminations.config"));
            builder.setSavingRunnable(Config::save);

            entryBuilder = builder.entryBuilder();

            // config categories and entries
            GenerateGeneralSettings();
            GenerateBiomeSettings();

            // build and return the config screen
            return builder.build();
        };
    }

    private void GenerateGeneralSettings() {
        ConfigCategory general = builder.getOrCreateCategory(new TranslatableText("category.illuminations.general"));

        general.addEntry(entryBuilder
                .startEnumSelector(new TranslatableText("option.illuminations.halloweenFeatures"), HalloweenFeatures.class, Config.getHalloweenFeatures())
                .setTooltip(
                        new TranslatableText("option.tooltip.illuminations.halloweenFeatures"),
                        new TranslatableText("option.tooltip.illuminations.halloweenFeatures.default"),
                        new TranslatableText("option.tooltip.illuminations.halloweenFeatures.enable"),
                        new TranslatableText("option.tooltip.illuminations.halloweenFeatures.disable"),
                        new TranslatableText("option.tooltip.illuminations.halloweenFeatures.always"))
                .setSaveConsumer(Config::setHalloweenFeatures)
                .setDefaultValue(DefaultConfig.HALLOWEEN_FEATURES)
                .build());

        general.addEntry(entryBuilder
                .startEnumSelector(new TranslatableText("option.illuminations.eyesInTheDarkSpawnRate"), EyesInTheDarkSpawnRate.class, Config.getEyesInTheDarkSpawnRate())
                .setTooltip(
                        new TranslatableText("option.tooltip.illuminations.eyesInTheDarkSpawnRate"),
                        new TranslatableText("option.tooltip.illuminations.eyesInTheDarkSpawnRate.default"),
                        new TranslatableText("option.tooltip.illuminations.eyesInTheDarkSpawnRate.low"),
                        new TranslatableText("option.tooltip.illuminations.eyesInTheDarkSpawnRate.medium"),
                        new TranslatableText("option.tooltip.illuminations.eyesInTheDarkSpawnRate.high"))
                .setSaveConsumer(Config::setEyesInTheDarkSpawnRate)
                .setDefaultValue(DefaultConfig.EYES_IN_THE_DARK_SPAWN_RATE)
                .build());

        general.addEntry(entryBuilder
                .startEnumSelector(new TranslatableText("option.illuminations.willOWispsSpawnRate"), WillOWispsSpawnRate.class, Config.getWillOWispsSpawnRate())
                .setTooltip(
                        new TranslatableText("option.tooltip.illuminations.willOWispsSpawnRate"),
                        new TranslatableText("option.tooltip.illuminations.willOWispsSpawnRate.default"),
                        new TranslatableText("option.tooltip.illuminations.willOWispsSpawnRate.disable"),
                        new TranslatableText("option.tooltip.illuminations.willOWispsSpawnRate.low"),
                        new TranslatableText("option.tooltip.illuminations.willOWispsSpawnRate.medium"),
                        new TranslatableText("option.tooltip.illuminations.willOWispsSpawnRate.high"))
                .setSaveConsumer(Config::setWillOWispsSpawnRate)
                .setDefaultValue(DefaultConfig.WILL_O_WISPS_SPAWN_RATE)
                .build());

        general.addEntry(entryBuilder
                .startIntSlider(new TranslatableText("option.illuminations.chorusPetalsSpawnMultiplier"), Config.getChorusPetalsSpawnMultiplier(), 0, 10)
                .setTooltip(
                        new TranslatableText("option.tooltip.illuminations.chorusPetalsSpawnMultiplier"),
                        new TranslatableText("option.tooltip.illuminations.chorusPetalsSpawnMultiplier.lowest"),
                        new TranslatableText("option.tooltip.illuminations.chorusPetalsSpawnMultiplier.highest"))
                .setSaveConsumer(Config::setChorusPetalsSpawnMultiplier)
                .setDefaultValue(DefaultConfig.CHORUS_PETALS_SPAWN_MULTIPLIER)
                .build());

        general.addEntry(entryBuilder
                .startIntSlider(new TranslatableText("option.illuminations.density"), Config.getDensity(), 0, 1000)
                .setTooltip(
                        new TranslatableText("option.tooltip.illuminations.density"),
                        new TranslatableText("option.tooltip.illuminations.density.lowest"),
                        new TranslatableText("option.tooltip.illuminations.density.highest"))
                .setSaveConsumer(Config::setDensity)
                .setDefaultValue(DefaultConfig.DENSITY)
                .build());

        general.addEntry(entryBuilder
                .startBooleanToggle(new TranslatableText("option.illuminations.fireflySpawnAlways"), Config.doesFireflySpawnAlways())
                .setTooltip(new TranslatableText("option.tooltip.illuminations.fireflySpawnAlways"))
                .setSaveConsumer(Config::setFireflySpawnAlways)
                .setDefaultValue(DefaultConfig.FIREFLY_SPAWN_ALWAYS)
                .build());

        general.addEntry(entryBuilder
                .startBooleanToggle(new TranslatableText("option.illuminations.fireflySpawnUnderground"), Config.doesFireflySpawnUnderground())
                .setTooltip(new TranslatableText("option.tooltip.illuminations.fireflySpawnUnderground"))
                .setSaveConsumer(Config::setFireflySpawnUnderground)
                .setDefaultValue(DefaultConfig.FIREFLY_SPAWN_UNDERGROUND)
                .build());

        general.addEntry(entryBuilder
                .startIntSlider(new TranslatableText("option.illuminations.fireflyWhiteAlpha"), Config.getFireflyWhiteAlpha(), 0, 100)
                .setTooltip(new TranslatableText("option.tooltip.illuminations.fireflyWhiteAlpha"))
                .setSaveConsumer(Config::setFireflyWhiteAlpha)
                .setDefaultValue(DefaultConfig.FIREFLY_WHITE_ALPHA)
                .build());

        general.addEntry(entryBuilder
                .startBooleanToggle(new TranslatableText("option.illuminations.fireflyRainbow"), Config.getFireflyRainbow())
                .setSaveConsumer(Config::setFireflyRainbow)
                .setDefaultValue(DefaultConfig.FIREFLY_RAINBOW)
                .build());

        general.addEntry(entryBuilder
                .startBooleanToggle(new TranslatableText("option.illuminations.autoUpdate"), Config.isAutoUpdate())
                .setTooltip(new TranslatableText("option.tooltip.illuminations.autoUpdate"))
                .setSaveConsumer(Config::setAutoUpdate)
                .setDefaultValue(DefaultConfig.AUTO_UPDATE)
                .build());

        general.addEntry(entryBuilder
                .startBooleanToggle(new TranslatableText("option.illuminations.viewAurasFP"), Config.getViewAurasFP())
                .setTooltip(new TranslatableText("option.tooltip.illuminations.viewAurasFP"))
                .setSaveConsumer(Config::setViewAurasFP)
                .setDefaultValue(DefaultConfig.VIEW_AURAS_FP)
                .build());

        general.addEntry(entryBuilder
                .startBooleanToggle(new TranslatableText("option.illuminations.displayDonationToast"), Config.isDisplayDonationToast())
                .setTooltip(new TranslatableText("option.tooltip.illuminations.displayDonationToast"))
                .setSaveConsumer(Config::setDisplayDonationToast)
                .setDefaultValue(DefaultConfig.DISPLAY_DONATION_TOAST)
                .build());

        general.addEntry(entryBuilder
                .startBooleanToggle(new TranslatableText("option.illuminations.debugMode"), Config.isDebugMode())
                .setTooltip(new TranslatableText("option.tooltip.illuminations.debugMode"))
                .setSaveConsumer(Config::setDebugMode)
                .setDefaultValue(DefaultConfig.DEBUG_MODE)
                .build());
    }

    private void GenerateBiomeSettings() {
        HashMap<Identifier, ConfigCategory> biomeCategories = new HashMap<>();
        for (Identifier dimension : BiomeCategory.getDimensions()) {
            String name = CaseFormat.LOWER_UNDERSCORE.to(CaseFormat.LOWER_CAMEL, dimension.getPath());
            ConfigCategory category = builder.getOrCreateCategory(new TranslatableText("category.illuminations." + name));
            category.setDescription(new StringVisitable[]{new TranslatableText("category.illuminations." + name + ".description")});
            biomeCategories.put(dimension, category);
        }

        for (BiomeCategory biome : BiomeCategory.values()) {
            ConfigCategory category = biomeCategories.get(biome.getDimension());
            String name = CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.LOWER_CAMEL, biome.name());
            BiomeSettings defaultSettings = DefaultConfig.getBiomeSettings(biome);
            BiomeSettings settings = Config.getBiomeSettings(biome);

            // Biome tooltip
            Text[] tooltip = new Text[biome.getBiomes().length + 1];
            tooltip[0] = new TranslatableText("option.tooltip.illuminations.biome");
            for (int i = 0; i < biome.getBiomes().length; i++) {
                tooltip[i + 1] = new TranslatableText("biome.minecraft." + biome.getBiomes()[i].getPath());
            }

            // Biome sub category
            SubCategoryBuilder biomeCategoryBuilder = entryBuilder
                    .startSubCategory(new TranslatableText("option.illuminations.biome." + name))
                    .setTooltip(tooltip);

            // Firefly spawn rate
            biomeCategoryBuilder.add(entryBuilder
                    .startEnumSelector(new TranslatableText("option.illuminations.fireflySpawnRate"), FireflySpawnRate.class, settings.fireflySpawnRate())
                    .setTooltip(
                            new TranslatableText("option.tooltip.illuminations.fireflySpawnRate"),
                            new TranslatableText("option.tooltip.illuminations.fireflySpawnRate.disable"),
                            new TranslatableText("option.tooltip.illuminations.fireflySpawnRate.low"),
                            new TranslatableText("option.tooltip.illuminations.fireflySpawnRate.medium"),
                            new TranslatableText("option.tooltip.illuminations.fireflySpawnRate.high"))
                    .setSaveConsumer(x -> Config.setFireflySettings(biome, x))
                    .setDefaultValue(defaultSettings.fireflySpawnRate())
                    .build());

            // Firefly color
            biomeCategoryBuilder.add(entryBuilder
                    .startColorField(new TranslatableText("option.illuminations.fireflyColor"), settings.fireflyColor())
                    .setTooltip(new TranslatableText("option.tooltip.illuminations.fireflyColor"))
                    .setSaveConsumer(x -> Config.setFireflyColorSettings(biome, x))
                    .setDefaultValue(defaultSettings.fireflyColor())
                    .build());

            // Glowworm spawn rate
            if (settings.glowwormSpawnRate() != null)
                biomeCategoryBuilder.add(entryBuilder
                        .startEnumSelector(new TranslatableText("option.illuminations.glowwormSpawnRate"), GlowwormSpawnRate.class, settings.glowwormSpawnRate())
                        .setTooltip(
                                new TranslatableText("option.tooltip.illuminations.glowwormSpawnRate"),
                                new TranslatableText("option.tooltip.illuminations.glowwormSpawnRate.disable"),
                                new TranslatableText("option.tooltip.illuminations.glowwormSpawnRate.low"),
                                new TranslatableText("option.tooltip.illuminations.glowwormSpawnRate.medium"),
                                new TranslatableText("option.tooltip.illuminations.glowwormSpawnRate.high"))
                        .setSaveConsumer(x -> Config.setGlowwormSettings(biome, x))
                        .setDefaultValue(defaultSettings.glowwormSpawnRate())
                        .build());

            // Plankton spawn rate
            if (settings.planktonSpawnRate() != null)
                biomeCategoryBuilder.add(entryBuilder
                        .startEnumSelector(new TranslatableText("option.illuminations.planktonSpawnRate"), PlanktonSpawnRate.class, settings.planktonSpawnRate())
                        .setTooltip(
                                new TranslatableText("option.tooltip.illuminations.planktonSpawnRate"),
                                new TranslatableText("option.tooltip.illuminations.planktonSpawnRate.disable"),
                                new TranslatableText("option.tooltip.illuminations.planktonSpawnRate.low"),
                                new TranslatableText("option.tooltip.illuminations.planktonSpawnRate.medium"),
                                new TranslatableText("option.tooltip.illuminations.planktonSpawnRate.high"))
                        .setSaveConsumer(x -> Config.setPlanktonSettings(biome, x))
                        .setDefaultValue(defaultSettings.planktonSpawnRate())
                        .build());

            if (biome == OTHER) {
                biomeCategoryBuilder.forEach(category::addEntry);
            } else {
                category.addEntry(biomeCategoryBuilder.build());
            }
        }
    }
}



================================================
FILE: src/main/java/ladysnake/illuminations/client/Rainbowlluminations.java
================================================
package ladysnake.illuminations.client;

import ladysnake.satin.api.event.EntitiesPreRenderCallback;
import ladysnake.satin.api.managed.ManagedCoreShader;
import ladysnake.satin.api.managed.ShaderEffectManager;
import ladysnake.satin.api.managed.uniform.Uniform1f;
import net.fabricmc.fabric.api.client.event.lifecycle.v1.ClientTickEvents;
import net.minecraft.util.Identifier;

public class Rainbowlluminations {
    // rainbow shader for jeb mobs
    public static final ManagedCoreShader RAINBOW_SHADER = ShaderEffectManager.getInstance().manageCoreShader(new Identifier(Illuminations.MODID, "jeb"));
    private static final Uniform1f uniformSTime = RAINBOW_SHADER.findUniform1f("Time");
    private static int ticks;

    public static void init() {
        ClientTickEvents.END_CLIENT_TICK.register(client -> ticks++);
        EntitiesPreRenderCallback.EVENT.register((camera, frustum, tickDelta) -> uniformSTime.set((ticks + tickDelta) * 0.05f));

    }
}


================================================
FILE: src/main/java/ladysnake/illuminations/client/config/Config.java
================================================
package ladysnake.illuminations.client.config;

import com.google.common.base.CaseFormat;
import ladysnake.illuminations.client.data.BiomeSettings;
import ladysnake.illuminations.client.enums.*;
import net.fabricmc.loader.api.FabricLoader;
import org.jetbrains.annotations.NotNull;

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.*;
import java.util.function.Consumer;

public class Config {
    public static final Path PROPERTIES_PATH = FabricLoader.getInstance().getConfigDir().resolve("illuminations.properties");
    private static final Properties config = new Properties() {
        @Override
        public @NotNull Set<Map.Entry<Object, Object>> entrySet() {
            Iterator<Map.Entry<Object, Object>> iterator = super.entrySet().stream().sorted(Comparator.comparing(o -> o.getKey().toString())).iterator();

            Set<Map.Entry<Object, Object>> temp = new LinkedHashSet<>(super.entrySet().size());
            while (iterator.hasNext())
                temp.add(iterator.next());

            return temp;
        }
    };
    private static HalloweenFeatures halloweenFeatures;
    private static EyesInTheDarkSpawnRate eyesInTheDarkSpawnRate;
    private static WillOWispsSpawnRate willOWispsSpawnRate;
    private static int chorusPetalsSpawnMultiplier;
    private static int density;
    private static boolean fireflySpawnAlways;
    private static boolean fireflySpawnUnderground;
    private static int fireflyWhiteAlpha;
    private static boolean fireflyRainbow;
    private static boolean viewAurasFP;
    private static boolean autoUpdate;
    private static boolean debugMode;
    private static boolean displayGreetingScreen;
    private static boolean displayDonationToast;
    private static HashMap<BiomeCategory, BiomeSettings> biomeSettings;
    // private static HashMap<String, AuraSettings> auraSettings;

    public static void load() {
        // if illuminations.properties exist, load it
        if (Files.isRegularFile(PROPERTIES_PATH)) {
            // load illuminations.properties
            try {
                config.load(Files.newBufferedReader(PROPERTIES_PATH));
            } catch (IOException e) {
                e.printStackTrace();
            }
        } else { // if no illuminations.properties, load default values
            // define default properties
            setHalloweenFeatures(DefaultConfig.HALLOWEEN_FEATURES);
            setEyesInTheDarkSpawnRate(DefaultConfig.EYES_IN_THE_DARK_SPAWN_RATE);
            setWillOWispsSpawnRate(DefaultConfig.WILL_O_WISPS_SPAWN_RATE);
            setChorusPetalsSpawnMultiplier(DefaultConfig.CHORUS_PETALS_SPAWN_MULTIPLIER);
            setDensity(DefaultConfig.DENSITY);
            setFireflySpawnAlways(DefaultConfig.FIREFLY_SPAWN_ALWAYS);
            setFireflySpawnUnderground(DefaultConfig.FIREFLY_SPAWN_UNDERGROUND);
            setFireflyWhiteAlpha(DefaultConfig.FIREFLY_WHITE_ALPHA);
            setAutoUpdate(DefaultConfig.AUTO_UPDATE);
            setViewAurasFP(DefaultConfig.VIEW_AURAS_FP);
            setDisplayGreetingScreen(DefaultConfig.DISPLAY_GREETING_SCREEN);
            setDisplayDonationToast(DefaultConfig.DISPLAY_DONATION_TOAST);

            biomeSettings = new HashMap<>();
            DefaultConfig.BIOME_SETTINGS.forEach(Config::setBiomeSettings);

            /*
            auraSettings = new HashMap<>();
            defaultAuraSettings.forEach(Config::setAuraSettings);
            */

            Config.save();
            return;
        }

        parseProperty("halloween-features", Config::setHalloweenFeatures, DefaultConfig.HALLOWEEN_FEATURES);
        parseProperty("eyes-in-the-dark-spawn-rate", Config::setEyesInTheDarkSpawnRate, DefaultConfig.EYES_IN_THE_DARK_SPAWN_RATE);
        parseProperty("will-o-wisps-spawn-rate", Config::setWillOWispsSpawnRate, DefaultConfig.WILL_O_WISPS_SPAWN_RATE);
        parseProperty("chorus-petal-spawn-multiplier", Config::setChorusPetalsSpawnMultiplier, DefaultConfig.CHORUS_PETALS_SPAWN_MULTIPLIER);
        parseProperty("density", Config::setDensity, DefaultConfig.DENSITY);
        parseProperty("firefly-spawn-always", Config::setFireflySpawnAlways, DefaultConfig.FIREFLY_SPAWN_ALWAYS);
        parseProperty("firefly-spawn-underground", Config::setFireflySpawnUnderground, DefaultConfig.FIREFLY_SPAWN_UNDERGROUND);
        parseProperty("firefly-white-alpha", Config::setFireflyWhiteAlpha, DefaultConfig.FIREFLY_WHITE_ALPHA);
        parseProperty("firefly-rainbow", Config::setFireflyRainbow, DefaultConfig.FIREFLY_RAINBOW);
        parseProperty("auto-update", Config::setAutoUpdate, DefaultConfig.AUTO_UPDATE);
        parseProperty("debug-mode", Config::setDebugMode, DefaultConfig.DEBUG_MODE);
        parseProperty("view-auras-fp", Config::setViewAurasFP, DefaultConfig.VIEW_AURAS_FP);
        parseProperty("display-greeting-screen", Config::setDisplayGreetingScreen, DefaultConfig.DISPLAY_GREETING_SCREEN);
        parseProperty("display-donation-toast", Config::setDisplayDonationToast, DefaultConfig.DISPLAY_DONATION_TOAST);

        biomeSettings = new HashMap<>();
        DefaultConfig.BIOME_SETTINGS.forEach((biome, defaultValue) ->
                parseProperty(biome.name(), x -> Config.setBiomeSettings(biome, x), defaultValue));

        /*
        auraSettings = new HashMap<>();
        defaultAuraSettings.forEach((aura, v) ->
                setAuraSettings(aura,
                        tryOrDefault(() -> {
                            String name = CaseFormat.LOWER_UNDERSCORE.to(CaseFormat.LOWER_HYPHEN, aura);
                            float s = Float.parseFloat(config.getProperty(name + "-aura-spawn-rate"));
                            int d = Integer.parseInt(config.getProperty(name + "-aura-delay"));
                            return new AuraSettings(s, d);
                        }, v)));
        */

        Config.save();
    }

    private static <T extends Enum<T>> void parseProperty(String property, Consumer<T> setter, T defaultValue) {
        try {
            setter.accept(Enum.valueOf(defaultValue.getDeclaringClass(), config.getProperty(property)));
        } catch (Exception e) {
            setter.accept(defaultValue);
        }
    }

    private static void parseProperty(String property, Consumer<Boolean> setter, Boolean defaultValue) {
        try {
            setter.accept(Boolean.parseBoolean(config.getProperty(property)));
        } catch (Exception e) {
            setter.accept(defaultValue);
        }
    }

    private static void parseProperty(String property, Consumer<Integer> setter, Integer defaultValue) {
        try {
            setter.accept(Integer.parseInt(config.getProperty(property)));
        } catch (Exception e) {
            setter.accept(defaultValue);
        }
    }

    private static void parseProperty(String biome, Consumer<BiomeSettings> setter, BiomeSettings defaultValue) {
        try {
            String name = CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.LOWER_HYPHEN, biome);

            FireflySpawnRate fireflySpawnRate = FireflySpawnRate.valueOf(config.getProperty(name + "-firefly-spawn-rate"));
            GlowwormSpawnRate glowwormSpawnRate = defaultValue.glowwormSpawnRate() == null ? null
                    : GlowwormSpawnRate.valueOf(config.getProperty(name + "-glowworm-spawn-rate"));
            PlanktonSpawnRate planktonSpawnRate = defaultValue.planktonSpawnRate() == null ? null
                    : PlanktonSpawnRate.valueOf(config.getProperty(name + "-plankton-spawn-rate"));
            int fireflyColor = Integer.parseInt(config.getProperty(name + "-firefly-color"), 16);

            setter.accept(new BiomeSettings(fireflySpawnRate, fireflyColor, glowwormSpawnRate, planktonSpawnRate));
        } catch (Exception e) {
            setter.accept(defaultValue);
        }
    }

    public static void save() {
        try {
            config.store(Files.newBufferedWriter(Config.PROPERTIES_PATH), null);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    //region Getters/Setters

    public static HalloweenFeatures getHalloweenFeatures() {
        return halloweenFeatures;
    }

    public static void setHalloweenFeatures(HalloweenFeatures value) {
        halloweenFeatures = value;
        config.setProperty("halloween-features", value.toString());
    }

    public static EyesInTheDarkSpawnRate getEyesInTheDarkSpawnRate() {
        return eyesInTheDarkSpawnRate;
    }

    public static void setEyesInTheDarkSpawnRate(EyesInTheDarkSpawnRate value) {
        eyesInTheDarkSpawnRate = value;
        config.setProperty("eyes-in-the-dark-spawn-rate", value.name());
    }

    public static WillOWispsSpawnRate getWillOWispsSpawnRate() {
        return willOWispsSpawnRate;
    }

    public static void setWillOWispsSpawnRate(WillOWispsSpawnRate value) {
        willOWispsSpawnRate = value;
        config.setProperty("will-o-wisps-spawn-rate", value.name());
    }

    public static int getChorusPetalsSpawnMultiplier() {
        return chorusPetalsSpawnMultiplier;
    }

    public static void setChorusPetalsSpawnMultiplier(int value) {
        chorusPetalsSpawnMultiplier = value;
        config.setProperty("chorus-petal-spawn-multiplier", Integer.toString(value));
    }

    public static int getDensity() {
        return density;
    }

    public static void setDensity(int value) {
        density = value;
        config.setProperty("density", Integer.toString(value));
    }

    public static boolean doesFireflySpawnAlways() {
        return fireflySpawnAlways;
    }

    public static void setFireflySpawnAlways(boolean value) {
        fireflySpawnAlways = value;
        config.setProperty("firefly-spawn-always", Boolean.toString(value));
    }

    public static boolean doesFireflySpawnUnderground() {
        return fireflySpawnUnderground;
    }

    public static void setFireflySpawnUnderground(boolean value) {
        fireflySpawnUnderground = value;
        config.setProperty("firefly-spawn-underground", Boolean.toString(value));
    }

    public static int getFireflyWhiteAlpha() {
        return fireflyWhiteAlpha;
    }

    public static void setFireflyWhiteAlpha(int value) {
        fireflyWhiteAlpha = value;
        config.setProperty("firefly-white-alpha", Integer.toString(value));
    }

    public static boolean getFireflyRainbow() {
        return fireflyRainbow;
    }

    public static void setFireflyRainbow(boolean value) {
        fireflyRainbow = value;
        config.setProperty("firefly-rainbow", Boolean.toString(value));
    }

    public static boolean getViewAurasFP() {
        return viewAurasFP;
    }

    public static void setViewAurasFP(boolean value) {
        viewAurasFP = value;
        config.setProperty("view-auras-fp", Boolean.toString(value));
    }

    public static boolean isAutoUpdate() {
        return autoUpdate;
    }

    public static void setAutoUpdate(boolean value) {
        autoUpdate = value;
        config.setProperty("auto-update", Boolean.toString(value));
    }

    public static boolean isDebugMode() {
        return debugMode;
    }

    public static void setDebugMode(boolean value) {
        debugMode = value;
        config.setProperty("debug-mode", Boolean.toString(value));
    }

    public static boolean isDisplayGreetingScreen() {
        return displayGreetingScreen;
    }

    public static void setDisplayGreetingScreen(boolean value) {
        displayGreetingScreen = value;
        config.setProperty("display-greeting-screen", Boolean.toString(value));
    }

    public static boolean isDisplayDonationToast() {
        return displayDonationToast;
    }

    public static void setDisplayDonationToast(boolean value) {
        displayDonationToast = value;
        config.setProperty("display-donation-toast", Boolean.toString(value));
    }

    public static Map<BiomeCategory, BiomeSettings> getBiomeSettings() {
        return biomeSettings;
    }

    public static BiomeSettings getBiomeSettings(BiomeCategory biome) {
        return biomeSettings.get(biome);
    }

    public static void setBiomeSettings(BiomeCategory biome, BiomeSettings settings) {
        biomeSettings.put(biome, settings);
        String name = CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.LOWER_HYPHEN, biome.name());
        config.setProperty(name + "-firefly-spawn-rate", settings.fireflySpawnRate().name());
        config.setProperty(name + "-firefly-color", Integer.toString(settings.fireflyColor(), 16));
        if (settings.glowwormSpawnRate() != null)
            config.setProperty(name + "-glowworm-spawn-rate", settings.glowwormSpawnRate().name());
        if (settings.planktonSpawnRate() != null)
            config.setProperty(name + "-plankton-spawn-rate", settings.planktonSpawnRate().name());
    }

    public static void setFireflySettings(BiomeCategory biome, FireflySpawnRate value) {
        BiomeSettings settings = biomeSettings.get(biome);
        biomeSettings.put(biome, settings.withFireflySpawnRate(value));
        String name = CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.LOWER_HYPHEN, biome.name());
        config.setProperty(name + "-firefly-spawn-rate", value.name());
    }

    public static void setFireflyColorSettings(BiomeCategory biome, int color) {
        BiomeSettings settings = biomeSettings.get(biome);
        biomeSettings.put(biome, settings.withFireflyColor(color));
        String name = CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.LOWER_HYPHEN, biome.name());
        config.setProperty(name + "-firefly-color", Integer.toString(color, 16));
    }

    public static void setGlowwormSettings(BiomeCategory biome, GlowwormSpawnRate value) {
        BiomeSettings settings = biomeSettings.get(biome);
        biomeSettings.put(biome, settings.withGlowwormSpawnRate(value));
        String name = CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.LOWER_HYPHEN, biome.name());
        config.setProperty(name + "-glowworm-spawn-rate", value.name());
    }

    public static void setPlanktonSettings(BiomeCategory biome, PlanktonSpawnRate value) {
        BiomeSettings settings = biomeSettings.get(biome);
        biomeSettings.put(biome, settings.withPlanktonSpawnRate(value));
        String name = CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.LOWER_HYPHEN, biome.name());
        config.setProperty(name + "-plankton-spawn-rate", value.name());
    }

    /*
    public static Map<String, AuraSettings> getAuraSettings()
    {
        return auraSettings;
    }

    public static AuraSettings getAuraSettings(String aura)
    {
        return auraSettings.get(aura);
    }

    public static void setAuraSettings(String aura, AuraSettings settings)
    {
        auraSettings.put(aura, settings);
        String name = CaseFormat.LOWER_UNDERSCORE.to(CaseFormat.LOWER_HYPHEN, aura);
        config.setProperty(name + "-aura-spawn-rate", Float.toString(settings.spawnRate()));
        config.setProperty(name + "-aura-delay", Integer.toString(settings.delay()));
    }

    public static void setAuraSpawnRate(String aura, float value)
    {
        AuraSettings settings = auraSettings.get(aura);
        auraSettings.put(aura, settings.withSpawnRate(value));
        String name = CaseFormat.LOWER_UNDERSCORE.to(CaseFormat.LOWER_HYPHEN, aura);
        config.setProperty(name + "-aura-spawn-rate", Float.toString(value));
    }

    public static void setAuraDelay(String aura, int value)
    {
        AuraSettings settings = auraSettings.get(aura);
        auraSettings.put(aura, settings.withDelay(value));
        String name = CaseFormat.LOWER_UNDERSCORE.to(CaseFormat.LOWER_HYPHEN, aura);
        config.setProperty(name + "-aura-delay", Integer.toString(value));
    }*/

    //endregion
}


================================================
FILE: src/main/java/ladysnake/illuminations/client/config/DefaultConfig.java
================================================
package ladysnake.illuminations.client.config;

import com.google.common.collect.ImmutableMap;
import ladysnake.illuminations.client.data.AuraSettings;
import ladysnake.illuminations.client.data.BiomeSettings;
import ladysnake.illuminations.client.enums.*;

import static ladysnake.illuminations.client.enums.BiomeCategory.*;

public final class DefaultConfig {

    public static final HalloweenFeatures HALLOWEEN_FEATURES = HalloweenFeatures.ENABLE;
    public static final EyesInTheDarkSpawnRate EYES_IN_THE_DARK_SPAWN_RATE = EyesInTheDarkSpawnRate.MEDIUM;
    public static final WillOWispsSpawnRate WILL_O_WISPS_SPAWN_RATE = WillOWispsSpawnRate.MEDIUM;
    public static final int CHORUS_PETALS_SPAWN_MULTIPLIER = 1;
    public static final int DENSITY = 100;
    public static final boolean FIREFLY_SPAWN_ALWAYS = false;
    public static final boolean FIREFLY_SPAWN_UNDERGROUND = false;
    public static final int FIREFLY_WHITE_ALPHA = 100;
    public static final boolean FIREFLY_RAINBOW = false;
    public static final boolean AUTO_UPDATE = false;
    public static final boolean DEBUG_MODE = false;
    public static final boolean VIEW_AURAS_FP = false;
    public static final boolean DISPLAY_GREETING_SCREEN = true;
    public static final boolean DISPLAY_DONATION_TOAST = true;

    public static final ImmutableMap<BiomeCategory, BiomeSettings> BIOME_SETTINGS = ImmutableMap.<BiomeCategory, BiomeSettings>builder()
            .put(FOREST, new BiomeSettings(FireflySpawnRate.MEDIUM, 0xBFFF00, GlowwormSpawnRate.MEDIUM, PlanktonSpawnRate.DISABLE))
            .put(TAIGA, new BiomeSettings(FireflySpawnRate.LOW, 0xBFFF00, GlowwormSpawnRate.LOW, PlanktonSpawnRate.DISABLE))
            .put(SNOWY, new BiomeSettings(FireflySpawnRate.DISABLE, 0x00BFFF, GlowwormSpawnRate.DISABLE, PlanktonSpawnRate.DISABLE))
            .put(PLAINS, new BiomeSettings(FireflySpawnRate.LOW, 0xBFFF00, GlowwormSpawnRate.LOW, PlanktonSpawnRate.DISABLE))
            .put(DESERT, new BiomeSettings(FireflySpawnRate.DISABLE, 0xFFA755, GlowwormSpawnRate.DISABLE, PlanktonSpawnRate.DISABLE))
            .put(SAVANNA, new BiomeSettings(FireflySpawnRate.LOW, 0xBFFF00, GlowwormSpawnRate.LOW, PlanktonSpawnRate.DISABLE))
            .put(JUNGLE, new BiomeSettings(FireflySpawnRate.LOW, 0x00FF21, GlowwormSpawnRate.LOW, PlanktonSpawnRate.DISABLE))
            .put(BEACH, new BiomeSettings(FireflySpawnRate.DISABLE, 0xBFFF00, GlowwormSpawnRate.DISABLE, PlanktonSpawnRate.DISABLE))
            .put(SWAMP, new BiomeSettings(FireflySpawnRate.HIGH, 0x009F00, GlowwormSpawnRate.HIGH, PlanktonSpawnRate.DISABLE))
            .put(RIVER, new BiomeSettings(FireflySpawnRate.MEDIUM, 0xBFFF00, GlowwormSpawnRate.MEDIUM, PlanktonSpawnRate.DISABLE))
            .put(OCEAN, new BiomeSettings(FireflySpawnRate.DISABLE, 0xBFFF00, GlowwormSpawnRate.DISABLE, PlanktonSpawnRate.HIGH))
            .put(WARM_OCEAN, new BiomeSettings(FireflySpawnRate.DISABLE, 0xBFFF00, GlowwormSpawnRate.DISABLE, PlanktonSpawnRate.HIGH))
            .put(BADLANDS, new BiomeSettings(FireflySpawnRate.DISABLE, 0xBFFF00, GlowwormSpawnRate.DISABLE, PlanktonSpawnRate.DISABLE))
            .put(MOUNTAINS, new BiomeSettings(FireflySpawnRate.DISABLE, 0xBFFF00, GlowwormSpawnRate.DISABLE, PlanktonSpawnRate.DISABLE))
            .put(DRIPSTONE_CAVES, new BiomeSettings(FireflySpawnRate.DISABLE, 0xBFFF00, GlowwormSpawnRate.DISABLE, PlanktonSpawnRate.DISABLE))
            .put(LUSH_CAVES, new BiomeSettings(FireflySpawnRate.DISABLE, 0xEB8931, GlowwormSpawnRate.DISABLE, PlanktonSpawnRate.DISABLE))
            .put(MUSHROOM, new BiomeSettings(FireflySpawnRate.DISABLE, 0xFF7F8F, GlowwormSpawnRate.DISABLE, PlanktonSpawnRate.DISABLE))
            .put(THE_VOID, new BiomeSettings(FireflySpawnRate.DISABLE, 0x8000FF, GlowwormSpawnRate.DISABLE, PlanktonSpawnRate.DISABLE))
            // Nether Biomes
            .put(NETHER_WASTES, new BiomeSettings(FireflySpawnRate.DISABLE, 0xFF8000, null, null))
            .put(CRIMSON_FOREST, new BiomeSettings(FireflySpawnRate.DISABLE, 0xFF8000, null, null))
            .put(WARPED_FOREST, new BiomeSettings(FireflySpawnRate.DISABLE, 0x008080, null, null))
            .put(SOUL_SAND_VALLEY, new BiomeSettings(FireflySpawnRate.DISABLE, 0x00FFFF, null, null))
            .put(BASALT_DELTAS, new BiomeSettings(FireflySpawnRate.DISABLE, 0xFF8000, null, null))
            // End Biomes
            .put(THE_END, new BiomeSettings(FireflySpawnRate.DISABLE, 0x8000FF, null, null))
            .put(SMALL_END_ISLANDS, new BiomeSettings(FireflySpawnRate.DISABLE, 0x8000FF, null, null))
            .put(END_MIDLANDS, new BiomeSettings(FireflySpawnRate.DISABLE, 0x8000FF, null, null))
            .put(END_HIGHLANDS, new BiomeSettings(FireflySpawnRate.DISABLE, 0x8000FF, null, null))
            .put(END_BARRENS, new BiomeSettings(FireflySpawnRate.DISABLE, 0x8000FF, null, null))
            // Other Biomes
            .put(OTHER, new BiomeSettings(FireflySpawnRate.DISABLE, 0xBFFF00, GlowwormSpawnRate.DISABLE, PlanktonSpawnRate.DISABLE))
            .build();

    public static final ImmutableMap<String, AuraSettings> AURA_SETTINGS = ImmutableMap.<String, AuraSettings>builder()
            .put("twilight", new AuraSettings(0.1f, 1))
            .put("ghostly", new AuraSettings(0.1f, 1))
            .put("chorus", new AuraSettings(0.1f, 1))
            .put("autumn_leaves", new AuraSettings(0.3f, 1))
            .put("sculk_tendrils", new AuraSettings(0.1f, 1))
            .put("shadowbringer_soul", new AuraSettings(0.1f, 1))
            .put("goldenrod", new AuraSettings(0.4f, 1))
            .put("confetti", new AuraSettings(0.1f, 1))
            .put("prismatic_confetti", new AuraSettings(0.1f, 1))
            .put("prismarine", new AuraSettings(0.1f, 1))
            .build();

    private DefaultConfig() {
        throw new UnsupportedOperationException();
    }

    public static BiomeSettings getBiomeSettings(BiomeCategory biome) {
        return BIOME_SETTINGS.get(biome);
    }

    public static AuraSettings getAuraSettings(String aura) {
        return AURA_SETTINGS.get(aura);
    }
}


================================================
FILE: src/main/java/ladysnake/illuminations/client/data/AuraData.java
================================================
package ladysnake.illuminations.client.data;

import net.minecraft.particle.DefaultParticleType;

import java.util.Random;
import java.util.function.Supplier;

public record AuraData(DefaultParticleType particle, Supplier<AuraSettings> auraSettingsSupplier) {

    public boolean shouldAddParticle(Random random, int age) {
        AuraSettings settings = auraSettingsSupplier().get();
        if (settings.spawnRate() == 0) return false;
        float rand = random.nextFloat();
        return rand <= settings.spawnRate() && (age % settings.delay() == 0);
    }
}


================================================
FILE: src/main/java/ladysnake/illuminations/client/data/AuraSettings.java
================================================
package ladysnake.illuminations.client.data;

public record AuraSettings(float spawnRate, int delay) {

    public AuraSettings withSpawnRate(float value) {
        return new AuraSettings(value, delay);
    }

    public AuraSettings withDelay(int value) {
        return new AuraSettings(spawnRate, value);
    }
}


================================================
FILE: src/main/java/ladysnake/illuminations/client/data/BiomeSettings.java
================================================
package ladysnake.illuminations.client.data;

import ladysnake.illuminations.client.enums.FireflySpawnRate;
import ladysnake.illuminations.client.enums.GlowwormSpawnRate;
import ladysnake.illuminations.client.enums.PlanktonSpawnRate;

public record BiomeSettings(FireflySpawnRate fireflySpawnRate,
                            int fireflyColor,
                            GlowwormSpawnRate glowwormSpawnRate,
                            PlanktonSpawnRate planktonSpawnRate) {

    public BiomeSettings withFireflySpawnRate(FireflySpawnRate value) {
        return new BiomeSettings(value, fireflyColor, glowwormSpawnRate, planktonSpawnRate);
    }

    public BiomeSettings withFireflyColor(int value) {
        return new BiomeSettings(fireflySpawnRate, value, glowwormSpawnRate, planktonSpawnRate);
    }

    public BiomeSettings withGlowwormSpawnRate(GlowwormSpawnRate value) {
        return new BiomeSettings(fireflySpawnRate, fireflyColor, value, planktonSpawnRate);
    }

    public BiomeSettings withPlanktonSpawnRate(PlanktonSpawnRate value) {
        return new BiomeSettings(fireflySpawnRate, fireflyColor, glowwormSpawnRate, value);
    }
}


================================================
FILE: src/main/java/ladysnake/illuminations/client/data/IlluminationData.java
================================================
package ladysnake.illuminations.client.data;

import ladysnake.illuminations.client.config.Config;
import net.minecraft.particle.DefaultParticleType;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;

import java.util.Random;
import java.util.function.BiPredicate;
import java.util.function.Supplier;

public record IlluminationData(DefaultParticleType illuminationType,
                               BiPredicate<World, BlockPos> locationSpawnPredicate,
                               Supplier<Float> chanceSupplier) {

    public boolean shouldAddParticle(Random random) {
        float chance = chanceSupplier.get();
        if (chance <= 0f) return false;
        float density = Config.getDensity() / 100f;
        return random.nextFloat() <= chance * density;
    }
}


================================================
FILE: src/main/java/ladysnake/illuminations/client/data/OverheadData.java
================================================
package ladysnake.illuminations.client.data;

import ladysnake.illuminations.client.Illuminations;
import ladysnake.illuminations.client.render.entity.model.hat.OverheadModel;
import net.minecraft.client.render.entity.EntityRendererFactory;
import net.minecraft.util.Identifier;

import java.util.function.Function;

public class OverheadData {
    private final Function<EntityRendererFactory.Context, OverheadModel> model;
    private final Identifier texture;

    public OverheadData(Function<EntityRendererFactory.Context, OverheadModel> model, String textureName) {
        this.model = model;
        this.texture = new Identifier(Illuminations.MODID, "textures/entity/" + textureName + ".png");
    }

    public OverheadModel createModel(EntityRendererFactory.Context ctx) {
        return model.apply(ctx);
    }

    public Identifier getTexture() {
        return texture;
    }
}


================================================
FILE: src/main/java/ladysnake/illuminations/client/data/PlayerCosmeticData.java
================================================
package ladysnake.illuminations.client.data;

import com.google.gson.JsonElement;

public class PlayerCosmeticData {
    private final int colorRed;
    private final int colorGreen;
    private final int colorBlue;
    private String aura;
    private String overhead;
    private boolean drip;
    private String pet;

    public PlayerCosmeticData(JsonElement aura, JsonElement color, JsonElement overhead, JsonElement drip, JsonElement pet) {
        if (aura.isJsonNull()) {
            this.aura = null;
        } else {
            this.aura = aura.getAsString();
        }
        if (color.isJsonNull()) {
            this.colorRed = 0;
            this.colorGreen = 0;
            this.colorBlue = 0;
        } else {
            this.colorRed = Integer.valueOf(color.getAsString().substring(1, 3), 16);
            this.colorGreen = Integer.valueOf(color.getAsString().substring(3, 5), 16);
            this.colorBlue = Integer.valueOf(color.getAsString().substring(5), 16);
        }
        if (overhead.isJsonNull()) {
            this.overhead = null;
        } else {
            this.overhead = overhead.getAsString();
        }
        if (pet.isJsonNull()) {
            this.pet = null;
        } else {
            this.pet = pet.getAsString();
        }
        if (drip.isJsonNull()) {
            this.drip = false;
        } else {
            this.drip = drip.getAsBoolean();
        }
    }

    public String getAura() {
        return aura;
    }

    public int getColorRed() {
        return colorRed;
    }

    public int getColorBlue() {
        return colorBlue;
    }

    public int getColorGreen() {
        return colorGreen;
    }

    public boolean isDrip() {
        return drip;
    }

    public String getOverhead() {
        return overhead;
    }

    public String getPet() {
        return pet;
    }
}


================================================
FILE: src/main/java/ladysnake/illuminations/client/enums/BiomeCategory.java
================================================
package ladysnake.illuminations.client.enums;

import net.minecraft.util.Identifier;
import net.minecraft.world.biome.Biome;

import java.util.*;

public enum BiomeCategory {
    FOREST("minecraft:overworld", Biome.Category.FOREST, "minecraft:forest", "minecraft:wooded_hills", "minecraft:flower_forest", "minecraft:birch_forest", "minecraft:birch_forest_hills", "minecraft:tall_birch_forest", "minecraft:tall_birch_hills", "minecraft:dark_forest", "minecraft:dark_forest_hills"),
    TAIGA("minecraft:overworld", Biome.Category.TAIGA, "minecraft:taiga", "minecraft:taiga_hills", "minecraft:taiga_mountains", "minecraft:giant_tree_taiga", "minecraft:giant_tree_taiga_hills", "minecraft:giant_spruce_taiga", "minecraft:giant_spruce_taiga_hills"),
    SNOWY("minecraft:overworld", Biome.Category.ICY, "minecraft:snowy_tundra", "minecraft:snowy_mountains", "minecraft:ice_spikes", "minecraft:snowy_taiga", "minecraft:snowy_taiga_hills", "minecraft:snowy_taiga_mountains", "minecraft:frozen_river", "minecraft:frozen_ocean", "minecraft:deep_frozen_ocean"),
    PLAINS("minecraft:overworld", Biome.Category.PLAINS, "minecraft:plains", "minecraft:sunflower_plains"),
    DESERT("minecraft:overworld", Biome.Category.DESERT, "minecraft:desert", "minecraft:desert_hills", "minecraft:desert_lakes"),
    SAVANNA("minecraft:overworld", Biome.Category.SAVANNA, "minecraft:savanna", "minecraft:savanna_plateau", "minecraft:shattered_savanna", "minecraft:shattered_savanna_plateau"),
    JUNGLE("minecraft:overworld", Biome.Category.JUNGLE, "minecraft:jungle", "minecraft:jungle_hills", "minecraft:modified_jungle", "minecraft:jungle_edge", "minecraft:modified_jungle_edge", "minecraft:bamboo_jungle", "minecraft:bamboo_jungle_hills"),
    BEACH("minecraft:overworld", Biome.Category.BEACH, "minecraft:beach", "minecraft:stone_shore"),
    SWAMP("minecraft:overworld", Biome.Category.SWAMP, "minecraft:swamp", "minecraft:swamp_hills"),
    RIVER("minecraft:overworld", Biome.Category.RIVER, "minecraft:river"),
    OCEAN("minecraft:overworld", Biome.Category.OCEAN, "minecraft:ocean", "minecraft:deep_ocean", "minecraft:cold_ocean", "minecraft:deep_cold_ocean"),
    WARM_OCEAN("minecraft:overworld", null, "minecraft:lukewarm_ocean", "minecraft:deep_lukewarm_ocean", "minecraft:warm_ocean", "minecraft:deep_warm_ocean"),
    BADLANDS("minecraft:overworld", Biome.Category.MESA, "minecraft:badlands", "minecraft:badlands_plateau", "minecraft:modified_badlands_plateau", "minecraft:wooded_badlands_plateau", "minecraft:modified_wooded_badlands_plateau", "minecraft:eroded_badlands"),
    MOUNTAINS("minecraft:overworld", Biome.Category.EXTREME_HILLS, "minecraft:mountains", "minecraft:wooded_mountains", "minecraft:gravelly_mountains", "minecraft:modified_gravelly_mountains", "minecraft:mountain_edge"),
    DRIPSTONE_CAVES("minecraft:overworld", Biome.Category.UNDERGROUND, "minecraft:dripstone_caves"),
    LUSH_CAVES("minecraft:overworld", null, "minecraft:lush_caves"),
    MUSHROOM("minecraft:overworld", Biome.Category.MUSHROOM, "minecraft:mushroom_fields", "minecraft:mushroom_field_shore"),
    THE_VOID("minecraft:overworld", null, "minecraft:the_void"),
    // Nether Biomes
    NETHER_WASTES("minecraft:the_nether", Biome.Category.NETHER, "minecraft:nether_wastes"),
    CRIMSON_FOREST("minecraft:the_nether", null, "minecraft:crimson_forest"),
    WARPED_FOREST("minecraft:the_nether", null, "minecraft:warped_forest"),
    SOUL_SAND_VALLEY("minecraft:the_nether", null, "minecraft:soul_sand_valley"),
    BASALT_DELTAS("minecraft:the_nether", null, "minecraft:basalt_deltas"),
    // End Biomes
    THE_END("minecraft:the_end", Biome.Category.THEEND, "minecraft:the_end"),
    SMALL_END_ISLANDS("minecraft:the_end", null, "minecraft:small_end_islands"),
    END_MIDLANDS("minecraft:the_end", null, "minecraft:end_midlands"),
    END_HIGHLANDS("minecraft:the_end", null, "minecraft:end_highlands"),
    END_BARRENS("minecraft:the_end", null, "minecraft:end_barrens"),
    // Other Biomes
    OTHER("minecraft:other", Biome.Category.NONE);

    private static final Set<Identifier> dimensions = Collections.unmodifiableSet(initializeDimensions());
    private static final Map<Identifier, BiomeCategory> lookUp = Collections.unmodifiableMap(initializeLookUp());
    private static final Map<Biome.Category, BiomeCategory> fallbackLookUp = Collections.unmodifiableMap(initializeFallbackLookUp());
    private final Identifier dimension;
    private final Biome.Category fallback;
    private final Identifier[] biomes;

    BiomeCategory(String dimension, Biome.Category fallback, String... biomes) {
        this.dimension = new Identifier(dimension);
        this.fallback = fallback;
        this.biomes = new Identifier[biomes.length];
        for (int i = 0; i < biomes.length; i++)
            this.biomes[i] = new Identifier(biomes[i]);
    }

    public static Set<Identifier> getDimensions() {
        return dimensions;
    }

    private static Set<Identifier> initializeDimensions() {
        Set<Identifier> dimensions = new LinkedHashSet<>();
        for (BiomeCategory category : BiomeCategory.values()) {
            dimensions.add(category.dimension);
        }
        return dimensions;
    }

    private static Map<Identifier, BiomeCategory> initializeLookUp() {
        Map<Identifier, BiomeCategory> lookUp = new HashMap<>();
        for (BiomeCategory category : BiomeCategory.values()) {
            for (Identifier biome : category.biomes) {
                lookUp.put(biome, category);
            }
        }
        return lookUp;
    }

    private static Map<Biome.Category, BiomeCategory> initializeFallbackLookUp() {
        Map<Biome.Category, BiomeCategory> lookUp = new HashMap<>();
        for (BiomeCategory category : BiomeCategory.values()) {
            if (category.fallback != null) {
                lookUp.put(category.fallback, category);
            }
        }
        return lookUp;
    }

    public static BiomeCategory find(Identifier biome, Biome.Category biomeCategory) {
        return lookUp.containsKey(biome)
                ? lookUp.get(biome)
                : fallbackLookUp.getOrDefault(biomeCategory, OTHER);
    }

    public Identifier getDimension() {
        return dimension;
    }

    public Identifier[] getBiomes() {
        return biomes;
    }
}


================================================
FILE: src/main/java/ladysnake/illuminations/client/enums/EyesInTheDarkSpawnRate.java
================================================
package ladysnake.illuminations.client.enums;

public enum EyesInTheDarkSpawnRate {
    LOW(0.00002f), MEDIUM(0.00010f), HIGH(0.00025f);

    public final float spawnRate;

    EyesInTheDarkSpawnRate(float spawnRate) {
        this.spawnRate = spawnRate;
    }
}


================================================
FILE: src/main/java/ladysnake/illuminations/client/enums/FireflySpawnRate.java
================================================
package ladysnake.illuminations.client.enums;

public enum FireflySpawnRate {
    DISABLE(0f),
    LOW(0.00002f),
    MEDIUM(0.00010f),
    HIGH(0.00025f);

    public final float spawnRate;

    FireflySpawnRate(float spawnRate) {
        this.spawnRate = spawnRate;
    }
}


================================================
FILE: src/main/java/ladysnake/illuminations/client/enums/GlowwormSpawnRate.java
================================================
package ladysnake.illuminations.client.enums;

public enum GlowwormSpawnRate {
    DISABLE(0f), LOW(0.00004f), MEDIUM(0.00020f), HIGH(0.00050f);

    public final float spawnRate;

    GlowwormSpawnRate(float spawnRate) {
        this.spawnRate = spawnRate;
    }
}


================================================
FILE: src/main/java/ladysnake/illuminations/client/enums/HalloweenFeatures.java
================================================
package ladysnake.illuminations.client.enums;

public enum HalloweenFeatures {
    ENABLE, DISABLE, ALWAYS
}


================================================
FILE: src/main/java/ladysnake/illuminations/client/enums/PlanktonSpawnRate.java
================================================
package ladysnake.illuminations.client.enums;

public enum PlanktonSpawnRate {
    DISABLE(0f), LOW(0.00020f), MEDIUM(0.00100f), HIGH(0.00250f);

    public final float spawnRate;

    PlanktonSpawnRate(float spawnRate) {
        this.spawnRate = spawnRate;
    }
}


================================================
FILE: src/main/java/ladysnake/illuminations/client/enums/WillOWispsSpawnRate.java
================================================
package ladysnake.illuminations.client.enums;

public enum WillOWispsSpawnRate {
    DISABLE(0f), LOW(0.00002f), MEDIUM(0.00010f), HIGH(0.00025f);

    public final float spawnRate;

    WillOWispsSpawnRate(float spawnRate) {
        this.spawnRate = spawnRate;
    }
}


================================================
FILE: src/main/java/ladysnake/illuminations/client/gui/AutoUpdateGreetingScreen.java
================================================
package ladysnake.illuminations.client.gui;

import ladysnake.illuminations.client.config.Config;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import net.minecraft.client.gui.screen.Screen;
import net.minecraft.client.gui.widget.ButtonWidget;
import net.minecraft.client.util.math.MatrixStack;
import net.minecraft.text.TranslatableText;
import net.minecraft.util.Formatting;

@Environment(EnvType.CLIENT)
public class AutoUpdateGreetingScreen extends Screen {
    private final Screen parent;

    public AutoUpdateGreetingScreen(Screen parent) {
        super(new TranslatableText("title.illuminations.autoUpdater"));
        this.parent = parent;
    }

    protected static int row(int index) {
        return 40 + index * 13;
    }

    protected void init() {
        this.addDrawableChild(new ButtonWidget(this.width / 2 - 125, this.height / 6 + 168, 100, 20, new TranslatableText("option.illuminations.disable").formatted(Formatting.RED), (button) -> {
            Config.setAutoUpdate(false);
            Config.save();
            this.client.setScreen(this.parent);
        }));

        this.addDrawableChild(new ButtonWidget(this.width / 2 + 25, this.height / 6 + 168, 100, 20, new TranslatableText("option.illuminations.enable").formatted(Formatting.GREEN), (button) -> {
            Config.setAutoUpdate(true);
            Config.save();
            this.client.setScreen(this.parent);
        }));
    }

    public void removed() {
        Config.setDisplayGreetingScreen(false);
        Config.save();
    }

    public void render(MatrixStack matrices, int mouseX, int mouseY, float delta) {
        this.renderBackground(matrices);
        drawCenteredText(matrices, this.textRenderer, this.title, this.width / 2, row(1), 16777215);
        for (int i = 1; i <= 8; i++) {
            drawCenteredText(matrices, this.textRenderer, new TranslatableText("description.illuminations.autoUpdater" + i), this.width / 2, row(i + 2), 16777215);
        }
        super.render(matrices, mouseX, mouseY, delta);
    }

    @Override
    public void onClose() {
        super.onClose();
        this.client.setScreen(this.parent);
    }
}


================================================
FILE: src/main/java/ladysnake/illuminations/client/gui/DonateToast.java
================================================
package ladysnake.illuminations.client.gui;

import com.mojang.blaze3d.systems.RenderSystem;
import ladysnake.illuminations.client.Illuminations;
import net.minecraft.client.MinecraftClient;
import net.minecraft.client.gui.screen.TitleScreen;
import net.minecraft.client.render.GameRenderer;
import net.minecraft.client.toast.Toast;
import net.minecraft.client.toast.ToastManager;
import net.minecraft.client.util.math.MatrixStack;
import net.minecraft.text.LiteralText;
import net.minecraft.text.Style;
import net.minecraft.util.Formatting;
import net.minecraft.util.Identifier;

public class DonateToast implements Toast {
    private static final Identifier TEXTURE = new Identifier(Illuminations.MODID, "textures/gui/donate_toast.png");

    public static void add() {
        ToastManager toastManager = MinecraftClient.getInstance().getToastManager();
        DonateToast toast = toastManager.getToast(DonateToast.class, Toast.TYPE);
        if (toast == null) {
            toastManager.add(new DonateToast());
        }
    }

    @Override
    public Visibility draw(MatrixStack matrices, ToastManager manager, long startTime) {
        RenderSystem.setShader(GameRenderer::getPositionTexShader);
        RenderSystem.setShaderTexture(0, TEXTURE);
        RenderSystem.setShaderColor(1.0F, 1.0F, 1.0F, 1.0F);
        manager.drawTexture(matrices, 0, 0, 0, 0, getWidth(), getHeight());
        manager.getClient().textRenderer.draw(matrices, new LiteralText("Wish to support Illuminations?"), 34, 7, -256);
        manager.getClient().textRenderer.draw(matrices, new LiteralText("Get cool cosmetics for only 5€!"), 34, 18, -1);
        manager.getClient().textRenderer.draw(matrices, new LiteralText("More info: illuminations.uuid.gg/donators").setStyle(Style.EMPTY.withColor(Formatting.GREEN)), 34, 29, -1);
        return MinecraftClient.getInstance().currentScreen instanceof TitleScreen ? Visibility.SHOW : Visibility.HIDE;
    }

    @Override
    public Object getType() {
        return TYPE;
    }

    @Override
    public int getWidth() {
        return 240;
    }

    @Override
    public int getHeight() {
        return 43;
    }
}


================================================
FILE: src/main/java/ladysnake/illuminations/client/gui/UpdateToast.java
================================================
package ladysnake.illuminations.client.gui;

import com.mojang.blaze3d.systems.RenderSystem;
import ladysnake.illuminations.client.Illuminations;
import net.minecraft.client.MinecraftClient;
import net.minecraft.client.gui.screen.TitleScreen;
import net.minecraft.client.render.GameRenderer;
import net.minecraft.client.toast.Toast;
import net.minecraft.client.toast.ToastManager;
import net.minecraft.client.util.math.MatrixStack;
import net.minecraft.text.LiteralText;
import net.minecraft.util.Identifier;

public class UpdateToast implements Toast {
    private static final Identifier TEXTURE = new Identifier(Illuminations.MODID, "textures/gui/update_toast.png");

    public static void add() {
        ToastManager toastManager = MinecraftClient.getInstance().getToastManager();
        UpdateToast toast = toastManager.getToast(UpdateToast.class, Toast.TYPE);
        if (toast == null) {
            toastManager.add(new UpdateToast());
        }
    }

    @Override
    public Visibility draw(MatrixStack matrices, ToastManager manager, long startTime) {
        RenderSystem.setShader(GameRenderer::getPositionTexShader);
        RenderSystem.setShaderTexture(0, TEXTURE);
        RenderSystem.setShaderColor(1.0F, 1.0F, 1.0F, 1.0F);
        manager.drawTexture(matrices, 0, 0, 0, 0, getWidth(), getHeight());
        manager.getClient().textRenderer.draw(matrices, new LiteralText("Illuminations update available!"), 34, 7, -256);
        manager.getClient().textRenderer.draw(matrices, new LiteralText("Illuminations automatically downloaded it"), 34, 18, -1);
        manager.getClient().textRenderer.draw(matrices, new LiteralText("Restart your game to finish installing"), 34, 29, -1);
        return MinecraftClient.getInstance().currentScreen instanceof TitleScreen ? Visibility.SHOW : Visibility.HIDE;
    }

    @Override
    public Object getType() {
        return TYPE;
    }

    @Override
    public int getWidth() {
        return 240;
    }

    @Override
    public int getHeight() {
        return 43;
    }
}


================================================
FILE: src/main/java/ladysnake/illuminations/client/particle/ChorusPetalParticle.java
================================================
package ladysnake.illuminations.client.particle;

import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import net.minecraft.client.particle.*;
import net.minecraft.client.render.Camera;
import net.minecraft.client.render.VertexConsumer;
import net.minecraft.client.world.ClientWorld;
import net.minecraft.particle.DefaultParticleType;
import net.minecraft.tag.FluidTags;
import net.minecraft.util.math.*;

import java.util.Random;

public class ChorusPetalParticle extends SpriteBillboardParticle {
    private static final Random RANDOM = new Random();
    protected final float rotationFactor;
    private final int variant = RANDOM.nextInt(3);
    private final SpriteProvider spriteProvider;

    public ChorusPetalParticle(ClientWorld world, double x, double y, double z, double velocityX, double velocityY, double velocityZ, SpriteProvider spriteProvider) {
        super(world, x, y, z, velocityX, velocityY, velocityZ);
        this.spriteProvider = spriteProvider;

        this.scale *= 1f + RANDOM.nextFloat();
        this.maxAge = 30 + random.nextInt(60);
        this.collidesWithWorld = true;
        this.setSprite(spriteProvider.getSprite(variant, 2));

        if (velocityY == 0f && velocityX == 0f && velocityZ == 0f) {
            this.colorAlpha = 0f;
        }

        this.velocityY = velocityY - 0.15D - random.nextFloat() / 10;
        this.velocityX = velocityX - 0.05D - random.nextFloat() / 10;
        this.velocityZ = velocityZ - 0.05D - random.nextFloat() / 10;

        this.rotationFactor = ((float) Math.random() - 0.5F) * 0.01F;
        this.angle = random.nextFloat() * 360f;
    }

    @Override
    public void buildGeometry(VertexConsumer vertexConsumer, Camera camera, float tickDelta) {
        this.colorRed = Math.max(this.colorGreen, 0.3f);

        Vec3d vec3d = camera.getPos();
        float f = (float) (MathHelper.lerp(tickDelta, this.prevPosX, this.x) - vec3d.getX());
        float g = (float) (MathHelper.lerp(tickDelta, this.prevPosY, this.y) - vec3d.getY());
        float h = (float) (MathHelper.lerp(tickDelta, this.prevPosZ, this.z) - vec3d.getZ());
        Quaternion quaternion2;
        if (this.angle == 0.0F) {
            quaternion2 = camera.getRotation();
        } else {
            quaternion2 = new Quaternion(camera.getRotation());
            float i = MathHelper.lerp(tickDelta, this.prevAngle, this.angle);
            quaternion2.hamiltonProduct(Vec3f.POSITIVE_Z.getDegreesQuaternion(i));
        }

        Vec3f Vec3f = new Vec3f(-1.0F, -1.0F, 0.0F);
        Vec3f.rotate(quaternion2);
        Vec3f[] Vec3fs = new Vec3f[]{new Vec3f(-1.0F, -1.0F, 0.0F), new Vec3f(-1.0F, 1.0F, 0.0F), new Vec3f(1.0F, 1.0F, 0.0F), new Vec3f(1.0F, -1.0F, 0.0F)};
        float j = this.getSize(tickDelta);

        for (int k = 0; k < 4; ++k) {
            Vec3f Vec3f2 = Vec3fs[k];
            Vec3f2.rotate(quaternion2);
            Vec3f2.scale(j);
            Vec3f2.add(f, g, h);
        }

        float minU = this.getMinU();
        float maxU = this.getMaxU();
        float minV = this.getMinV();
        float maxV = this.getMaxV();
        int l = 15728880;

        vertexConsumer.vertex(Vec3fs[0].getX(), Vec3fs[0].getY(), Vec3fs[0].getZ()).texture(maxU, maxV).color(colorRed, colorGreen, colorBlue, colorAlpha).light(l).next();
        vertexConsumer.vertex(Vec3fs[1].getX(), Vec3fs[1].getY(), Vec3fs[1].getZ()).texture(maxU, minV).color(colorRed, colorGreen, colorBlue, colorAlpha).light(l).next();
        vertexConsumer.vertex(Vec3fs[2].getX(), Vec3fs[2].getY(), Vec3fs[2].getZ()).texture(minU, minV).color(colorRed, colorGreen, colorBlue, colorAlpha).light(l).next();
        vertexConsumer.vertex(Vec3fs[3].getX(), Vec3fs[3].getY(), Vec3fs[3].getZ()).texture(minU, maxV).color(colorRed, colorGreen, colorBlue, colorAlpha).light(l).next();
    }

    public ParticleTextureSheet getType() {
        return ParticleTextureSheet.PARTICLE_SHEET_TRANSLUCENT;
    }

    public void tick() {
        if (this.age++ < this.maxAge) {
            this.colorAlpha = Math.min(1f, this.colorAlpha + 0.1f);
        }

        this.prevPosX = this.x;
        this.prevPosY = this.y;
        this.prevPosZ = this.z;

        this.move(this.velocityX, this.velocityY, this.velocityZ);
        this.velocityX *= 0.99D;
        this.velocityY *= 0.99D;
        this.velocityZ *= 0.99D;

        this.colorRed *= 0.99;
        this.colorGreen *= 0.98;

        if (this.age >= this.maxAge) {
//            this.colorRed *= 0.9;
//            this.colorGreen *= 0.8;

            this.colorAlpha = Math.max(0f, this.colorAlpha - 0.1f);

            if (this.colorAlpha <= 0f) {
                this.markDead();
            }
        }

        this.prevAngle = this.angle;
        if (this.onGround || this.world.getFluidState(new BlockPos(this.x, this.y, this.z)).isIn(FluidTags.WATER)) {
            this.velocityX = 0;
            this.velocityY = 0;
            this.velocityZ = 0;
        }

        if (this.velocityY != 0) {
            this.angle += Math.PI * Math.sin(rotationFactor * this.age) / 2;
        }
    }

    @Environment(EnvType.CLIENT)
    public static class DefaultFactory implements ParticleFactory<DefaultParticleType> {
        private final SpriteProvider spriteProvider;

        public DefaultFactory(SpriteProvider spriteProvider) {
            this.spriteProvider = spriteProvider;
        }

        public Particle createParticle(DefaultParticleType defaultParticleType, ClientWorld clientWorld, double d, double e, double f, double g, double h, double i) {
            return new ChorusPetalParticle(clientWorld, d, e, f, g, h, i, this.spriteProvider);
        }
    }

}


================================================
FILE: src/main/java/ladysnake/illuminations/client/particle/EmberParticle.java
================================================
package ladysnake.illuminations.client.particle;

import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import net.minecraft.block.Block;
import net.minecraft.block.BlockState;
import net.minecraft.block.CampfireBlock;
import net.minecraft.block.FireBlock;
import net.minecraft.client.particle.*;
import net.minecraft.client.render.Camera;
import net.minecraft.client.render.VertexConsumer;
import net.minecraft.client.world.ClientWorld;
import net.minecraft.particle.DefaultParticleType;
import net.minecraft.util.math.*;

public class EmberParticle extends SpriteBillboardParticle {
    protected static final float BLINK_STEP = 0.2f;
    private final SpriteProvider spriteProvider;
    protected float nextAlphaGoal;
    protected double xTarget;
    protected double yTarget;
    protected double zTarget;
    protected int targetChangeCooldown = 0;

    public EmberParticle(ClientWorld world, double x, double y, double z, double velocityX, double velocityY, double velocityZ, SpriteProvider spriteProvider) {
        super(world, x, y, z, velocityX, velocityY, velocityZ);
        this.spriteProvider = spriteProvider;

        this.maxAge = 100;
        this.collidesWithWorld = true;
        this.setSpriteForAge(spriteProvider);
        this.colorAlpha = 0f;
        this.nextAlphaGoal = 1f;

        this.scale = 0.01f;

        this.colorRed = 1.0f;
        this.colorGreen = 106f / 255f;
        this.colorBlue = 0f / 255f;
    }

    public ParticleTextureSheet getType() {
        return ParticleTextureSheet.PARTICLE_SHEET_TRANSLUCENT;
    }

    @Override
    public void buildGeometry(VertexConsumer vertexConsumer, Camera camera, float tickDelta) {
        Vec3d vec3d = camera.getPos();
        float f = (float) (MathHelper.lerp(tickDelta, this.prevPosX, this.x) - vec3d.getX());
        float g = (float) (MathHelper.lerp(tickDelta, this.prevPosY, this.y) - vec3d.getY());
        float h = (float) (MathHelper.lerp(tickDelta, this.prevPosZ, this.z) - vec3d.getZ());
        Quaternion quaternion2;
        if (this.angle == 0.0F) {
            quaternion2 = camera.getRotation();
        } else {
            quaternion2 = new Quaternion(camera.getRotation());
            float i = MathHelper.lerp(tickDelta, this.prevAngle, this.angle);
            quaternion2.hamiltonProduct(Vec3f.POSITIVE_Z.getRadialQuaternion(i));
        }

        Vec3f Vec3f = new Vec3f(-1.0F, -1.0F, 0.0F);
        Vec3f.rotate(quaternion2);
        Vec3f[] Vec3fs = new Vec3f[]{new Vec3f(-1.0F, -1.0F, 0.0F), new Vec3f(-1.0F, 1.0F, 0.0F), new Vec3f(1.0F, 1.0F, 0.0F), new Vec3f(1.0F, -1.0F, 0.0F)};
        float j = this.getSize(tickDelta);

        for (int k = 0; k < 4; ++k) {
            Vec3f Vec3f2 = Vec3fs[k];
            Vec3f2.rotate(quaternion2);
            Vec3f2.scale(j);
            Vec3f2.add(f, g, h);
        }

        float minU = this.getMinU();
        float maxU = this.getMaxU();
        float minV = this.getMinV();
        float maxV = this.getMaxV();
        int l = 15728880;
        float a = Math.min(1f, Math.max(0f, this.colorAlpha));

        vertexConsumer.vertex(Vec3fs[0].getX(), Vec3fs[0].getY(), Vec3fs[0].getZ()).texture(maxU, maxV).color(colorRed, colorGreen, colorBlue, a).light(l).next();
        vertexConsumer.vertex(Vec3fs[1].getX(), Vec3fs[1].getY(), Vec3fs[1].getZ()).texture(maxU, minV).color(colorRed, colorGreen, colorBlue, a).light(l).next();
        vertexConsumer.vertex(Vec3fs[2].getX(), Vec3fs[2].getY(), Vec3fs[2].getZ()).texture(minU, minV).color(colorRed, colorGreen, colorBlue, a).light(l).next();
        vertexConsumer.vertex(Vec3fs[3].getX(), Vec3fs[3].getY(), Vec3fs[3].getZ()).texture(minU, maxV).color(colorRed, colorGreen, colorBlue, a).light(l).next();
    }

    public void tick() {
        this.prevPosX = this.x;
        this.prevPosY = this.y;
        this.prevPosZ = this.z;

        for (int i = 0; i < 5; i++) {
            Block blockUnder = world.getBlockState(new BlockPos(this.x, this.y - i, this.z)).getBlock();
            if (blockUnder instanceof CampfireBlock || blockUnder instanceof FireBlock) {
                this.velocityY += 0.01f / (i + 1);
                break;
            } else {
                this.velocityY = Math.max(this.velocityY - 0.001f, 0.05f);
            }
        }

        if (this.age++ >= this.maxAge) {
            if (this.colorAlpha <= 0f) {
                this.markDead();
            } else {
                this.colorAlpha -= 0.1f;
            }
        } else {
            this.colorAlpha += 0.1f;
        }

        if (nextAlphaGoal > colorAlpha) {
            colorAlpha = Math.min(colorAlpha + BLINK_STEP, 1f);
        } else if (nextAlphaGoal < colorAlpha) {
            colorAlpha = Math.max(colorAlpha - BLINK_STEP, 0f);
        }

        this.targetChangeCooldown -= (new Vec3d(x, y, z).squaredDistanceTo(prevPosX, prevPosY, prevPosZ) < 0.0125) ? 10 : 1;

        if ((this.world.getTime() % 20 == 0) && ((xTarget == 0 && yTarget == 0 && zTarget == 0) || new Vec3d(x, y, z).squaredDistanceTo(xTarget, yTarget, zTarget) < 9 || targetChangeCooldown <= 0)) {
            selectBlockTarget();
        }

        Vec3d targetVector = new Vec3d(this.xTarget - this.x, this.yTarget - this.y, this.zTarget - this.z);
        double length = targetVector.length();
        targetVector = targetVector.multiply(0.1 / length);


        velocityX = (0.3) * velocityX + (0.1) * targetVector.x * 3;
        velocityZ = (0.3) * velocityZ + (0.1) * targetVector.z * 3;

        if (!new BlockPos(x, y, z).equals(this.getTargetPosition())) {
            this.move(velocityX, velocityY, velocityZ);
        }
    }

    private void selectBlockTarget() {
        // Behaviour
        double groundLevel = 0;
        for (int i = 0; i < 20; i++) {
            BlockState checkedBlock = this.world.getBlockState(new BlockPos(this.x, this.y - i, this.z));
            if (!checkedBlock.getBlock().canMobSpawnInside()) {
                groundLevel = this.y - i;
            }
            if (groundLevel != 0) break;
        }

        this.xTarget = this.x + random.nextGaussian();
        this.yTarget = this.y + random.nextGaussian() * 5;
        this.zTarget = this.z + random.nextGaussian();

        targetChangeCooldown = random.nextInt() % 10;
    }

    public BlockPos getTargetPosition() {
        return new BlockPos(this.xTarget, this.yTarget, this.zTarget);
    }

    @Environment(EnvType.CLIENT)
    public static class DefaultFactory implements ParticleFactory<DefaultParticleType> {
        private final SpriteProvider spriteProvider;

        public DefaultFactory(SpriteProvider spriteProvider) {
            this.spriteProvider = spriteProvider;
        }

        public Particle createParticle(DefaultParticleType defaultParticleType, ClientWorld clientWorld, double d, double e, double f, double g, double h, double i) {
            return new EmberParticle(clientWorld, d, e, f, g, h, i, this.spriteProvider);
        }
    }

}


================================================
FILE: src/main/java/ladysnake/illuminations/client/particle/EyesParticle.java
================================================
package ladysnake.illuminations.client.particle;

import ladysnake.illuminations.client.Illuminations;
import ladysnake.illuminations.client.config.Config;
import ladysnake.illuminations.client.enums.HalloweenFeatures;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import net.minecraft.client.particle.*;
import net.minecraft.client.render.Camera;
import net.minecraft.client.render.VertexConsumer;
import net.minecraft.client.world.ClientWorld;
import net.minecraft.entity.LivingEntity;
import net.minecraft.entity.effect.StatusEffects;
import net.minecraft.particle.DefaultParticleType;
import net.minecraft.util.math.*;

import java.util.Random;
import java.util.concurrent.ThreadLocalRandom;

public class EyesParticle extends SpriteBillboardParticle {
    private static final Random RANDOM = new Random();
    private final SpriteProvider spriteProvider;
    protected float alpha = 1f;

    public EyesParticle(ClientWorld world, double x, double y, double z, double velocityX, double velocityY, double velocityZ, SpriteProvider spriteProvider) {
        super(world, x, y, z, velocityX, velocityY, velocityZ);
        this.spriteProvider = spriteProvider;
        this.setSprite(spriteProvider.getSprite(0, 3));

        this.scale *= 1f + new Random().nextFloat();
        this.maxAge = ThreadLocalRandom.current().nextInt(400, 1201); // live between   seconds and one minute
        this.collidesWithWorld = true;

        this.colorRed = 1f;
        this.colorGreen = 1f;
        this.colorBlue = 1f;
    }

    @Override
    public void buildGeometry(VertexConsumer vertexConsumer, Camera camera, float tickDelta) {
        // disable if night vision or config is set to disabled
        if (camera.getFocusedEntity() instanceof LivingEntity && ((LivingEntity) camera.getFocusedEntity()).hasStatusEffect(StatusEffects.NIGHT_VISION) || Config.getHalloweenFeatures() == HalloweenFeatures.DISABLE) {
            this.markDead();
        }

        Vec3d vec3d = camera.getPos();
        float f = (float) (MathHelper.lerp(tickDelta, this.prevPosX, this.x) - vec3d.getX());
        float g = (float) (MathHelper.lerp(tickDelta, this.prevPosY, this.y) - vec3d.getY());
        float h = (float) (MathHelper.lerp(tickDelta, this.prevPosZ, this.z) - vec3d.getZ());
        Quaternion quaternion2;
        if (this.angle == 0.0F) {
            quaternion2 = camera.getRotation();
        } else {
            quaternion2 = new Quaternion(camera.getRotation());
            float i = MathHelper.lerp(tickDelta, this.prevAngle, this.angle);
            quaternion2.hamiltonProduct(Vec3f.POSITIVE_Z.getRadialQuaternion(i));
        }

        Vec3f Vec3f = new Vec3f(-1.0F, -1.0F, 0.0F);
        Vec3f.rotate(quaternion2);
        Vec3f[] Vec3fs = new Vec3f[]{new Vec3f(-1.0F, -1.0F, 0.0F), new Vec3f(-1.0F, 1.0F, 0.0F), new Vec3f(1.0F, 1.0F, 0.0F), new Vec3f(1.0F, -1.0F, 0.0F)};
        float j = this.getSize(tickDelta);

        for (int k = 0; k < 4; ++k) {
            Vec3f Vec3f2 = Vec3fs[k];
            Vec3f2.rotate(quaternion2);
            Vec3f2.scale(j);
            Vec3f2.add(f, g, h);
        }

        float minU = this.getMinU();
        float maxU = this.getMaxU();
        float minV = this.getMinV();
        float maxV = this.getMaxV();
        int l = 15728880;
        float a = Math.min(1f, Math.max(0f, this.colorAlpha));

        vertexConsumer.vertex(Vec3fs[0].getX(), Vec3fs[0].getY(), Vec3fs[0].getZ()).texture(maxU, maxV).color(colorRed, colorGreen, colorBlue, colorAlpha).light(l).next();
        vertexConsumer.vertex(Vec3fs[1].getX(), Vec3fs[1].getY(), Vec3fs[1].getZ()).texture(maxU, minV).color(colorRed, colorGreen, colorBlue, colorAlpha).light(l).next();
        vertexConsumer.vertex(Vec3fs[2].getX(), Vec3fs[2].getY(), Vec3fs[2].getZ()).texture(minU, minV).color(colorRed, colorGreen, colorBlue, colorAlpha).light(l).next();
        vertexConsumer.vertex(Vec3fs[3].getX(), Vec3fs[3].getY(), Vec3fs[3].getZ()).texture(minU, maxV).color(colorRed, colorGreen, colorBlue, colorAlpha).light(l).next();
    }

    public ParticleTextureSheet getType() {
        return ParticleTextureSheet.PARTICLE_SHEET_TRANSLUCENT;
    }

    public void tick() {
        if (this.age++ < this.maxAge) {
            if (this.age < 1) {
                this.setSprite(spriteProvider.getSprite(0, 3));
            } else if (this.age < 2) {
                this.setSprite(spriteProvider.getSprite(1, 3));
            } else if (this.age < 3) {
        
Download .txt
gitextract_kldsscd_/

├── .gitignore
├── CHANGELOG.md
├── LICENSE-ART
├── LICENSE-CODE
├── README.md
├── build.gradle
├── gradle/
│   └── wrapper/
│       ├── gradle-wrapper.jar
│       └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── lib/
│   ├── javax.annotation.jar
│   ├── javax.ejb.jar
│   ├── javax.jms.jar
│   ├── javax.persistence.jar
│   ├── javax.resource.jar
│   ├── javax.servlet.jar
│   ├── javax.servlet.jsp.jar
│   ├── javax.servlet.jsp.jstl.jar
│   └── javax.transaction.jar
├── logs/
│   └── latest.log
├── release.gradle
├── settings.gradle
└── src/
    └── main/
        ├── java/
        │   └── ladysnake/
        │       └── illuminations/
        │           ├── IlluminationsMixinConfigPlugin.java
        │           ├── client/
        │           │   ├── Illuminations.java
        │           │   ├── IlluminationsModMenuIntegration.java
        │           │   ├── Rainbowlluminations.java
        │           │   ├── config/
        │           │   │   ├── Config.java
        │           │   │   └── DefaultConfig.java
        │           │   ├── data/
        │           │   │   ├── AuraData.java
        │           │   │   ├── AuraSettings.java
        │           │   │   ├── BiomeSettings.java
        │           │   │   ├── IlluminationData.java
        │           │   │   ├── OverheadData.java
        │           │   │   └── PlayerCosmeticData.java
        │           │   ├── enums/
        │           │   │   ├── BiomeCategory.java
        │           │   │   ├── EyesInTheDarkSpawnRate.java
        │           │   │   ├── FireflySpawnRate.java
        │           │   │   ├── GlowwormSpawnRate.java
        │           │   │   ├── HalloweenFeatures.java
        │           │   │   ├── PlanktonSpawnRate.java
        │           │   │   └── WillOWispsSpawnRate.java
        │           │   ├── gui/
        │           │   │   ├── AutoUpdateGreetingScreen.java
        │           │   │   ├── DonateToast.java
        │           │   │   └── UpdateToast.java
        │           │   ├── particle/
        │           │   │   ├── ChorusPetalParticle.java
        │           │   │   ├── EmberParticle.java
        │           │   │   ├── EyesParticle.java
        │           │   │   ├── FireflyParticle.java
        │           │   │   ├── GlowwormParticle.java
        │           │   │   ├── PlanktonParticle.java
        │           │   │   ├── PoltergeistParticle.java
        │           │   │   ├── PrismarineCrystalParticle.java
        │           │   │   ├── PumpkinSpiritParticle.java
        │           │   │   ├── WillOWispParticle.java
        │           │   │   ├── WispTrailParticle.java
        │           │   │   ├── WispTrailParticleEffect.java
        │           │   │   ├── aura/
        │           │   │   │   ├── AutumnLeavesParticle.java
        │           │   │   │   ├── ChorusAuraParticle.java
        │           │   │   │   ├── ConfettiParticle.java
        │           │   │   │   ├── GhostlyAuraParticle.java
        │           │   │   │   ├── GoldenrodAuraParticle.java
        │           │   │   │   ├── PrismarineAuraParticle.java
        │           │   │   │   ├── PrismaticConfettiParticle.java
        │           │   │   │   ├── SculkTendrilParticle.java
        │           │   │   │   ├── ShadowbringerParticle.java
        │           │   │   │   └── TwilightFireflyParticle.java
        │           │   │   └── pet/
        │           │   │       ├── JackoParticle.java
        │           │   │       ├── PetParticle.java
        │           │   │       ├── PlayerLanternParticle.java
        │           │   │       ├── PlayerWispParticle.java
        │           │   │       └── PrideHeartParticle.java
        │           │   └── render/
        │           │       ├── GlowyRenderLayer.java
        │           │       └── entity/
        │           │           ├── feature/
        │           │           │   └── OverheadFeatureRenderer.java
        │           │           └── model/
        │           │               ├── hat/
        │           │               │   ├── CrownModel.java
        │           │               │   ├── HaloModel.java
        │           │               │   ├── HornsModel.java
        │           │               │   ├── OverheadModel.java
        │           │               │   ├── TiaraModel.java
        │           │               │   ├── VoidheartTiaraModel.java
        │           │               │   └── WreathModel.java
        │           │               └── pet/
        │           │                   ├── LanternModel.java
        │           │                   ├── PrideHeartModel.java
        │           │                   └── WillOWispModel.java
        │           ├── mixin/
        │           │   ├── BlockMixin.java
        │           │   ├── CarvedPumpkinBlockMixin.java
        │           │   ├── ChorusFlowerBlockMixin.java
        │           │   ├── ClientWorldMixin.java
        │           │   ├── LanternBlockMixin.java
        │           │   ├── LivingEntityMixin.java
        │           │   ├── ParticleManagerMixin.java
        │           │   ├── PlayerEntityMixin.java
        │           │   ├── RenderLayerAccessor.java
        │           │   ├── SkullBlockMixin.java
        │           │   ├── TitleScreenMixin.java
        │           │   └── jeb/
        │           │       ├── FeatureRendererMixin.java
        │           │       └── LivingEntityRendererMixin.java
        │           └── updater/
        │               └── IlluminationsUpdater.java
        └── resources/
            ├── assets/
            │   ├── illuminations/
            │   │   ├── lang/
            │   │   │   ├── de_de.json
            │   │   │   ├── en_us.json
            │   │   │   ├── id_id.json
            │   │   │   ├── ru_ru.json
            │   │   │   └── zh_cn.json
            │   │   ├── materialmaps/
            │   │   │   ├── entity/
            │   │   │   │   └── will_o_wisp.json
            │   │   │   └── particle/
            │   │   │       ├── ace_pride_pet.json
            │   │   │       ├── autumn_leaves.json
            │   │   │       ├── bi_pride_pet.json
            │   │   │       ├── chorus_aura.json
            │   │   │       ├── chorus_petal.json
            │   │   │       ├── confetti.json
            │   │   │       ├── dissolution_wisp_pet.json
            │   │   │       ├── eyes.json
            │   │   │       ├── firefly.json
            │   │   │       ├── ghostly_aura.json
            │   │   │       ├── glowworm.json
            │   │   │       ├── goldenrod_aura.json
            │   │   │       ├── intersex_pride_pet.json
            │   │   │       ├── jacko_pet.json
            │   │   │       ├── lesbian_pride_pet.json
            │   │   │       ├── nb_pride_pet.json
            │   │   │       ├── plankton.json
            │   │   │       ├── pride_pet.json
            │   │   │       ├── prismarine_aura.json
            │   │   │       ├── prismarine_crystal.json
            │   │   │       ├── prismatic_confetti.json
            │   │   │       ├── sculk_tendril.json
            │   │   │       ├── shadowbringer_aura.json
            │   │   │       ├── trans_pride_pet.json
            │   │   │       ├── twilight_aura.json
            │   │   │       └── wisp_trail.json
            │   │   ├── particles/
            │   │   │   ├── ace_pride_pet.json
            │   │   │   ├── agender_pride_pet.json
            │   │   │   ├── aro_pride_pet.json
            │   │   │   ├── autumn_leaves.json
            │   │   │   ├── bi_pride_pet.json
            │   │   │   ├── chorus_aura.json
            │   │   │   ├── chorus_petal.json
            │   │   │   ├── confetti.json
            │   │   │   ├── crying_lantern_pet.json
            │   │   │   ├── dissolution_wisp_pet.json
            │   │   │   ├── ember.json
            │   │   │   ├── ember_trail.json
            │   │   │   ├── eyes.json
            │   │   │   ├── firefly.json
            │   │   │   ├── founding_skull_pet.json
            │   │   │   ├── gay_pride_pet.json
            │   │   │   ├── ghostly.json
            │   │   │   ├── ghostly_aura.json
            │   │   │   ├── glowworm.json
            │   │   │   ├── golden_will_pet.json
            │   │   │   ├── goldenrod_aura.json
            │   │   │   ├── intersex_pride_pet.json
            │   │   │   ├── jacko_pet.json
            │   │   │   ├── lantern_pet.json
            │   │   │   ├── lesbian_pride_pet.json
            │   │   │   ├── nb_pride_pet.json
            │   │   │   ├── pan_pride_pet.json
            │   │   │   ├── plankton.json
            │   │   │   ├── poltergeist.json
            │   │   │   ├── poltergeist_pet.json
            │   │   │   ├── pride_pet.json
            │   │   │   ├── prismarine_aura.json
            │   │   │   ├── prismarine_crystal.json
            │   │   │   ├── prismatic_confetti.json
            │   │   │   ├── pumpkin_spirit.json
            │   │   │   ├── pumpkin_spirit_pet.json
            │   │   │   ├── sculk_tendril.json
            │   │   │   ├── shadowbringer_aura.json
            │   │   │   ├── soothing_lantern_pet.json
            │   │   │   ├── soul_lantern_pet.json
            │   │   │   ├── trans_pride_pet.json
            │   │   │   ├── twilight_aura.json
            │   │   │   ├── will_o_wisp.json
            │   │   │   ├── will_o_wisp_pet.json
            │   │   │   └── wisp_trail.json
            │   │   ├── shaders/
            │   │   │   └── core/
            │   │   │       ├── jeb.fsh
            │   │   │       ├── jeb.json
            │   │   │       └── jeb.vsh
            │   │   └── textures/
            │   │       └── particle/
            │   │           ├── dissolution_wisp.png.mcmeta
            │   │           ├── tendril_active.png.mcmeta
            │   │           └── tendril_inactive.png.mcmeta
            │   └── minecraft/
            │       ├── materialmaps/
            │       │   └── entity/
            │       │       └── player.json
            │       └── shaders/
            │           └── core/
            │               └── particle.fsh
            ├── fabric.mod.json
            ├── illuminations-uninstaller.jar
            ├── illuminations.accesswidener
            ├── illuminations.mixins.json
            └── pack.mcmeta
Download .txt
SYMBOL INDEX (441 symbols across 75 files)

FILE: src/main/java/ladysnake/illuminations/IlluminationsMixinConfigPlugin.java
  class IlluminationsMixinConfigPlugin (line 11) | public class IlluminationsMixinConfigPlugin implements IMixinConfigPlugin {
    method onLoad (line 12) | @Override
    method getRefMapperConfig (line 17) | @Override
    method shouldApplyMixin (line 22) | @Override
    method acceptTargets (line 31) | @Override
    method getMixins (line 36) | @Override
    method preApply (line 41) | @Override
    method postApply (line 46) | @Override

FILE: src/main/java/ladysnake/illuminations/client/Illuminations.java
  class Illuminations (line 71) | @Environment(EnvType.CLIENT)
    method getCosmeticData (line 153) | public static @Nullable PlayerCosmeticData getCosmeticData(PlayerEntit...
    method getCosmeticData (line 157) | public static @Nullable PlayerCosmeticData getCosmeticData(UUID uuid) {
    method loadPlayerCosmetics (line 161) | public static void loadPlayerCosmetics() {
    method isNightTime (line 193) | public static boolean isNightTime(World world) {
    method onInitializeClient (line 197) | @Override
    class PlayerCosmeticDataParser (line 436) | private static class PlayerCosmeticDataParser implements JsonDeseriali...
      method deserialize (line 437) | @Override

FILE: src/main/java/ladysnake/illuminations/client/IlluminationsModMenuIntegration.java
  class IlluminationsModMenuIntegration (line 23) | public class IlluminationsModMenuIntegration implements ModMenuApi {
    method getModConfigScreenFactory (line 28) | @Override
    method GenerateGeneralSettings (line 51) | private void GenerateGeneralSettings() {
    method GenerateBiomeSettings (line 167) | private void GenerateBiomeSettings() {

FILE: src/main/java/ladysnake/illuminations/client/Rainbowlluminations.java
  class Rainbowlluminations (line 10) | public class Rainbowlluminations {
    method init (line 16) | public static void init() {

FILE: src/main/java/ladysnake/illuminations/client/config/Config.java
  class Config (line 15) | public class Config {
    method entrySet (line 18) | @Override
    method load (line 46) | public static void load() {
    method parseProperty (line 116) | private static <T extends Enum<T>> void parseProperty(String property,...
    method parseProperty (line 124) | private static void parseProperty(String property, Consumer<Boolean> s...
    method parseProperty (line 132) | private static void parseProperty(String property, Consumer<Integer> s...
    method parseProperty (line 140) | private static void parseProperty(String biome, Consumer<BiomeSettings...
    method save (line 157) | public static void save() {
    method getHalloweenFeatures (line 167) | public static HalloweenFeatures getHalloweenFeatures() {
    method setHalloweenFeatures (line 171) | public static void setHalloweenFeatures(HalloweenFeatures value) {
    method getEyesInTheDarkSpawnRate (line 176) | public static EyesInTheDarkSpawnRate getEyesInTheDarkSpawnRate() {
    method setEyesInTheDarkSpawnRate (line 180) | public static void setEyesInTheDarkSpawnRate(EyesInTheDarkSpawnRate va...
    method getWillOWispsSpawnRate (line 185) | public static WillOWispsSpawnRate getWillOWispsSpawnRate() {
    method setWillOWispsSpawnRate (line 189) | public static void setWillOWispsSpawnRate(WillOWispsSpawnRate value) {
    method getChorusPetalsSpawnMultiplier (line 194) | public static int getChorusPetalsSpawnMultiplier() {
    method setChorusPetalsSpawnMultiplier (line 198) | public static void setChorusPetalsSpawnMultiplier(int value) {
    method getDensity (line 203) | public static int getDensity() {
    method setDensity (line 207) | public static void setDensity(int value) {
    method doesFireflySpawnAlways (line 212) | public static boolean doesFireflySpawnAlways() {
    method setFireflySpawnAlways (line 216) | public static void setFireflySpawnAlways(boolean value) {
    method doesFireflySpawnUnderground (line 221) | public static boolean doesFireflySpawnUnderground() {
    method setFireflySpawnUnderground (line 225) | public static void setFireflySpawnUnderground(boolean value) {
    method getFireflyWhiteAlpha (line 230) | public static int getFireflyWhiteAlpha() {
    method setFireflyWhiteAlpha (line 234) | public static void setFireflyWhiteAlpha(int value) {
    method getFireflyRainbow (line 239) | public static boolean getFireflyRainbow() {
    method setFireflyRainbow (line 243) | public static void setFireflyRainbow(boolean value) {
    method getViewAurasFP (line 248) | public static boolean getViewAurasFP() {
    method setViewAurasFP (line 252) | public static void setViewAurasFP(boolean value) {
    method isAutoUpdate (line 257) | public static boolean isAutoUpdate() {
    method setAutoUpdate (line 261) | public static void setAutoUpdate(boolean value) {
    method isDebugMode (line 266) | public static boolean isDebugMode() {
    method setDebugMode (line 270) | public static void setDebugMode(boolean value) {
    method isDisplayGreetingScreen (line 275) | public static boolean isDisplayGreetingScreen() {
    method setDisplayGreetingScreen (line 279) | public static void setDisplayGreetingScreen(boolean value) {
    method isDisplayDonationToast (line 284) | public static boolean isDisplayDonationToast() {
    method setDisplayDonationToast (line 288) | public static void setDisplayDonationToast(boolean value) {
    method getBiomeSettings (line 293) | public static Map<BiomeCategory, BiomeSettings> getBiomeSettings() {
    method getBiomeSettings (line 297) | public static BiomeSettings getBiomeSettings(BiomeCategory biome) {
    method setBiomeSettings (line 301) | public static void setBiomeSettings(BiomeCategory biome, BiomeSettings...
    method setFireflySettings (line 312) | public static void setFireflySettings(BiomeCategory biome, FireflySpaw...
    method setFireflyColorSettings (line 319) | public static void setFireflyColorSettings(BiomeCategory biome, int co...
    method setGlowwormSettings (line 326) | public static void setGlowwormSettings(BiomeCategory biome, GlowwormSp...
    method setPlanktonSettings (line 333) | public static void setPlanktonSettings(BiomeCategory biome, PlanktonSp...

FILE: src/main/java/ladysnake/illuminations/client/config/DefaultConfig.java
  class DefaultConfig (line 10) | public final class DefaultConfig {
    method DefaultConfig (line 75) | private DefaultConfig() {
    method getBiomeSettings (line 79) | public static BiomeSettings getBiomeSettings(BiomeCategory biome) {
    method getAuraSettings (line 83) | public static AuraSettings getAuraSettings(String aura) {

FILE: src/main/java/ladysnake/illuminations/client/data/AuraData.java
  method shouldAddParticle (line 10) | public boolean shouldAddParticle(Random random, int age) {

FILE: src/main/java/ladysnake/illuminations/client/data/AuraSettings.java
  method withSpawnRate (line 5) | public AuraSettings withSpawnRate(float value) {
  method withDelay (line 9) | public AuraSettings withDelay(int value) {

FILE: src/main/java/ladysnake/illuminations/client/data/BiomeSettings.java
  method withFireflySpawnRate (line 12) | public BiomeSettings withFireflySpawnRate(FireflySpawnRate value) {
  method withFireflyColor (line 16) | public BiomeSettings withFireflyColor(int value) {
  method withGlowwormSpawnRate (line 20) | public BiomeSettings withGlowwormSpawnRate(GlowwormSpawnRate value) {
  method withPlanktonSpawnRate (line 24) | public BiomeSettings withPlanktonSpawnRate(PlanktonSpawnRate value) {

FILE: src/main/java/ladysnake/illuminations/client/data/IlluminationData.java
  method shouldAddParticle (line 16) | public boolean shouldAddParticle(Random random) {

FILE: src/main/java/ladysnake/illuminations/client/data/OverheadData.java
  class OverheadData (line 10) | public class OverheadData {
    method OverheadData (line 14) | public OverheadData(Function<EntityRendererFactory.Context, OverheadMo...
    method createModel (line 19) | public OverheadModel createModel(EntityRendererFactory.Context ctx) {
    method getTexture (line 23) | public Identifier getTexture() {

FILE: src/main/java/ladysnake/illuminations/client/data/PlayerCosmeticData.java
  class PlayerCosmeticData (line 5) | public class PlayerCosmeticData {
    method PlayerCosmeticData (line 14) | public PlayerCosmeticData(JsonElement aura, JsonElement color, JsonEle...
    method getAura (line 46) | public String getAura() {
    method getColorRed (line 50) | public int getColorRed() {
    method getColorBlue (line 54) | public int getColorBlue() {
    method getColorGreen (line 58) | public int getColorGreen() {
    method isDrip (line 62) | public boolean isDrip() {
    method getOverhead (line 66) | public String getOverhead() {
    method getPet (line 70) | public String getPet() {

FILE: src/main/java/ladysnake/illuminations/client/enums/BiomeCategory.java
  type BiomeCategory (line 8) | public enum BiomeCategory {
    method BiomeCategory (line 49) | BiomeCategory(String dimension, Biome.Category fallback, String... bio...
    method getDimensions (line 57) | public static Set<Identifier> getDimensions() {
    method initializeDimensions (line 61) | private static Set<Identifier> initializeDimensions() {
    method initializeLookUp (line 69) | private static Map<Identifier, BiomeCategory> initializeLookUp() {
    method initializeFallbackLookUp (line 79) | private static Map<Biome.Category, BiomeCategory> initializeFallbackLo...
    method find (line 89) | public static BiomeCategory find(Identifier biome, Biome.Category biom...
    method getDimension (line 95) | public Identifier getDimension() {
    method getBiomes (line 99) | public Identifier[] getBiomes() {

FILE: src/main/java/ladysnake/illuminations/client/enums/EyesInTheDarkSpawnRate.java
  type EyesInTheDarkSpawnRate (line 3) | public enum EyesInTheDarkSpawnRate {
    method EyesInTheDarkSpawnRate (line 8) | EyesInTheDarkSpawnRate(float spawnRate) {

FILE: src/main/java/ladysnake/illuminations/client/enums/FireflySpawnRate.java
  type FireflySpawnRate (line 3) | public enum FireflySpawnRate {
    method FireflySpawnRate (line 11) | FireflySpawnRate(float spawnRate) {

FILE: src/main/java/ladysnake/illuminations/client/enums/GlowwormSpawnRate.java
  type GlowwormSpawnRate (line 3) | public enum GlowwormSpawnRate {
    method GlowwormSpawnRate (line 8) | GlowwormSpawnRate(float spawnRate) {

FILE: src/main/java/ladysnake/illuminations/client/enums/HalloweenFeatures.java
  type HalloweenFeatures (line 3) | public enum HalloweenFeatures {

FILE: src/main/java/ladysnake/illuminations/client/enums/PlanktonSpawnRate.java
  type PlanktonSpawnRate (line 3) | public enum PlanktonSpawnRate {
    method PlanktonSpawnRate (line 8) | PlanktonSpawnRate(float spawnRate) {

FILE: src/main/java/ladysnake/illuminations/client/enums/WillOWispsSpawnRate.java
  type WillOWispsSpawnRate (line 3) | public enum WillOWispsSpawnRate {
    method WillOWispsSpawnRate (line 8) | WillOWispsSpawnRate(float spawnRate) {

FILE: src/main/java/ladysnake/illuminations/client/gui/AutoUpdateGreetingScreen.java
  class AutoUpdateGreetingScreen (line 12) | @Environment(EnvType.CLIENT)
    method AutoUpdateGreetingScreen (line 16) | public AutoUpdateGreetingScreen(Screen parent) {
    method row (line 21) | protected static int row(int index) {
    method init (line 25) | protected void init() {
    method removed (line 39) | public void removed() {
    method render (line 44) | public void render(MatrixStack matrices, int mouseX, int mouseY, float...
    method onClose (line 53) | @Override

FILE: src/main/java/ladysnake/illuminations/client/gui/DonateToast.java
  class DonateToast (line 16) | public class DonateToast implements Toast {
    method add (line 19) | public static void add() {
    method draw (line 27) | @Override
    method getType (line 39) | @Override
    method getWidth (line 44) | @Override
    method getHeight (line 49) | @Override

FILE: src/main/java/ladysnake/illuminations/client/gui/UpdateToast.java
  class UpdateToast (line 14) | public class UpdateToast implements Toast {
    method add (line 17) | public static void add() {
    method draw (line 25) | @Override
    method getType (line 37) | @Override
    method getWidth (line 42) | @Override
    method getHeight (line 47) | @Override

FILE: src/main/java/ladysnake/illuminations/client/particle/ChorusPetalParticle.java
  class ChorusPetalParticle (line 15) | public class ChorusPetalParticle extends SpriteBillboardParticle {
    method ChorusPetalParticle (line 21) | public ChorusPetalParticle(ClientWorld world, double x, double y, doub...
    method buildGeometry (line 42) | @Override
    method getType (line 83) | public ParticleTextureSheet getType() {
    method tick (line 87) | public void tick() {
    class DefaultFactory (line 127) | @Environment(EnvType.CLIENT)
      method DefaultFactory (line 131) | public DefaultFactory(SpriteProvider spriteProvider) {
      method createParticle (line 135) | public Particle createParticle(DefaultParticleType defaultParticleTy...

FILE: src/main/java/ladysnake/illuminations/client/particle/EmberParticle.java
  class EmberParticle (line 16) | public class EmberParticle extends SpriteBillboardParticle {
    method EmberParticle (line 25) | public EmberParticle(ClientWorld world, double x, double y, double z, ...
    method getType (line 42) | public ParticleTextureSheet getType() {
    method buildGeometry (line 46) | @Override
    method tick (line 86) | public void tick() {
    method selectBlockTarget (line 136) | private void selectBlockTarget() {
    method getTargetPosition (line 154) | public BlockPos getTargetPosition() {
    class DefaultFactory (line 158) | @Environment(EnvType.CLIENT)
      method DefaultFactory (line 162) | public DefaultFactory(SpriteProvider spriteProvider) {
      method createParticle (line 166) | public Particle createParticle(DefaultParticleType defaultParticleTy...

FILE: src/main/java/ladysnake/illuminations/client/particle/EyesParticle.java
  class EyesParticle (line 20) | public class EyesParticle extends SpriteBillboardParticle {
    method EyesParticle (line 25) | public EyesParticle(ClientWorld world, double x, double y, double z, d...
    method buildGeometry (line 39) | @Override
    method getType (line 84) | public ParticleTextureSheet getType() {
    method tick (line 88) | public void tick() {
    class DefaultFactory (line 121) | @Environment(EnvType.CLIENT)
      method DefaultFactory (line 125) | public DefaultFactory(SpriteProvider spriteProvider) {
      method createParticle (line 129) | public Particle createParticle(DefaultParticleType defaultParticleTy...

FILE: src/main/java/ladysnake/illuminations/client/particle/FireflyParticle.java
  class FireflyParticle (line 24) | public class FireflyParticle extends SpriteBillboardParticle {
    method FireflyParticle (line 36) | public FireflyParticle(ClientWorld world, double x, double y, double z...
    method getType (line 77) | public ParticleTextureSheet getType() {
    method buildGeometry (line 81) | @Override
    method tick (line 128) | public void tick() {
    method selectBlockTarget (line 177) | private void selectBlockTarget() {
    method getTargetPosition (line 221) | public BlockPos getTargetPosition() {
    method getMostLitBlockAround (line 225) | private BlockPos getMostLitBlockAround() {
    class DefaultFactory (line 247) | @Environment(EnvType.CLIENT)
      method DefaultFactory (line 251) | public DefaultFactory(SpriteProvider spriteProvider) {
      method createParticle (line 255) | public Particle createParticle(DefaultParticleType defaultParticleTy...

FILE: src/main/java/ladysnake/illuminations/client/particle/GlowwormParticle.java
  class GlowwormParticle (line 16) | public class GlowwormParticle extends SpriteBillboardParticle {
    method GlowwormParticle (line 30) | private GlowwormParticle(ClientWorld world, double x, double y, double...
    method getType (line 51) | public ParticleTextureSheet getType() {
    method buildGeometry (line 55) | @Override
    method tick (line 102) | public void tick() {
    method selectBlockTarget (line 161) | private void selectBlockTarget() {
    method initOnCeiling (line 171) | private void initOnCeiling() {
    method getTargetPosition (line 186) | public BlockPos getTargetPosition() {
    class DefaultFactory (line 190) | @Environment(EnvType.CLIENT)
      method DefaultFactory (line 194) | public DefaultFactory(SpriteProvider spriteProvider) {
      method createParticle (line 198) | public Particle createParticle(DefaultParticleType defaultParticleTy...

FILE: src/main/java/ladysnake/illuminations/client/particle/PlanktonParticle.java
  class PlanktonParticle (line 18) | public class PlanktonParticle extends SpriteBillboardParticle {
    method PlanktonParticle (line 29) | private PlanktonParticle(ClientWorld world, double x, double y, double...
    method getType (line 44) | public ParticleTextureSheet getType() {
    method buildGeometry (line 48) | @Override
    method tick (line 95) | public void tick() {
    method selectBlockTarget (line 145) | private void selectBlockTarget() {
    method getTargetPosition (line 169) | public BlockPos getTargetPosition() {
    class DefaultFactory (line 173) | @Environment(EnvType.CLIENT)
      method DefaultFactory (line 177) | public DefaultFactory(SpriteProvider spriteProvider) {
      method createParticle (line 181) | public Particle createParticle(DefaultParticleType defaultParticleTy...

FILE: src/main/java/ladysnake/illuminations/client/particle/PoltergeistParticle.java
  class PoltergeistParticle (line 32) | public class PoltergeistParticle extends WillOWispParticle {
    method PoltergeistParticle (line 33) | protected PoltergeistParticle(ClientWorld world, double x, double y, d...
    method getType (line 37) | @Override
    method buildGeometry (line 42) | @Override
    method tick (line 63) | @Override
    method move (line 134) | @Override
    method getTargetPosition (line 161) | public BlockPos getTargetPosition() {
    method selectBlockTarget (line 165) | private void selectBlockTarget() {
    class DefaultFactory (line 181) | @Environment(EnvType.CLIENT)
      method DefaultFactory (line 191) | public DefaultFactory(SpriteProvider spriteProvider, Identifier text...
      method createParticle (line 201) | @Nullable

FILE: src/main/java/ladysnake/illuminations/client/particle/PrismarineCrystalParticle.java
  class PrismarineCrystalParticle (line 16) | public class PrismarineCrystalParticle extends SpriteBillboardParticle {
    method PrismarineCrystalParticle (line 23) | public PrismarineCrystalParticle(ClientWorld world, double x, double y...
    method buildGeometry (line 46) | @Override
    method getType (line 89) | public ParticleTextureSheet getType() {
    method tick (line 93) | public void tick() {
    class DefaultFactory (line 134) | @Environment(EnvType.CLIENT)
      method DefaultFactory (line 138) | public DefaultFactory(SpriteProvider spriteProvider) {
      method createParticle (line 142) | public Particle createParticle(DefaultParticleType defaultParticleTy...

FILE: src/main/java/ladysnake/illuminations/client/particle/PumpkinSpiritParticle.java
  class PumpkinSpiritParticle (line 24) | public class PumpkinSpiritParticle extends WillOWispParticle {
    method PumpkinSpiritParticle (line 25) | protected PumpkinSpiritParticle(ClientWorld world, double x, double y,...
    method tick (line 30) | @Override
    method move (line 103) | @Override
    method getTargetPosition (line 130) | public BlockPos getTargetPosition() {
    method selectBlockTarget (line 134) | private void selectBlockTarget() {
    class DefaultFactory (line 150) | @Environment(EnvType.CLIENT)
      method DefaultFactory (line 160) | public DefaultFactory(SpriteProvider spriteProvider, Identifier text...
      method createParticle (line 170) | @Nullable

FILE: src/main/java/ladysnake/illuminations/client/particle/WillOWispParticle.java
  class WillOWispParticle (line 33) | public class WillOWispParticle extends Particle {
    method WillOWispParticle (line 51) | protected WillOWispParticle(ClientWorld world, double x, double y, dou...
    method getType (line 69) | @Override
    method buildGeometry (line 74) | @Override
    method tick (line 95) | @Override
    method move (line 166) | @Override
    method getTargetPosition (line 193) | public BlockPos getTargetPosition() {
    method selectBlockTarget (line 197) | private void selectBlockTarget() {
    class DefaultFactory (line 213) | @Environment(EnvType.CLIENT)
      method DefaultFactory (line 223) | public DefaultFactory(SpriteProvider spriteProvider, Identifier text...
      method createParticle (line 233) | @Nullable

FILE: src/main/java/ladysnake/illuminations/client/particle/WispTrailParticle.java
  class WispTrailParticle (line 16) | public class WispTrailParticle extends SpriteBillboardParticle {
    method WispTrailParticle (line 23) | private WispTrailParticle(ClientWorld world, double x, double y, doubl...
    method getType (line 38) | public ParticleTextureSheet getType() {
    method tick (line 42) | @Override
    method buildGeometry (line 74) | @Override
    class Factory (line 113) | @Environment(EnvType.CLIENT)
      method Factory (line 117) | public Factory(SpriteProvider spriteProvider) {
      method createParticle (line 121) | public Particle createParticle(WispTrailParticleEffect wispTrailPart...

FILE: src/main/java/ladysnake/illuminations/client/particle/WispTrailParticleEffect.java
  class WispTrailParticleEffect (line 17) | public class WispTrailParticleEffect implements ParticleEffect {
    method read (line 34) | public WispTrailParticleEffect read(ParticleType<WispTrailParticleEffe...
    method read (line 50) | public WispTrailParticleEffect read(ParticleType<WispTrailParticleEffe...
    method WispTrailParticleEffect (line 61) | public WispTrailParticleEffect(float red, float green, float blue, flo...
    method write (line 70) | public void write(PacketByteBuf buf) {
    method asString (line 79) | public String asString() {
    method getType (line 83) | public ParticleType<WispTrailParticleEffect> getType() {
    method getRed (line 87) | @Environment(EnvType.CLIENT)
    method getGreen (line 92) | @Environment(EnvType.CLIENT)
    method getBlue (line 97) | @Environment(EnvType.CLIENT)
    method getRedEvolution (line 102) | @Environment(EnvType.CLIENT)
    method getGreenEvolution (line 107) | @Environment(EnvType.CLIENT)
    method getBlueEvolution (line 112) | @Environment(EnvType.CLIENT)

FILE: src/main/java/ladysnake/illuminations/client/particle/aura/AutumnLeavesParticle.java
  class AutumnLeavesParticle (line 17) | public class AutumnLeavesParticle extends SpriteBillboardParticle {
    method AutumnLeavesParticle (line 26) | public AutumnLeavesParticle(ClientWorld world, double x, double y, dou...
    method buildGeometry (line 44) | @Override
    method getType (line 83) | public ParticleTextureSheet getType() {
    method tick (line 87) | public void tick() {
    class DefaultFactory (line 113) | @Environment(EnvType.CLIENT)
      method DefaultFactory (line 117) | public DefaultFactory(SpriteProvider spriteProvider) {
      method createParticle (line 121) | public Particle createParticle(DefaultParticleType defaultParticleTy...

FILE: src/main/java/ladysnake/illuminations/client/particle/aura/ChorusAuraParticle.java
  class ChorusAuraParticle (line 14) | public class ChorusAuraParticle extends ChorusPetalParticle {
    method ChorusAuraParticle (line 15) | public ChorusAuraParticle(ClientWorld world, double x, double y, doubl...
    method tick (line 25) | public void tick() {
    class DefaultFactory (line 65) | @Environment(EnvType.CLIENT)
      method DefaultFactory (line 69) | public DefaultFactory(SpriteProvider spriteProvider) {
      method createParticle (line 73) | public Particle createParticle(DefaultParticleType defaultParticleTy...

FILE: src/main/java/ladysnake/illuminations/client/particle/aura/ConfettiParticle.java
  class ConfettiParticle (line 16) | public class ConfettiParticle extends SpriteBillboardParticle {
    method ConfettiParticle (line 27) | public ConfettiParticle(ClientWorld world, double x, double y, double ...
    method getType (line 58) | public ParticleTextureSheet getType() {
    method buildGeometry (line 62) | @Override
    method tick (line 111) | public void tick() {
    class DefaultFactory (line 147) | @Environment(EnvType.CLIENT)
      method DefaultFactory (line 151) | public DefaultFactory(SpriteProvider spriteProvider) {
      method createParticle (line 155) | public Particle createParticle(DefaultParticleType defaultParticleTy...

FILE: src/main/java/ladysnake/illuminations/client/particle/aura/GhostlyAuraParticle.java
  class GhostlyAuraParticle (line 19) | public class GhostlyAuraParticle extends SpriteBillboardParticle {
    method GhostlyAuraParticle (line 30) | public GhostlyAuraParticle(ClientWorld world, double x, double y, doub...
    method buildGeometry (line 50) | @Override
    method getType (line 94) | public ParticleTextureSheet getType() {
    method tick (line 98) | public void tick() {
    class DefaultFactory (line 120) | @Environment(EnvType.CLIENT)
      method DefaultFactory (line 124) | public DefaultFactory(SpriteProvider spriteProvider) {
      method createParticle (line 128) | public Particle createParticle(DefaultParticleType defaultParticleTy...

FILE: src/main/java/ladysnake/illuminations/client/particle/aura/GoldenrodAuraParticle.java
  class GoldenrodAuraParticle (line 14) | public class GoldenrodAuraParticle extends ChorusPetalParticle {
    method GoldenrodAuraParticle (line 17) | public GoldenrodAuraParticle(ClientWorld world, double x, double y, do...
    method get_rando (line 29) | public double get_rando() {
    method tick (line 39) | public void tick() {
    class DefaultFactory (line 87) | @Environment(EnvType.CLIENT)
      method DefaultFactory (line 91) | public DefaultFactory(SpriteProvider spriteProvider) {
      method createParticle (line 95) | public Particle createParticle(DefaultParticleType defaultParticleTy...

FILE: src/main/java/ladysnake/illuminations/client/particle/aura/PrismarineAuraParticle.java
  class PrismarineAuraParticle (line 14) | public class PrismarineAuraParticle extends PrismarineCrystalParticle {
    method PrismarineAuraParticle (line 15) | public PrismarineAuraParticle(ClientWorld world, double x, double y, d...
    method tick (line 23) | public void tick() {
    class DefaultFactory (line 57) | @Environment(EnvType.CLIENT)
      method DefaultFactory (line 61) | public DefaultFactory(SpriteProvider spriteProvider) {
      method createParticle (line 65) | public Particle createParticle(DefaultParticleType defaultParticleTy...

FILE: src/main/java/ladysnake/illuminations/client/particle/aura/PrismaticConfettiParticle.java
  class PrismaticConfettiParticle (line 17) | public class PrismaticConfettiParticle extends ConfettiParticle {
    method PrismaticConfettiParticle (line 18) | public PrismaticConfettiParticle(ClientWorld world, double x, double y...
    class DefaultFactory (line 33) | @Environment(EnvType.CLIENT)
      method DefaultFactory (line 37) | public DefaultFactory(SpriteProvider spriteProvider) {
      method createParticle (line 41) | public Particle createParticle(DefaultParticleType defaultParticleTy...

FILE: src/main/java/ladysnake/illuminations/client/particle/aura/SculkTendrilParticle.java
  class SculkTendrilParticle (line 14) | public class SculkTendrilParticle extends SpriteBillboardParticle {
    method SculkTendrilParticle (line 19) | public SculkTendrilParticle(ClientWorld world, double x, double y, dou...
    method buildGeometry (line 30) | @Override
    method tick (line 59) | @Override
    method repositionFromBoundingBox (line 100) | @Override
    method getType (line 108) | public ParticleTextureSheet getType() {
    class DefaultFactory (line 112) | @Environment(EnvType.CLIENT)
      method DefaultFactory (line 116) | public DefaultFactory(SpriteProvider spriteProvider) {
      method createParticle (line 120) | public Particle createParticle(DefaultParticleType defaultParticleTy...

FILE: src/main/java/ladysnake/illuminations/client/particle/aura/ShadowbringerParticle.java
  class ShadowbringerParticle (line 14) | public class ShadowbringerParticle extends ChorusPetalParticle {
    method ShadowbringerParticle (line 20) | public ShadowbringerParticle(ClientWorld world, double x, double y, do...
    method tick (line 37) | public void tick() {
    class DefaultFactory (line 74) | @Environment(EnvType.CLIENT)
      method DefaultFactory (line 78) | public DefaultFactory(SpriteProvider spriteProvider) {
      method createParticle (line 82) | public Particle createParticle(DefaultParticleType defaultParticleTy...

FILE: src/main/java/ladysnake/illuminations/client/particle/aura/TwilightFireflyParticle.java
  class TwilightFireflyParticle (line 23) | public class TwilightFireflyParticle extends FireflyParticle {
    method TwilightFireflyParticle (line 26) | public TwilightFireflyParticle(ClientWorld world, double x, double y, ...
    method getWanderingDistance (line 46) | public static double getWanderingDistance(Random random) {
    method buildGeometry (line 50) | @Override
    method tick (line 98) | @Override
    method selectBlockTarget (line 153) | private void selectBlockTarget() {
    class DefaultFactory (line 177) | @Environment(EnvType.CLIENT)
      method DefaultFactory (line 181) | public DefaultFactory(SpriteProvider spriteProvider) {
      method createParticle (line 185) | public Particle createParticle(DefaultParticleType defaultParticleTy...

FILE: src/main/java/ladysnake/illuminations/client/particle/pet/JackoParticle.java
  class JackoParticle (line 15) | public class JackoParticle extends PetParticle {
    method JackoParticle (line 18) | public JackoParticle(ClientWorld world, double x, double y, double z, ...
    method buildGeometry (line 24) | @Override
    method tick (line 73) | @Override
    class DefaultFactory (line 87) | @Environment(EnvType.CLIENT)
      method DefaultFactory (line 91) | public DefaultFactory(SpriteProvider spriteProvider) {
      method createParticle (line 95) | public Particle createParticle(DefaultParticleType defaultParticleTy...

FILE: src/main/java/ladysnake/illuminations/client/particle/pet/PetParticle.java
  class PetParticle (line 23) | public class PetParticle extends FireflyParticle {
    method PetParticle (line 29) | public PetParticle(ClientWorld world, double x, double y, double z, do...
    method buildGeometry (line 45) | @Override
    method getType (line 84) | public ParticleTextureSheet getType() {
    method tick (line 88) | @Override
    class DefaultFactory (line 112) | @Environment(EnvType.CLIENT)
      method DefaultFactory (line 116) | public DefaultFactory(SpriteProvider spriteProvider) {
      method createParticle (line 120) | public Particle createParticle(DefaultParticleType defaultParticleTy...

FILE: src/main/java/ladysnake/illuminations/client/particle/pet/PlayerLanternParticle.java
  class PlayerLanternParticle (line 25) | public class PlayerLanternParticle extends Particle {
    method PlayerLanternParticle (line 35) | protected PlayerLanternParticle(ClientWorld world, double x, double y,...
    method getType (line 55) | @Override
    method buildGeometry (line 60) | @Override
    method tick (line 81) | @Override
    class DefaultFactory (line 108) | @Environment(EnvType.CLIENT)
      method DefaultFactory (line 115) | public DefaultFactory(SpriteProvider spriteProvider, Identifier text...
      method createParticle (line 122) | @Nullable

FILE: src/main/java/ladysnake/illuminations/client/particle/pet/PlayerWispParticle.java
  class PlayerWispParticle (line 17) | public class PlayerWispParticle extends WillOWispParticle {
    method PlayerWispParticle (line 20) | protected PlayerWispParticle(ClientWorld world, double x, double y, do...
    method tick (line 36) | @Override
    class DefaultFactory (line 69) | @Environment(EnvType.CLIENT)
      method DefaultFactory (line 79) | public DefaultFactory(SpriteProvider spriteProvider, Identifier text...
      method createParticle (line 89) | @Nullable

FILE: src/main/java/ladysnake/illuminations/client/particle/pet/PrideHeartParticle.java
  class PrideHeartParticle (line 15) | public class PrideHeartParticle extends PlayerLanternParticle {
    method PrideHeartParticle (line 16) | protected PrideHeartParticle(ClientWorld world, double x, double y, do...
    method tick (line 22) | @Override
    class DefaultFactory (line 27) | @Environment(EnvType.CLIENT)
      method DefaultFactory (line 34) | public DefaultFactory(SpriteProvider spriteProvider, Identifier text...
      method createParticle (line 41) | @Nullable

FILE: src/main/java/ladysnake/illuminations/client/render/GlowyRenderLayer.java
  class GlowyRenderLayer (line 10) | public class GlowyRenderLayer extends RenderLayer {
    method GlowyRenderLayer (line 11) | public GlowyRenderLayer(String name, VertexFormat vertexFormat, Vertex...
    method get (line 15) | public static RenderLayer get(Identifier texture) {

FILE: src/main/java/ladysnake/illuminations/client/render/entity/feature/OverheadFeatureRenderer.java
  class OverheadFeatureRenderer (line 20) | public class OverheadFeatureRenderer extends FeatureRenderer<AbstractCli...
    method OverheadFeatureRenderer (line 23) | public OverheadFeatureRenderer(FeatureRendererContext<AbstractClientPl...
    method render (line 29) | @Override

FILE: src/main/java/ladysnake/illuminations/client/render/entity/model/hat/CrownModel.java
  class CrownModel (line 11) | public class CrownModel extends OverheadModel {
    method CrownModel (line 14) | public CrownModel(EntityRendererFactory.Context ctx) {
    method getTexturedModelData (line 28) | public static TexturedModelData getTexturedModelData() {
    method render (line 40) | @Override
    method setRotationAngle (line 45) | public void setRotationAngle(ModelPart bone, float x, float y, float z) {

FILE: src/main/java/ladysnake/illuminations/client/render/entity/model/hat/HaloModel.java
  class HaloModel (line 11) | public class HaloModel extends OverheadModel {
    method HaloModel (line 14) | public HaloModel(EntityRendererFactory.Context ctx) {
    method getTexturedModelData (line 18) | public static TexturedModelData getTexturedModelData() {
    method render (line 26) | @Override
    method setRotationAngle (line 31) | public void setRotationAngle(ModelPart bone, float x, float y, float z) {

FILE: src/main/java/ladysnake/illuminations/client/render/entity/model/hat/HornsModel.java
  class HornsModel (line 11) | public class HornsModel extends OverheadModel {
    method HornsModel (line 14) | public HornsModel(EntityRendererFactory.Context ctx) {
    method getTexturedModelData (line 26) | public static TexturedModelData getTexturedModelData() {
    method render (line 37) | @Override
    method setRotationAngle (line 42) | public void setRotationAngle(ModelPart bone, float x, float y, float z) {

FILE: src/main/java/ladysnake/illuminations/client/render/entity/model/hat/OverheadModel.java
  class OverheadModel (line 11) | public abstract class OverheadModel extends Model {
    method OverheadModel (line 14) | public OverheadModel(EntityRendererFactory.Context ctx, EntityModelLay...
    method render (line 19) | @Override

FILE: src/main/java/ladysnake/illuminations/client/render/entity/model/hat/TiaraModel.java
  class TiaraModel (line 11) | public class TiaraModel extends OverheadModel {
    method TiaraModel (line 14) | public TiaraModel(EntityRendererFactory.Context ctx) {
    method getTexturedModelData (line 28) | public static TexturedModelData getTexturedModelData() {
    method render (line 40) | @Override
    method setRotationAngle (line 45) | public void setRotationAngle(ModelPart bone, float x, float y, float z) {

FILE: src/main/java/ladysnake/illuminations/client/render/entity/model/hat/VoidheartTiaraModel.java
  class VoidheartTiaraModel (line 11) | public class VoidheartTiaraModel extends OverheadModel {
    method VoidheartTiaraModel (line 14) | public VoidheartTiaraModel(EntityRendererFactory.Context ctx) {
    method getTexturedModelData (line 28) | public static TexturedModelData getTexturedModelData() {
    method render (line 40) | @Override
    method setRotationAngle (line 45) | public void setRotationAngle(ModelPart bone, float x, float y, float z) {

FILE: src/main/java/ladysnake/illuminations/client/render/entity/model/hat/WreathModel.java
  class WreathModel (line 11) | public class WreathModel extends OverheadModel {
    method WreathModel (line 14) | public WreathModel(EntityRendererFactory.Context ctx) {
    method getTexturedModelData (line 18) | public static TexturedModelData getTexturedModelData() {
    method render (line 26) | @Override

FILE: src/main/java/ladysnake/illuminations/client/render/entity/model/pet/LanternModel.java
  class LanternModel (line 16) | public class LanternModel extends Model {
    method LanternModel (line 21) | public LanternModel(ModelPart root) {
    method getTexturedModelData (line 26) | public static TexturedModelData getTexturedModelData() {
    method render (line 42) | @Override

FILE: src/main/java/ladysnake/illuminations/client/render/entity/model/pet/PrideHeartModel.java
  class PrideHeartModel (line 16) | public class PrideHeartModel extends Model {
    method PrideHeartModel (line 21) | public PrideHeartModel(ModelPart root) {
    method getTexturedModelData (line 26) | public static TexturedModelData getTexturedModelData() {
    method render (line 49) | @Override

FILE: src/main/java/ladysnake/illuminations/client/render/entity/model/pet/WillOWispModel.java
  class WillOWispModel (line 16) | public class WillOWispModel extends Model {
    method WillOWispModel (line 21) | public WillOWispModel(ModelPart root) {
    method getTexturedModelData (line 26) | public static TexturedModelData getTexturedModelData() {
    method render (line 39) | @Override

FILE: src/main/java/ladysnake/illuminations/mixin/BlockMixin.java
  class BlockMixin (line 17) | @Mixin(Block.class)
    method getDefaultState (line 19) | @Shadow
    method illuminations$randomDisplayTick (line 22) | @Inject(method = "randomDisplayTick", at = @At("RETURN"))

FILE: src/main/java/ladysnake/illuminations/mixin/CarvedPumpkinBlockMixin.java
  class CarvedPumpkinBlockMixin (line 18) | @Mixin(CarvedPumpkinBlock.class)
    method illuminations$randomDisplayTick (line 20) | @Override

FILE: src/main/java/ladysnake/illuminations/mixin/ChorusFlowerBlockMixin.java
  class ChorusFlowerBlockMixin (line 14) | @Mixin(ChorusFlowerBlock.class)
    method illuminations$randomDisplayTick (line 16) | @Override

FILE: src/main/java/ladysnake/illuminations/mixin/ClientWorldMixin.java
  class ClientWorldMixin (line 32) | @Mixin(ClientWorld.class)
    method ClientWorldMixin (line 38) | protected ClientWorldMixin(MutableWorldProperties properties, Registry...
    method randomBlockDisplayTick (line 42) | @SuppressWarnings("InvalidInjectorMethodSignature")
    method spawnParticles (line 68) | private void spawnParticles(BlockPos.Mutable pos, ImmutableSet<Illumin...
    method addPlayer (line 77) | @Inject(method = "addPlayer", at = @At(value = "RETURN"))

FILE: src/main/java/ladysnake/illuminations/mixin/LanternBlockMixin.java
  class LanternBlockMixin (line 14) | @Mixin(LanternBlock.class)
    method illuminations$randomDisplayTick (line 16) | @Override

FILE: src/main/java/ladysnake/illuminations/mixin/LivingEntityMixin.java
  class LivingEntityMixin (line 22) | @Mixin(LivingEntity.class)
    method LivingEntityMixin (line 24) | public LivingEntityMixin(EntityType<?> type, World world) {
    method isUndead (line 28) | @Shadow
    method onDeath (line 31) | @Inject(method = "onDeath", at = @At("RETURN"))

FILE: src/main/java/ladysnake/illuminations/mixin/ParticleManagerMixin.java
  class ParticleManagerMixin (line 22) | @Mixin(ParticleManager.class)
    method addParticle (line 30) | @Shadow
    method addBlockBreakParticles (line 33) | @Inject(method = "addBlockBreakParticles", at = @At(value = "RETURN"))

FILE: src/main/java/ladysnake/illuminations/mixin/PlayerEntityMixin.java
  class PlayerEntityMixin (line 18) | @Mixin(PlayerEntity.class)
    method PlayerEntityMixin (line 20) | protected PlayerEntityMixin(EntityType<? extends LivingEntity> entityT...
    method tick (line 24) | @Inject(method = "tick", at = @At("RETURN"))

FILE: src/main/java/ladysnake/illuminations/mixin/RenderLayerAccessor.java
  type RenderLayerAccessor (line 8) | @Mixin(RenderLayer.class)
    method invokeOf (line 10) | @Invoker

FILE: src/main/java/ladysnake/illuminations/mixin/SkullBlockMixin.java
  class SkullBlockMixin (line 18) | @Mixin(SkullBlock.class)
    method illuminations$randomDisplayTick (line 20) | @Override

FILE: src/main/java/ladysnake/illuminations/mixin/TitleScreenMixin.java
  class TitleScreenMixin (line 18) | @Mixin(TitleScreen.class)
    method render (line 20) | @Inject(at = @At(value = "RETURN"), method = "render")

FILE: src/main/java/ladysnake/illuminations/mixin/jeb/FeatureRendererMixin.java
  class FeatureRendererMixin (line 19) | @Mixin(FeatureRenderer.class)
    method captureEntity (line 24) | @Inject(method = "renderModel", at = @At("HEAD"))
    method replaceRenderLayer (line 29) | @ModifyArg(method = "renderModel", at = @At(value = "INVOKE", target =...

FILE: src/main/java/ladysnake/illuminations/mixin/jeb/LivingEntityRendererMixin.java
  class LivingEntityRendererMixin (line 14) | @Mixin(LivingEntityRenderer.class)
    method getRenderLayer (line 16) | @Nullable

FILE: src/main/java/ladysnake/illuminations/updater/IlluminationsUpdater.java
  class IlluminationsUpdater (line 27) | public class IlluminationsUpdater {
    method init (line 33) | public static void init() {
Condensed preview — 188 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (467K chars).
[
  {
    "path": ".gitignore",
    "chars": 114,
    "preview": "# gradle\n\n.gradle/\nbuild/\nout/\n\n# idea\n\nbin/\n.idea/\n.settings/\n.project\n*.iml\n*.ipr\n*.iws\n*.launch\n\n# fabric\n\nrun/"
  },
  {
    "path": "CHANGELOG.md",
    "chars": 16720,
    "preview": "# Illuminations - Changelog:\n\n### Illuminations 1.10.2 - 1.18\n- Update to Minecraft 1.18\n\n### Illuminations 1.10.1 - 1.1"
  },
  {
    "path": "LICENSE-ART",
    "chars": 54,
    "preview": "All Rights Reserved\nCopyright (C) 2017-2021 Ladysnake\n"
  },
  {
    "path": "LICENSE-CODE",
    "chars": 36258,
    "preview": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
  },
  {
    "path": "README.md",
    "chars": 6750,
    "preview": "# Illuminations\n\n**Illuminations** is a client sided Minecraft Fabric mod that adds multiple ambient particles in order "
  },
  {
    "path": "build.gradle",
    "chars": 8836,
    "preview": "plugins {\n    id 'fabric-loom' version '0.10-SNAPSHOT'\n    id 'maven-publish'\n    id 'com.matthewprenger.cursegradle' ve"
  },
  {
    "path": "gradle/wrapper/gradle-wrapper.properties",
    "chars": 200,
    "preview": "distributionBase=GRADLE_USER_HOME\ndistributionPath=wrapper/dists\ndistributionUrl=https\\://services.gradle.org/distributi"
  },
  {
    "path": "gradle.properties",
    "chars": 691,
    "preview": "# Done to increase the memory available to gradle.\norg.gradle.jvmargs=-Xmx1G\n\n# Fabric Properties\nminecraft_version=1.18"
  },
  {
    "path": "gradlew",
    "chars": 5917,
    "preview": "#!/usr/bin/env sh\n\n#\n# Copyright 2015 the original author or authors.\n#\n# Licensed under the Apache License, Version 2.0"
  },
  {
    "path": "gradlew.bat",
    "chars": 2842,
    "preview": "@rem\n@rem Copyright 2015 the original author or authors.\n@rem\n@rem Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "logs/latest.log",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "release.gradle",
    "chars": 4627,
    "preview": "task checkGitStatus() {\n    group = 'publishing'\n    description = 'Checks that the git repository is in a state suitabl"
  },
  {
    "path": "settings.gradle",
    "chars": 195,
    "preview": "pluginManagement {\n    repositories {\n        jcenter()\n        maven {\n            name = 'Fabric'\n            url = 'h"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/IlluminationsMixinConfigPlugin.java",
    "chars": 1346,
    "preview": "package ladysnake.illuminations;\n\nimport net.fabricmc.loader.api.FabricLoader;\nimport org.objectweb.asm.tree.ClassNode;\n"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/Illuminations.java",
    "chars": 34903,
    "preview": "package ladysnake.illuminations.client;\n\nimport com.google.common.collect.ImmutableMap;\nimport com.google.common.collect"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/IlluminationsModMenuIntegration.java",
    "chars": 14806,
    "preview": "package ladysnake.illuminations.client;\n\nimport com.google.common.base.CaseFormat;\nimport com.terraformersmc.modmenu.api"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/Rainbowlluminations.java",
    "chars": 963,
    "preview": "package ladysnake.illuminations.client;\n\nimport ladysnake.satin.api.event.EntitiesPreRenderCallback;\nimport ladysnake.sa"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/config/Config.java",
    "chars": 15773,
    "preview": "package ladysnake.illuminations.client.config;\n\nimport com.google.common.base.CaseFormat;\nimport ladysnake.illuminations"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/config/DefaultConfig.java",
    "chars": 6097,
    "preview": "package ladysnake.illuminations.client.config;\n\nimport com.google.common.collect.ImmutableMap;\nimport ladysnake.illumina"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/data/AuraData.java",
    "chars": 566,
    "preview": "package ladysnake.illuminations.client.data;\n\nimport net.minecraft.particle.DefaultParticleType;\n\nimport java.util.Rando"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/data/AuraSettings.java",
    "chars": 317,
    "preview": "package ladysnake.illuminations.client.data;\n\npublic record AuraSettings(float spawnRate, int delay) {\n\n    public AuraS"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/data/BiomeSettings.java",
    "chars": 1155,
    "preview": "package ladysnake.illuminations.client.data;\n\nimport ladysnake.illuminations.client.enums.FireflySpawnRate;\nimport ladys"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/data/IlluminationData.java",
    "chars": 800,
    "preview": "package ladysnake.illuminations.client.data;\n\nimport ladysnake.illuminations.client.config.Config;\nimport net.minecraft."
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/data/OverheadData.java",
    "chars": 893,
    "preview": "package ladysnake.illuminations.client.data;\n\nimport ladysnake.illuminations.client.Illuminations;\nimport ladysnake.illu"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/data/PlayerCosmeticData.java",
    "chars": 1853,
    "preview": "package ladysnake.illuminations.client.data;\n\nimport com.google.gson.JsonElement;\n\npublic class PlayerCosmeticData {\n   "
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/enums/BiomeCategory.java",
    "chars": 6317,
    "preview": "package ladysnake.illuminations.client.enums;\n\nimport net.minecraft.util.Identifier;\nimport net.minecraft.world.biome.Bi"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/enums/EyesInTheDarkSpawnRate.java",
    "chars": 263,
    "preview": "package ladysnake.illuminations.client.enums;\n\npublic enum EyesInTheDarkSpawnRate {\n    LOW(0.00002f), MEDIUM(0.00010f),"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/enums/FireflySpawnRate.java",
    "chars": 276,
    "preview": "package ladysnake.illuminations.client.enums;\n\npublic enum FireflySpawnRate {\n    DISABLE(0f),\n    LOW(0.00002f),\n    ME"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/enums/GlowwormSpawnRate.java",
    "chars": 266,
    "preview": "package ladysnake.illuminations.client.enums;\n\npublic enum GlowwormSpawnRate {\n    DISABLE(0f), LOW(0.00004f), MEDIUM(0."
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/enums/HalloweenFeatures.java",
    "chars": 109,
    "preview": "package ladysnake.illuminations.client.enums;\n\npublic enum HalloweenFeatures {\n    ENABLE, DISABLE, ALWAYS\n}\n"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/enums/PlanktonSpawnRate.java",
    "chars": 266,
    "preview": "package ladysnake.illuminations.client.enums;\n\npublic enum PlanktonSpawnRate {\n    DISABLE(0f), LOW(0.00020f), MEDIUM(0."
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/enums/WillOWispsSpawnRate.java",
    "chars": 270,
    "preview": "package ladysnake.illuminations.client.enums;\n\npublic enum WillOWispsSpawnRate {\n    DISABLE(0f), LOW(0.00002f), MEDIUM("
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/gui/AutoUpdateGreetingScreen.java",
    "chars": 2172,
    "preview": "package ladysnake.illuminations.client.gui;\n\nimport ladysnake.illuminations.client.config.Config;\nimport net.fabricmc.ap"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/gui/DonateToast.java",
    "chars": 2154,
    "preview": "package ladysnake.illuminations.client.gui;\n\nimport com.mojang.blaze3d.systems.RenderSystem;\nimport ladysnake.illuminati"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/gui/UpdateToast.java",
    "chars": 2041,
    "preview": "package ladysnake.illuminations.client.gui;\n\nimport com.mojang.blaze3d.systems.RenderSystem;\nimport ladysnake.illuminati"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/particle/ChorusPetalParticle.java",
    "chars": 5684,
    "preview": "package ladysnake.illuminations.client.particle;\n\nimport net.fabricmc.api.EnvType;\nimport net.fabricmc.api.Environment;\n"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/particle/EmberParticle.java",
    "chars": 6989,
    "preview": "package ladysnake.illuminations.client.particle;\n\nimport net.fabricmc.api.EnvType;\nimport net.fabricmc.api.Environment;\n"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/particle/EyesParticle.java",
    "chars": 6055,
    "preview": "package ladysnake.illuminations.client.particle;\n\nimport ladysnake.illuminations.client.Illuminations;\nimport ladysnake."
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/particle/FireflyParticle.java",
    "chars": 12153,
    "preview": "package ladysnake.illuminations.client.particle;\n\nimport ladysnake.illuminations.client.Illuminations;\nimport ladysnake."
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/particle/GlowwormParticle.java",
    "chars": 8819,
    "preview": "package ladysnake.illuminations.client.particle;\n\nimport ladysnake.illuminations.client.config.Config;\nimport net.fabric"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/particle/PlanktonParticle.java",
    "chars": 8586,
    "preview": "package ladysnake.illuminations.client.particle;\n\nimport ladysnake.illuminations.client.config.Config;\nimport net.fabric"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/particle/PoltergeistParticle.java",
    "chars": 9654,
    "preview": "package ladysnake.illuminations.client.particle;\n\nimport net.fabricmc.api.EnvType;\nimport net.fabricmc.api.Environment;\n"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/particle/PrismarineCrystalParticle.java",
    "chars": 6116,
    "preview": "package ladysnake.illuminations.client.particle;\n\nimport net.fabricmc.api.EnvType;\nimport net.fabricmc.api.Environment;\n"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/particle/PumpkinSpiritParticle.java",
    "chars": 7978,
    "preview": "package ladysnake.illuminations.client.particle;\n\nimport net.fabricmc.api.EnvType;\nimport net.fabricmc.api.Environment;\n"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/particle/WillOWispParticle.java",
    "chars": 11167,
    "preview": "package ladysnake.illuminations.client.particle;\n\nimport ladysnake.illuminations.client.render.GlowyRenderLayer;\nimport "
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/particle/WispTrailParticle.java",
    "chars": 5598,
    "preview": "package ladysnake.illuminations.client.particle;\n\nimport net.fabricmc.api.EnvType;\nimport net.fabricmc.api.Environment;\n"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/particle/WispTrailParticleEffect.java",
    "chars": 4763,
    "preview": "package ladysnake.illuminations.client.particle;\n\nimport com.mojang.brigadier.StringReader;\nimport com.mojang.brigadier."
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/particle/aura/AutumnLeavesParticle.java",
    "chars": 5188,
    "preview": "package ladysnake.illuminations.client.particle.aura;\n\nimport net.fabricmc.api.EnvType;\nimport net.fabricmc.api.Environm"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/particle/aura/ChorusAuraParticle.java",
    "chars": 2921,
    "preview": "package ladysnake.illuminations.client.particle.aura;\n\nimport ladysnake.illuminations.client.particle.ChorusPetalParticl"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/particle/aura/ConfettiParticle.java",
    "chars": 7479,
    "preview": "package ladysnake.illuminations.client.particle.aura;\n\nimport net.fabricmc.api.EnvType;\nimport net.fabricmc.api.Environm"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/particle/aura/GhostlyAuraParticle.java",
    "chars": 5778,
    "preview": "package ladysnake.illuminations.client.particle.aura;\n\nimport net.fabricmc.api.EnvType;\nimport net.fabricmc.api.Environm"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/particle/aura/GoldenrodAuraParticle.java",
    "chars": 3366,
    "preview": "package ladysnake.illuminations.client.particle.aura;\n\nimport ladysnake.illuminations.client.particle.ChorusPetalParticl"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/particle/aura/PrismarineAuraParticle.java",
    "chars": 2640,
    "preview": "package ladysnake.illuminations.client.particle.aura;\n\nimport ladysnake.illuminations.client.particle.PrismarineCrystalP"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/particle/aura/PrismaticConfettiParticle.java",
    "chars": 2104,
    "preview": "package ladysnake.illuminations.client.particle.aura;\n\nimport ladysnake.illuminations.client.Illuminations;\nimport ladys"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/particle/aura/SculkTendrilParticle.java",
    "chars": 4919,
    "preview": "package ladysnake.illuminations.client.particle.aura;\n\nimport net.fabricmc.api.EnvType;\nimport net.fabricmc.api.Environm"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/particle/aura/ShadowbringerParticle.java",
    "chars": 3620,
    "preview": "package ladysnake.illuminations.client.particle.aura;\n\nimport ladysnake.illuminations.client.particle.ChorusPetalParticl"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/particle/aura/TwilightFireflyParticle.java",
    "chars": 9132,
    "preview": "package ladysnake.illuminations.client.particle.aura;\n\nimport ladysnake.illuminations.client.Illuminations;\nimport ladys"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/particle/pet/JackoParticle.java",
    "chars": 4735,
    "preview": "package ladysnake.illuminations.client.particle.pet;\n\nimport ladysnake.illuminations.client.Illuminations;\nimport net.fa"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/particle/pet/PetParticle.java",
    "chars": 5265,
    "preview": "package ladysnake.illuminations.client.particle.pet;\n\nimport ladysnake.illuminations.client.particle.FireflyParticle;\nim"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/particle/pet/PlayerLanternParticle.java",
    "chars": 5127,
    "preview": "package ladysnake.illuminations.client.particle.pet;\n\nimport ladysnake.illuminations.client.render.GlowyRenderLayer;\nimp"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/particle/pet/PlayerWispParticle.java",
    "chars": 3934,
    "preview": "package ladysnake.illuminations.client.particle.pet;\n\nimport ladysnake.illuminations.client.particle.WillOWispParticle;\n"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/particle/pet/PrideHeartParticle.java",
    "chars": 1917,
    "preview": "package ladysnake.illuminations.client.particle.pet;\n\nimport ladysnake.illuminations.client.render.entity.model.pet.Prid"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/render/GlowyRenderLayer.java",
    "chars": 1341,
    "preview": "package ladysnake.illuminations.client.render;\n\nimport ladysnake.illuminations.mixin.RenderLayerAccessor;\nimport net.min"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/render/entity/feature/OverheadFeatureRenderer.java",
    "chars": 2980,
    "preview": "package ladysnake.illuminations.client.render.entity.feature;\n\nimport ladysnake.illuminations.client.Illuminations;\nimpo"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/render/entity/model/hat/CrownModel.java",
    "chars": 3045,
    "preview": "package ladysnake.illuminations.client.render.entity.model.hat;\n\nimport ladysnake.illuminations.client.Illuminations;\nim"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/render/entity/model/hat/HaloModel.java",
    "chars": 1716,
    "preview": "package ladysnake.illuminations.client.render.entity.model.hat;\n\nimport ladysnake.illuminations.client.Illuminations;\nim"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/render/entity/model/hat/HornsModel.java",
    "chars": 2613,
    "preview": "package ladysnake.illuminations.client.render.entity.model.hat;\n\nimport ladysnake.illuminations.client.Illuminations;\nim"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/render/entity/model/hat/OverheadModel.java",
    "chars": 999,
    "preview": "package ladysnake.illuminations.client.render.entity.model.hat;\n\nimport ladysnake.illuminations.client.render.GlowyRende"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/render/entity/model/hat/TiaraModel.java",
    "chars": 3057,
    "preview": "package ladysnake.illuminations.client.render.entity.model.hat;\n\nimport ladysnake.illuminations.client.Illuminations;\nim"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/render/entity/model/hat/VoidheartTiaraModel.java",
    "chars": 3080,
    "preview": "package ladysnake.illuminations.client.render.entity.model.hat;\n\nimport ladysnake.illuminations.client.Illuminations;\nim"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/render/entity/model/hat/WreathModel.java",
    "chars": 1590,
    "preview": "package ladysnake.illuminations.client.render.entity.model.hat;\n\nimport ladysnake.illuminations.client.Illuminations;\nim"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/render/entity/model/pet/LanternModel.java",
    "chars": 1927,
    "preview": "/// Made with Model Converter by Globox_Z\n/// Generate all required imports\n/// Made with Blockbench 3.8.4\n/// Exported "
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/render/entity/model/pet/PrideHeartModel.java",
    "chars": 2226,
    "preview": "/// Made with Model Converter by Globox_Z\n/// Generate all required imports\n/// Made with Blockbench 3.8.4\n/// Exported "
  },
  {
    "path": "src/main/java/ladysnake/illuminations/client/render/entity/model/pet/WillOWispModel.java",
    "chars": 1839,
    "preview": "/// Made with Model Converter by Globox_Z\n/// Generate all required imports\n/// Made with Blockbench 3.8.4\n/// Exported "
  },
  {
    "path": "src/main/java/ladysnake/illuminations/mixin/BlockMixin.java",
    "chars": 1503,
    "preview": "package ladysnake.illuminations.mixin;\n\nimport ladysnake.illuminations.client.Illuminations;\nimport net.minecraft.block."
  },
  {
    "path": "src/main/java/ladysnake/illuminations/mixin/CarvedPumpkinBlockMixin.java",
    "chars": 1282,
    "preview": "package ladysnake.illuminations.mixin;\n\nimport ladysnake.illuminations.client.Illuminations;\nimport ladysnake.illuminati"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/mixin/ChorusFlowerBlockMixin.java",
    "chars": 1034,
    "preview": "package ladysnake.illuminations.mixin;\n\nimport ladysnake.illuminations.client.Illuminations;\nimport ladysnake.illuminati"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/mixin/ClientWorldMixin.java",
    "chars": 4216,
    "preview": "package ladysnake.illuminations.mixin;\n\nimport com.google.common.collect.ImmutableSet;\nimport ladysnake.illuminations.cl"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/mixin/LanternBlockMixin.java",
    "chars": 882,
    "preview": "package ladysnake.illuminations.mixin;\n\nimport ladysnake.illuminations.client.Illuminations;\nimport net.minecraft.block."
  },
  {
    "path": "src/main/java/ladysnake/illuminations/mixin/LivingEntityMixin.java",
    "chars": 1698,
    "preview": "package ladysnake.illuminations.mixin;\n\nimport ladysnake.illuminations.client.Illuminations;\nimport ladysnake.illuminati"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/mixin/ParticleManagerMixin.java",
    "chars": 1771,
    "preview": "package ladysnake.illuminations.mixin;\n\nimport ladysnake.illuminations.client.Illuminations;\nimport ladysnake.illuminati"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/mixin/PlayerEntityMixin.java",
    "chars": 3260,
    "preview": "package ladysnake.illuminations.mixin;\n\nimport ladysnake.illuminations.client.Illuminations;\nimport ladysnake.illuminati"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/mixin/RenderLayerAccessor.java",
    "chars": 602,
    "preview": "package ladysnake.illuminations.mixin;\n\nimport net.minecraft.client.render.RenderLayer;\nimport net.minecraft.client.rend"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/mixin/SkullBlockMixin.java",
    "chars": 1307,
    "preview": "package ladysnake.illuminations.mixin;\n\nimport ladysnake.illuminations.client.Illuminations;\nimport ladysnake.illuminati"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/mixin/TitleScreenMixin.java",
    "chars": 1774,
    "preview": "package ladysnake.illuminations.mixin;\n\nimport ladysnake.illuminations.client.Illuminations;\nimport ladysnake.illuminati"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/mixin/jeb/FeatureRendererMixin.java",
    "chars": 1813,
    "preview": "package ladysnake.illuminations.mixin.jeb;\n\nimport ladysnake.illuminations.client.Rainbowlluminations;\nimport net.minecr"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/mixin/jeb/LivingEntityRendererMixin.java",
    "chars": 1250,
    "preview": "package ladysnake.illuminations.mixin.jeb;\n\nimport ladysnake.illuminations.client.Rainbowlluminations;\nimport net.minecr"
  },
  {
    "path": "src/main/java/ladysnake/illuminations/updater/IlluminationsUpdater.java",
    "chars": 8459,
    "preview": "package ladysnake.illuminations.updater;\n\nimport com.google.gson.JsonElement;\nimport com.google.gson.JsonParser;\nimport "
  },
  {
    "path": "src/main/resources/assets/illuminations/lang/de_de.json",
    "chars": 2696,
    "preview": "{\r\n  \"title.illuminations.config\": \"Illuminations Config\",\r\n  \"title.illuminations.autoUpdater\": \"Illuminations Auto-Upd"
  },
  {
    "path": "src/main/resources/assets/illuminations/lang/en_us.json",
    "chars": 9318,
    "preview": "{\n  \"title.illuminations.config\": \"Illuminations Config\",\n  \"title.illuminations.autoUpdater\": \"Illuminations Auto-Updat"
  },
  {
    "path": "src/main/resources/assets/illuminations/lang/id_id.json",
    "chars": 2741,
    "preview": "{\n  \"title.illuminations.config\": \"Konfigurasi Illuminations\",\n  \"title.illuminations.autoUpdater\": \"Illuminations Pemba"
  },
  {
    "path": "src/main/resources/assets/illuminations/lang/ru_ru.json",
    "chars": 9649,
    "preview": "{\n  \"title.illuminations.config\": \"Настройки Illuminations\",\n  \"title.illuminations.autoUpdater\": \"Автоматическое обновл"
  },
  {
    "path": "src/main/resources/assets/illuminations/lang/zh_cn.json",
    "chars": 971,
    "preview": "{\n  \"title.illuminations.config\": \"Illuminations 配置\",\n  \"category.illuminations.general\": \"通用\",\n  \"option.illuminations."
  },
  {
    "path": "src/main/resources/assets/illuminations/materialmaps/entity/will_o_wisp.json",
    "chars": 46,
    "preview": "{\n  \"material\": \"canvas:emissive_no_diffuse\"\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/materialmaps/particle/ace_pride_pet.json",
    "chars": 46,
    "preview": "{\n  \"material\": \"canvas:emissive_no_diffuse\"\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/materialmaps/particle/autumn_leaves.json",
    "chars": 46,
    "preview": "{\n  \"material\": \"canvas:emissive_no_diffuse\"\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/materialmaps/particle/bi_pride_pet.json",
    "chars": 46,
    "preview": "{\n  \"material\": \"canvas:emissive_no_diffuse\"\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/materialmaps/particle/chorus_aura.json",
    "chars": 46,
    "preview": "{\n  \"material\": \"canvas:emissive_no_diffuse\"\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/materialmaps/particle/chorus_petal.json",
    "chars": 46,
    "preview": "{\n  \"material\": \"canvas:emissive_no_diffuse\"\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/materialmaps/particle/confetti.json",
    "chars": 46,
    "preview": "{\n  \"material\": \"canvas:emissive_no_diffuse\"\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/materialmaps/particle/dissolution_wisp_pet.json",
    "chars": 46,
    "preview": "{\n  \"material\": \"canvas:emissive_no_diffuse\"\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/materialmaps/particle/eyes.json",
    "chars": 46,
    "preview": "{\n  \"material\": \"canvas:emissive_no_diffuse\"\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/materialmaps/particle/firefly.json",
    "chars": 46,
    "preview": "{\n  \"material\": \"canvas:emissive_no_diffuse\"\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/materialmaps/particle/ghostly_aura.json",
    "chars": 46,
    "preview": "{\n  \"material\": \"canvas:emissive_no_diffuse\"\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/materialmaps/particle/glowworm.json",
    "chars": 46,
    "preview": "{\n  \"material\": \"canvas:emissive_no_diffuse\"\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/materialmaps/particle/goldenrod_aura.json",
    "chars": 46,
    "preview": "{\n  \"material\": \"canvas:emissive_no_diffuse\"\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/materialmaps/particle/intersex_pride_pet.json",
    "chars": 46,
    "preview": "{\n  \"material\": \"canvas:emissive_no_diffuse\"\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/materialmaps/particle/jacko_pet.json",
    "chars": 46,
    "preview": "{\n  \"material\": \"canvas:emissive_no_diffuse\"\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/materialmaps/particle/lesbian_pride_pet.json",
    "chars": 46,
    "preview": "{\n  \"material\": \"canvas:emissive_no_diffuse\"\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/materialmaps/particle/nb_pride_pet.json",
    "chars": 46,
    "preview": "{\n  \"material\": \"canvas:emissive_no_diffuse\"\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/materialmaps/particle/plankton.json",
    "chars": 46,
    "preview": "{\n  \"material\": \"canvas:emissive_no_diffuse\"\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/materialmaps/particle/pride_pet.json",
    "chars": 46,
    "preview": "{\n  \"material\": \"canvas:emissive_no_diffuse\"\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/materialmaps/particle/prismarine_aura.json",
    "chars": 46,
    "preview": "{\n  \"material\": \"canvas:emissive_no_diffuse\"\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/materialmaps/particle/prismarine_crystal.json",
    "chars": 46,
    "preview": "{\n  \"material\": \"canvas:emissive_no_diffuse\"\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/materialmaps/particle/prismatic_confetti.json",
    "chars": 46,
    "preview": "{\n  \"material\": \"canvas:emissive_no_diffuse\"\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/materialmaps/particle/sculk_tendril.json",
    "chars": 45,
    "preview": "{\n  \"material\": \"canvas:emissive_transform\"\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/materialmaps/particle/shadowbringer_aura.json",
    "chars": 46,
    "preview": "{\n  \"material\": \"canvas:emissive_no_diffuse\"\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/materialmaps/particle/trans_pride_pet.json",
    "chars": 46,
    "preview": "{\n  \"material\": \"canvas:emissive_no_diffuse\"\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/materialmaps/particle/twilight_aura.json",
    "chars": 46,
    "preview": "{\n  \"material\": \"canvas:emissive_no_diffuse\"\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/materialmaps/particle/wisp_trail.json",
    "chars": 46,
    "preview": "{\n  \"material\": \"canvas:emissive_no_diffuse\"\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/ace_pride_pet.json",
    "chars": 23,
    "preview": "{\n  \"textures\": [\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/agender_pride_pet.json",
    "chars": 23,
    "preview": "{\n  \"textures\": [\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/aro_pride_pet.json",
    "chars": 23,
    "preview": "{\n  \"textures\": [\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/autumn_leaves.json",
    "chars": 127,
    "preview": "{\n  \"textures\": [\n    \"illuminations:autumn_leaf_0\",\n    \"illuminations:autumn_leaf_1\",\n    \"illuminations:autumn_leaf_2"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/bi_pride_pet.json",
    "chars": 23,
    "preview": "{\n  \"textures\": [\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/chorus_aura.json",
    "chars": 130,
    "preview": "{\n  \"textures\": [\n    \"illuminations:chorus_petal_0\",\n    \"illuminations:chorus_petal_1\",\n    \"illuminations:chorus_peta"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/chorus_petal.json",
    "chars": 130,
    "preview": "{\n  \"textures\": [\n    \"illuminations:chorus_petal_0\",\n    \"illuminations:chorus_petal_1\",\n    \"illuminations:chorus_peta"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/confetti.json",
    "chars": 52,
    "preview": "{\n  \"textures\": [\n    \"illuminations:confetti\"\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/crying_lantern_pet.json",
    "chars": 23,
    "preview": "{\n  \"textures\": [\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/dissolution_wisp_pet.json",
    "chars": 60,
    "preview": "{\n  \"textures\": [\n    \"illuminations:dissolution_wisp\"\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/ember.json",
    "chars": 49,
    "preview": "{\n  \"textures\": [\n    \"illuminations:ember\"\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/ember_trail.json",
    "chars": 49,
    "preview": "{\n  \"textures\": [\n    \"illuminations:ember\"\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/eyes.json",
    "chars": 134,
    "preview": "{\n  \"textures\": [\n    \"illuminations:eyes_0\",\n    \"illuminations:eyes_1\",\n    \"illuminations:eyes_2\",\n    \"illuminations"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/firefly.json",
    "chars": 51,
    "preview": "{\n  \"textures\": [\n    \"illuminations:firefly\"\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/founding_skull_pet.json",
    "chars": 23,
    "preview": "{\n  \"textures\": [\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/gay_pride_pet.json",
    "chars": 23,
    "preview": "{\n  \"textures\": [\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/ghostly.json",
    "chars": 146,
    "preview": "{\n  \"textures\": [\n    \"illuminations:ghostly_0\",\n    \"illuminations:ghostly_1\",\n    \"illuminations:ghostly_2\",\n    \"illu"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/ghostly_aura.json",
    "chars": 146,
    "preview": "{\n  \"textures\": [\n    \"illuminations:ghostly_0\",\n    \"illuminations:ghostly_1\",\n    \"illuminations:ghostly_2\",\n    \"illu"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/glowworm.json",
    "chars": 51,
    "preview": "{\n  \"textures\": [\n    \"illuminations:firefly\"\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/golden_will_pet.json",
    "chars": 23,
    "preview": "{\n  \"textures\": [\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/goldenrod_aura.json",
    "chars": 130,
    "preview": "{\n  \"textures\": [\n    \"illuminations:rune1\",\n    \"illuminations:rune2\",\n    \"illuminations:rune3\",\n    \"illuminations:ru"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/intersex_pride_pet.json",
    "chars": 23,
    "preview": "{\n  \"textures\": [\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/jacko_pet.json",
    "chars": 49,
    "preview": "{\n  \"textures\": [\n    \"illuminations:jacko\"\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/lantern_pet.json",
    "chars": 23,
    "preview": "{\n  \"textures\": [\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/lesbian_pride_pet.json",
    "chars": 23,
    "preview": "{\n  \"textures\": [\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/nb_pride_pet.json",
    "chars": 23,
    "preview": "{\n  \"textures\": [\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/pan_pride_pet.json",
    "chars": 23,
    "preview": "{\n  \"textures\": [\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/plankton.json",
    "chars": 51,
    "preview": "{\n  \"textures\": [\n    \"illuminations:firefly\"\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/poltergeist.json",
    "chars": 23,
    "preview": "{\n  \"textures\": [\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/poltergeist_pet.json",
    "chars": 23,
    "preview": "{\n  \"textures\": [\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/pride_pet.json",
    "chars": 23,
    "preview": "{\n  \"textures\": [\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/prismarine_aura.json",
    "chars": 148,
    "preview": "{\n  \"textures\": [\n    \"illuminations:prismarine_crystal_0\",\n    \"illuminations:prismarine_crystal_1\",\n    \"illuminations"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/prismarine_crystal.json",
    "chars": 148,
    "preview": "{\n  \"textures\": [\n    \"illuminations:prismarine_crystal_0\",\n    \"illuminations:prismarine_crystal_1\",\n    \"illuminations"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/prismatic_confetti.json",
    "chars": 52,
    "preview": "{\n  \"textures\": [\n    \"illuminations:confetti\"\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/pumpkin_spirit.json",
    "chars": 23,
    "preview": "{\n  \"textures\": [\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/pumpkin_spirit_pet.json",
    "chars": 23,
    "preview": "{\n  \"textures\": [\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/sculk_tendril.json",
    "chars": 96,
    "preview": "{\n  \"textures\": [\n    \"illuminations:tendril_active\",\n    \"illuminations:tendril_inactive\"\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/shadowbringer_aura.json",
    "chars": 138,
    "preview": "{\n  \"textures\": [\n    \"illuminations:shade_0\",\n    \"illuminations:shade_1\",\n    \"illuminations:shade_2\",\n    \"illuminati"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/soothing_lantern_pet.json",
    "chars": 23,
    "preview": "{\n  \"textures\": [\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/soul_lantern_pet.json",
    "chars": 23,
    "preview": "{\n  \"textures\": [\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/trans_pride_pet.json",
    "chars": 23,
    "preview": "{\n  \"textures\": [\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/twilight_aura.json",
    "chars": 51,
    "preview": "{\n  \"textures\": [\n    \"illuminations:firefly\"\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/will_o_wisp.json",
    "chars": 23,
    "preview": "{\n  \"textures\": [\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/will_o_wisp_pet.json",
    "chars": 23,
    "preview": "{\n  \"textures\": [\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/particles/wisp_trail.json",
    "chars": 54,
    "preview": "{\n  \"textures\": [\n    \"illuminations:wisp_trail\"\n  ]\n}"
  },
  {
    "path": "src/main/resources/assets/illuminations/shaders/core/jeb.fsh",
    "chars": 995,
    "preview": "#version 150\n\nuniform sampler2D Sampler0;\nuniform sampler2D Sampler1;\nuniform sampler2D Sampler2;\n\nin vec4 vertexColor;\n"
  },
  {
    "path": "src/main/resources/assets/illuminations/shaders/core/jeb.json",
    "chars": 1165,
    "preview": "{\n  \"blend\": {\n    \"func\": \"add\",\n    \"srcrgb\": \"srcalpha\",\n    \"dstrgb\": \"1-srcalpha\"\n  },\n  \"vertex\": \"illuminations:j"
  },
  {
    "path": "src/main/resources/assets/illuminations/shaders/core/jeb.vsh",
    "chars": 479,
    "preview": "#version 150\n\nin vec3 Position;\nin vec4 Color;\nin vec2 UV0;\nin vec2 UV1;\nin vec2 UV2;\nin vec3 Normal;\n\nuniform mat4 Mode"
  },
  {
    "path": "src/main/resources/assets/illuminations/textures/particle/dissolution_wisp.png.mcmeta",
    "chars": 52,
    "preview": "{\n    \"animation\": {\n        \"frametime\": 1\n    }\n}\n"
  },
  {
    "path": "src/main/resources/assets/illuminations/textures/particle/tendril_active.png.mcmeta",
    "chars": 52,
    "preview": "{\n    \"animation\": {\n        \"frametime\": 1\n    }\n}\n"
  },
  {
    "path": "src/main/resources/assets/illuminations/textures/particle/tendril_inactive.png.mcmeta",
    "chars": 52,
    "preview": "{\n    \"animation\": {\n        \"frametime\": 2\n    }\n}\n"
  },
  {
    "path": "src/main/resources/assets/minecraft/materialmaps/entity/player.json",
    "chars": 3057,
    "preview": "{\n  \"map\": [\n    {\n      \"predicate\": {\n        \"materialPredicate\": {\n          \"texture\": \"illuminations:textures/enti"
  },
  {
    "path": "src/main/resources/assets/minecraft/shaders/core/particle.fsh",
    "chars": 593,
    "preview": "#version 150\n\n#moj_import <fog.glsl>\n\nuniform sampler2D Sampler0;\n\nuniform vec4 ColorModulator;\nuniform float FogStart;\n"
  },
  {
    "path": "src/main/resources/fabric.mod.json",
    "chars": 940,
    "preview": "{\n  \"schemaVersion\": 1,\n  \"id\": \"illuminations\",\n  \"version\": \"${version}\",\n  \"name\": \"Illuminations\",\n  \"description\": "
  },
  {
    "path": "src/main/resources/illuminations.accesswidener",
    "chars": 176,
    "preview": "accessWidener\tv1\tnamed\n\naccessible  class   net/minecraft/client/render/RenderLayer$MultiPhase\naccessible  class   net/m"
  },
  {
    "path": "src/main/resources/illuminations.mixins.json",
    "chars": 585,
    "preview": "{\n  \"required\": true,\n  \"package\": \"ladysnake.illuminations.mixin\",\n  \"compatibilityLevel\": \"JAVA_8\",\n  \"client\": [\n    "
  },
  {
    "path": "src/main/resources/pack.mcmeta",
    "chars": 123,
    "preview": "{\n    \"pack\": {\n        \"description\": \"Illuminations resources\",\n        \"pack_format\": 3,\n        \"_comment\": \"\"\n    }"
  }
]

// ... and 11 more files (download for full content)

About this extraction

This page contains the full source code of the Ladysnake/Illuminations GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 188 files (423.1 KB), approximately 115.9k tokens, and a symbol index with 441 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!