Skip to content

Commit

Permalink
ars config
Browse files Browse the repository at this point in the history
  • Loading branch information
whatthedrunk committed Jul 30, 2024
1 parent 874e0c6 commit 3b56c98
Show file tree
Hide file tree
Showing 2 changed files with 122 additions and 0 deletions.
50 changes: 50 additions & 0 deletions config/ars_nouveau-client.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
#Lighting
[lights]
#Show the supporter message. This is set to false after the first time.
showSupporterMessage = false
#If dynamic lights are enabled
lightsEnabled = false
#How bright the touch light is
#Range: 0 ~ 15
touchLightLuminance = 8
#How long the touch light lasts in ticks
#Range: 0 ~ 40
touchLightDuration = 8
#Light level an entity should emit when dynamic lights are on
#Example entry: minecraft:blaze=15
entity_lights = ["minecraft:blaze=10", "ars_nouveau:orbit=15", "ars_nouveau:linger=15", "ars_nouveau:spell_proj=15", "minecraft:magma_cube=8", "ars_nouveau:flying_item=10", "minecraft:spectral_arrow=8", "ars_nouveau:follow_proj=10"]
#Light level an item should emit when held when dynamic lights are on
#Example entry: minecraft:stick=15
item_lights = ["minecraft:redstone_torch=10", "minecraft:soul_lantern=12", "minecraft:glow_ink_sac=10", "minecraft:verdant_froglight=15", "minecraft:blaze_rod=10", "minecraft:shroomlight=10", "minecraft:lantern=14", "minecraft:soul_torch=10", "minecraft:glow_berries=8", "minecraft:glowstone_dust=8", "minecraft:pearlescent_froglight=15", "minecraft:nether_star=14", "minecraft:glowstone=15", "minecraft:torch=14", "minecraft:ochre_froglight=15", "minecraft:lava_bucket=15"]

#Overlay
[overlays]
#X offset for the tooltip
#Range: > -2147483648
xTooltip = 20
#Y offset for the tooltip
#Range: > -2147483648
yTooltip = 0
#X offset for the Mana Bar
#Range: > -2147483648
xManaBar = 0
#Y offset for the Mana Bar
#Range: > -2147483648
yManaBar = 0
#If the Storage Lectern should show the recipe book icon
showRecipeBook = true
#Inform the player of Dynamic lights once.
informLights = false

#Misc
[misc]
#Use simplified renderer for Warp Portals
no_end_portal_render = false
#Disables the skyweave renderer. Disable if your sky is broken with shaders.
disable_skyweave = false
#Show spell tooltips with glyphs instead of plain text
glyphTooltips = true
#Enables transparent/opaque rendering of elements in the book GUI. Disable if it leads to crash with Sodium derivatives
gui_transparency = true
#Disables translucent particles. Disable if your particles are invisible with shaders.
opaque_particles = false
72 changes: 72 additions & 0 deletions config/ars_nouveau-common.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
#General settings
[general]
#Dimensions where hostile mobs will not spawn. Ex: ["minecraft:overworld", "undergarden:undergarden"]. . Run /forge dimensions for a list.
dimensionBlacklist = []
#Spawn a book in the players inventory on login
spawnBook = false
#How much mana whirlisprigs consume per generation
#Range: 0 ~ 10000
sylphManaCost = 250
#How much progress whirlisprigs must accumulate before creating resources
#Range: 0 ~ 10000
whirlisprigProgress = 250
#Should the Wilden Hunter attack animals?
hunterHuntsAnimals = false
#Should the Wilden Stalker attack animals?
stalkerHuntsAnimals = false
#Should the Wilden Defender attack animals?
defenderHuntsAnimals = false
#Should the Wilden Chimera dive bomb destroy blocks?
destructiveDiveBomb = true
#Archwood forest spawn weight
#Range: > 0
archwoodForest = 2
#How many inventories can lectern support per bookwyrm
#Range: > 1
bookwyrmLimit = 8

[drygmy_production]
#How much source drygmys consume per generation
#Range: 0 ~ 10000
drygmyManaCost = 1000
#How many channels must occur before a drygmy produces loot
#Range: 0 ~ 300
drygmyMaxProgress = 20
#Bonus number of items a drygmy produces per unique mob
#Range: 0 ~ 300
drygmyUniqueBonus = 2
#Base number of items a drygmy produces per cycle before bonuses.
#Range: > -2147483648
drygmyBaseItems = 1
#Max Bonus number of items a drygmy produces from nearby entities. Each entity equals 1 item.
#Range: 0 ~ 300
drygmyQuantityCap = 5

#Items
[item]
#Spawn Caster Tomes in Dungeon Loot?
spawnTomes = true
#How much mana the Ring of Jumping consumes per jump
#Range: 0 ~ 10000
jumpRingCost = 30

#Blocks
[block]
#How much potion a melder takes from each input jar. 100 = 1 potion
#Range: > 100
melderInputCost = 200
#How much potion a melder outputs per cycle. 100 = 1 potion
#Range: > 100
melderOutput = 100
#How much source a melder takes per cycle
#Range: > 0
melderSourceCost = 300
#The max potion level the enchanted flask can grant. This isnt needed unless you have an infinite potion leveling exploit.
#Range: > 2
enchantedFlaskCap = 255

#Debug
[debug]
#Max number of log events to keep on entities. Lowering this number may make it difficult to debug why your entities are stuck.
#Range: > 0
maxLogEvents = 100

0 comments on commit 3b56c98

Please sign in to comment.