Skip to content

Commit

Permalink
Disallow time wand in autoclickers
Browse files Browse the repository at this point in the history
  • Loading branch information
JaisDK committed Oct 19, 2024
1 parent f15aff6 commit bb5c8f9
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions config/justdirethings-common.toml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,18 @@
timeprotection = true
#epicarrow
epicarrow = true
#The maximum number of blocks that a Ferricore tool can break as a result of abilities, such as ore miner or tree feller.
#Range: 1 ~ 2048
tool_max_break_ferricore = 64
#The maximum number of blocks that a Blazegold tool can break as a result of abilities, such as ore miner or tree feller.
#Range: 1 ~ 2048
tool_max_break_blazegold = 128
#The maximum number of blocks that a Celestigem tool can break as a result of abilities, such as ore miner or tree feller.
#Range: 1 ~ 2048
tool_max_break_celestigem = 192
#The maximum number of blocks that a Eclipse Alloy tool can break as a result of abilities, such as ore miner or tree feller.
#Range: 1 ~ 2048
tool_max_break_eclipsealloy = 256

#Generator T1
[generator_t1]
Expand Down Expand Up @@ -187,6 +199,9 @@
[goo]
#Can goo randomly die, needing to be revived by right clicking with an item?
goo_can_die = true
#The random chance that a goo block can 'die' when it finishes crafting. Set to 1.0 to guarantee it dies every time. Default is 0.1, which is a 10% chance.
#Range: 0.0 ~ 1.0
goo_death_chance = 0.1

#Time Wand
[time_wand]
Expand All @@ -199,3 +214,39 @@
#The Time Fluid cost to use the time wand. This value is multiplied by the acceleration amount. For example, when you go from 128 to 256, it will charge 256 x <this value> in Time Fluid.
#Range: 0.0 ~ 1.7976931348623157E308
time_wand_fluid_cost = 0.5
#The maximum speed multiplier that can be applied using a Time Wand. This value should be a power of two.
time_wand_max_multiplier = 256
#Can fake players use the Time Wand (Like in the clickers)?
time_wand_fake_player_allowed = false

#Paradox Machine
[paradox_machine]
#The maximum amount of Forge Energy the Paradox Machine can hold in its buffer
#Range: > 1
paradox_rf_capacity = 10000000
#The Forge Energy cost to Restore 1 block with the Paradox Machine. This value is multiplied by the number of blocks the machine is restoring.
#Range: > 0
paradox_rf_per_block = 250000
#The Forge Energy cost to Restore 1 entity with the Paradox Machine. This value is multiplied by the number of entities the machine is restoring.
#Range: > 0
paradox_rf_per_entity = 250000
#The maximum amount of Time Fluid the Paradox Machine can hold in its buffer
#Range: > 1
paradox_fluid_capacity = 16000
#The Time Fluid cost (in mb) to Restore 1 block with the Paradox Machine. This value is multiplied by the number of blocks the machine is restoring.
#Range: > 0
paradox_fluid_per_block = 50
#The Time Fluid cost (in mb) to Restore 1 entity with the Paradox Machine. This value is multiplied by the number of entities the machine is restoring.
#Range: > 0
paradox_fluid_per_entity = 50
#The amount of Paradox Energy accumulated in the Paradox Machine when it restores a single block. This value is multiplied by the number of blocks the machine is restoring.
#Range: 0.0 ~ 1.7976931348623157E308
paradox_energy_per_block = 0.25
#The amount of Paradox Energy accumulated in the Paradox Machine when it restores a single entity. This value is multiplied by the number of blocks the machine is restoring.
#Range: 0.0 ~ 1.7976931348623157E308
paradox_energy_per_entity = 0.25
#The maximum amount of Paradox Energy the Paradox Machine can hold in its buffer, before it spawns a Paradox!
#Range: 0.0 ~ 1.7976931348623157E308
paradox_energy_max = 100.0
#Use a more restrictive data filtering for mobs cloned by the paradox machine. When enabled, most modded mobs may not work very well. When disabled, theres a small chance of item dupe bugs. Recommended to leave this set to false, and add any mobs that allow dupes to the paradox machines deny entity tag.
paradox_restricted_mobs = false

0 comments on commit bb5c8f9

Please sign in to comment.