Hysteria shader & basic sunburn config & 1st person fire tweaks

Changed Hysteria shader default params

- slightly less desaturation but not complete removal
- caves now have true darkness (shaders override minecraft gamma, however true darkness will be retained as a fallback)
- basic sun burn config that allows players to retreat to other dimensions (with a sun) to avoid getting burned
- fire resist potions prevent sun burn from even applying (prevents the fire effect from showing on the screen as a result)
- tinted glass prevents sunburn
- added vanilla tweaks lowered first person fire
   this was added because although the create netherite diving gear stops fire damage, the player still renders as on fire in both 3rd and 1st person blocking half the players view.
This commit is contained in:
2025-05-11 17:47:58 -05:00
parent e832d7c18c
commit ba1ce7cc98
8 changed files with 65 additions and 51 deletions

View File

@ -5,27 +5,27 @@
#If selected the rest of the config is pointless. Default: false
tanningLotion = false
#Should players burn? Default: false
burnPlayers = false
burnPlayers = true
#Should ops NOT burn? Default: true
noOpBurn = true
noOpBurn = false
#If enabled armor in the head slot will prevent burning. Default: false
checkArmor = false
#If enabled armor will take damage if 'checkArmor' is enabled. Default: false
damageArmor = false
#If enabled effects will be checked to see if they prevent burning. Default: false
checkEffects = false
checkEffects = true
#Allow all of a mods' mobs from burning just by specifying the modid. Comma separated and quoted list
#Default: "iceandfire"
mods = ["iceandfire"]
#Allows specific mods' mobs to burn just by specifying their full id for example modid:mobname. Comma separated and quoted list
#Default: "minecraft:zombie","minecraft:skeleton"
mobs = ["minecraft:chicken", "minecraft:cow", "minecraft:stray"]
mobs = ["minecraft:zombie", "minecraft:skeleton"]
#Allows specific mods' blocks to be ignored while checking if you are able to see the sky by specifying their full id for example modid:blockname. Comma separated and quoted list
#Example: "minecraft:black_stained_glass"
ignoredBlocks = []
ignoredBlocks = ["minecraft:tinted_glass"]
#If enabled the `dimensions` list will become a blacklist. Default: true
invertDimensions = true
invertDimensions = false
#Specify dimensions that allow sun burning by specifying their full id for example modid:dimensionname. (If `invertDimensions` is set to true this turns into a dimension blacklist)
#Example: "minecraft:overworld"
dimensions = []
dimensions = ["minecraft:overworld"]