Advertisement
Guest User

scaling health config

a guest
Feb 6th, 2019
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 32.03 KB | None | 0 0
  1. # Configuration file
  2.  
  3. main {
  4. # Max health cap for all entities, players and mobs (vanilla is 1024) [range: 2 ~ 2147483647, default: 2048]
  5. I:"Max Health Cap"=5000
  6.  
  7. difficulty {
  8. # Defines how the area difficulty is determined when spawning a mob.
  9. # AVERAGE - The average difficulty level of all nearby players.
  10. # WEIGHTED_AVERAGE - Similar to average, but closer players have a greater impact on difficulty.
  11. # MIN_LEVEL - The lowest difficulty level of all nearby players.
  12. # MAX_LEVEL - The highest difficulty level of all nearby players.
  13. # DISTANCE_FROM_SPAWN - Based on the mob's distance from spawn.
  14. # DISTANCE_FROM_ORIGIN - Based on the mob's distance from the origin.
  15. # DISTANCE_AND_TIME - Mix of DISTANCE_FROM_SPAWN and WEIGHTED_AVERAGE.
  16. # SERVER_WIDE - Difficulty is tracked at a server level, individual player difficulty has no impact. [default: WEIGHTED_AVERAGE]
  17. S:"Area Mode"=DISTANCE_AND_TIME
  18.  
  19. # Change in difficulty when a player sleeps through the night. Negative numbers cause difficulty to decrease. [range: -10000.0 ~ 10000.0, default: 0.0]
  20. S:"Difficulty Added When Sleeping"=0.0
  21.  
  22. # Allows difficulty multipliers to be set for specific dimensions. Use the dimension ID and the multiplier you want, separated by a space. For example, "-1 1.5" would make difficulty increase 1.5x faster in the Nether. [default: ]
  23. S:"Difficulty Dimension Multiplier" <
  24. >
  25.  
  26. # Difficulty change per blight kill. Negative numbers cause difficulty to decrease. [range: -10000.0 ~ 10000.0, default: 0.0]
  27. S:"Difficulty Per Blight Kill"=1.0
  28.  
  29. # The amount of difficulty added per unit distance from the origin/spawn, assuming "Area Mode" is set to a distance-based option. Negative numbers will decrease difficulty over distance. [range: -3.4028234663852886E38 ~ 3.4028234663852886E38, default: 0.0024999999441206455]
  30. S:"Difficulty Per Block"=0.0025
  31.  
  32. # Difficulty change per boss kill. Negative numbers cause difficulty to decrease. [range: -10000.0 ~ 10000.0, default: 0.0]
  33. S:"Difficulty Per Boss Kill"=5.0
  34.  
  35. # Difficulty change per hostile mob killed. Negative numbers cause difficulty to decrease. [range: -10000.0 ~ 10000.0, default: 0.0]
  36. S:"Difficulty Per Kill"=0.0
  37.  
  38. # Lets you set difficulty changes for individual mobs. Each line has 3 values separated by spaces: entity ID, standard kill change, blight kill change. For example, entering "minecraft:zombie 0.1 -20" will cause zombie kills to add 0.1 difficulty, but killing a blight zombie will remove 20 difficulty instead. [default: ]
  39. S:"Difficulty Per Kill By Mob" <
  40. >
  41.  
  42. # Difficulty change per passive mob kill. Negative numbers cause difficulty to decrease. [range: -10000.0 ~ 10000.0, default: 0.0]
  43. S:"Difficulty Per Passive Kill"=0.0
  44.  
  45. # Players listed here will be "exempt" from the difficulty system. Exempt players are still part of difficulty calculations, but are treated as having zero difficulty. [default: ]
  46. S:"Exempt Players" <
  47. >
  48.  
  49. # Allows difficulty to be set via Game Stages. Each line should consist of the stage key, followed by a space and the difficulty value (integers only). Example: "my_stage_key 100" [default: ]
  50. S:"Game Stages" <
  51. >
  52.  
  53. # Adds extra difficulty per additional nearby player. So area difficulty will be multiplied by: 1 + group_bonus * (players_in_area - 1) [range: -10.0 ~ 10.0, default: 0.05000000074505806]
  54. S:"Group Area Bonus"=0.05000000074505806
  55.  
  56. # Difficulty added per second is multiplied by this if the player is not moving. [range: -100.0 ~ 100.0, default: 0.699999988079071]
  57. S:"Idle Multiplier"=0.699999988079071
  58.  
  59. # The amount difficulty changes each second. In Difficult Life, the option was named per tick, but was actually applied each second. Negative numbers will decrease difficulty over time. [range: -10000.0 ~ 10000.0, default: 0.0011573999654501677]
  60. S:"Increase Per Second"=0.0012
  61.  
  62. # The difficulty a player loses on death. Negative numbers cause the player to gain difficulty. [range: -10000.0 ~ 10000.0, default: 0.0]
  63. S:"Lost On Death"=0.0
  64.  
  65. # The maximum difficulty level that can be reached. [range: 0.0 ~ 3.4028234663852886E38, default: 250.0]
  66. S:"Max Value"=5000.0
  67.  
  68. # The minimum difficulty value. This can be different from the starting value. [range: 0.0 ~ 3.4028234663852886E38, default: 0.0]
  69. S:"Min Value"=0.0
  70.  
  71. # Allows players' difficulty to be reset at certain frequencies.
  72. # NONE - Do not do regular resets. Weekdays (SUNDAY, MONDAY, etc.) - Reset on this day of the week. If the player does not play on this day, they will be reset the next time they log in.
  73. # DAILY - Reset if the last time the player logged in was a different day. MONTHLY - Reset if the last time the player logged in was a different month (everyone resets on the first of the month). [default: NONE]
  74. S:"Reset Time"=NONE
  75.  
  76. # The distance from a newly spawned mob to search for players to determine its difficulty level. Set to 0 for unlimited range. [range: 0 ~ 32767, default: 256]
  77. I:"Search Radius"=256
  78.  
  79. # The starting difficulty level for new worlds or players joining for the first time. [range: 0.0 ~ 3.4028234663852886E38, default: 0.0]
  80. S:"Starting Value"=0.0
  81.  
  82. lunar_phases {
  83. # Difficulty multipliers for each lunar phase. There must be exactly 8 values. The first is full moon, the fifth is new moon. [default: [1.5], [1.3], [1.2], [1.0], [0.8], [1.0], [1.2], [1.3]]
  84. S:"Lunar Phase Multipliers" <
  85. 1.5
  86. 1.3
  87. 1.2
  88. 1.0
  89. 0.8
  90. 1.0
  91. 1.2
  92. 1.3
  93. >
  94.  
  95. # Enable lunar phase difficulty multipliers. Difficulty will receive a multiplier based on the phase of the moon.
  96. B:"Lunar Phases Enabled"=false
  97. }
  98.  
  99. }
  100.  
  101. client {
  102. # Determines how absorption hearts should be rendered.
  103. # Valid values: [SHIELD, GOLD_OUTLINE, VANILLA] [default: SHIELD]
  104. S:"Absorption Heart Style"=SHIELD
  105.  
  106. # Determines the color of the text next to your hearts. GREEN_TO_RED displays green at full health, and moves to red as you lose health (does not work with absorption). WHITE will just be good old fashioned white text. Set to PSYCHEDELIC if you want to taste the rainbow.
  107. # Valid values: [GREEN_TO_RED, WHITE, PSYCHEDELIC] [default: WHITE]
  108. S:"Absorption Text Color"=GREEN_TO_RED
  109.  
  110. # Determines what the text next to your hearts will display. DISABLED will display nothing, ROWS will display the number of remaining rows that have health left, and HEALTH_AND_MAX will display your actual health and max health values (for absorption, there is no max value). HEALTH_ONLY displays just the current amount.
  111. # Valid values: [DISABLED, ROWS, HEALTH_AND_MAX, HEALTH_ONLY] [default: DISABLED]
  112. S:"Absorption Text Style"=HEALTH_AND_MAX
  113.  
  114. # Replaces vanilla heart rendering (regular and absorption)
  115. B:"Custom Heart Rendering"=true
  116.  
  117. # The time (in ticks) to show the difficulty meter whenever it pops up. [range: 0 ~ 2147483647, default: 160]
  118. I:"Difficulty Meter Display Time"=160
  119.  
  120. # Determines the color of the text next to your hearts. GREEN_TO_RED displays green at full health, and moves to red as you lose health (does not work with absorption). WHITE will just be good old fashioned white text. Set to PSYCHEDELIC if you want to taste the rainbow.
  121. # Valid values: [GREEN_TO_RED, WHITE, PSYCHEDELIC] [default: GREEN_TO_RED]
  122. S:"Health Text Color"=GREEN_TO_RED
  123.  
  124. # Determines what the text next to your hearts will display. DISABLED will display nothing, ROWS will display the number of remaining rows that have health left, and HEALTH_AND_MAX will display your actual health and max health values (for absorption, there is no max value). HEALTH_ONLY displays just the current amount.
  125. # Valid values: [DISABLED, ROWS, HEALTH_AND_MAX, HEALTH_ONLY] [default: ROWS]
  126. S:"Health Text Style"=ROWS
  127.  
  128. # The colors for each additional row of hearts. The colors will loop back around to the beginning if necessary. Use hexadecimal to specify colors (like HTML color codes). [default: [bf0000], [e66000], [e69900], [e6d300], [99e600], [4ce600], [00e699], [00e6e6], [0099e6], [0000e6], [9900e6], [d580ff], [8c8c8c], [e6e6e6]]
  129. S:"Heart Colors" <
  130. bf0000
  131. e66000
  132. e69900
  133. e6d300
  134. 99e600
  135. 4ce600
  136. 00e699
  137. 00e6e6
  138. 0099e6
  139. 0000e6
  140. 9900e6
  141. d580ff
  142. 8c8c8c
  143. e6e6e6
  144. >
  145.  
  146. # The color of the last heart outline (default value). Due to an oversight, this ended up as a decimal number. Oops. [range: 0 ~ 16777215, default: 16777215]
  147. I:"Last Heart Outline Color"=16777215
  148.  
  149. # Outline your highest (max health) heart in a different color. This makes seeing your max health a little bit easier.
  150. B:"Last Heart Outline Enabled"=true
  151.  
  152. # Sets position of the difficulty meter. Negative numbers anchor it to the right side of the screen. [range: -2147483648 ~ 2147483647, default: 5]
  153. I:"Position X"=5
  154.  
  155. # Sets position of the difficulty meter. Negative numbers anchor it to the bottom of the screen. [range: -2147483648 ~ 2147483647, default: -30]
  156. I:"Position Y"=-30
  157.  
  158. # Show the difficulty meter. Usually, it is display for a few seconds occasionally. If false, it is never shown.
  159. B:"Render Difficulty Meter"=true
  160.  
  161. # Render the difficulty meter at all times. If false, it displays occasionally.
  162. B:"Render Difficulty Meter Always"=false
  163.  
  164. # If true, replaces the vanilla hearts with Scaling Health's hearts. Otherwise, regular vanilla hearts are rendered first, then custom hearts are used for extra health.
  165. B:"Replace Vanilla Heart Row With Custom"=true
  166.  
  167. # If true, the difficulty a mob is spawned with will be "consumed" when given health/damage bonuses and potion effects (as in older versions).
  168. B:"Stats Consume Difficulty"=false
  169.  
  170. # Offset the position of the absorption text [range: -2147483648 ~ 2147483647, default: 0]
  171. I:"Text Offset Absorption X"=0
  172.  
  173. # Offset the position of the absorption text [range: -2147483648 ~ 2147483647, default: 0]
  174. I:"Text Offset Absorption Y"=0
  175.  
  176. # Offset the position of health text. [range: -2147483648 ~ 2147483647, default: 0]
  177. I:"Text Offset X"=0
  178.  
  179. # Offset the position of health text. [range: -2147483648 ~ 2147483647, default: 0]
  180. I:"Text Offset Y"=0
  181.  
  182. # If difficulty is set to change when the player sleeps, they will be warned when they get in bed.
  183. B:"Warn When Sleeping"=true
  184. }
  185.  
  186. items {
  187. # If enabled, heart crystals drop shards instead of full containers.
  188. B:"Drop Shards Instead of Containers"=false
  189.  
  190. # If true, the healing from bandages and medkits will fire a standard healing event, allowing other mods to execute additional code or cancel the healing altogether. Disable if needed.
  191. B:"Healing Items Fire Healing Event"=true
  192.  
  193. # The chance of a hostile mob dropping a heart container when killed. [range: 0.0 ~ 1.0, default: 0.009999999776482582]
  194. S:"Heart Drop Chance"=0.01
  195.  
  196. # The chance of a passive mob (animals) dropping a heart container when killed. [range: 0.0 ~ 1.0, default: 0.0010000000474974513]
  197. S:"Heart Drop Chance (Passive)"=0.001
  198.  
  199. # If true, the healing from heart containers will fire a standard healing event, allowing other mods to execute additional code or cancel the healing altogether. Disable if needed.
  200. B:"Heart Healing Event"=true
  201.  
  202. # The number of experience levels required to use a heart container. [range: 0 ~ 2147483647, default: 3]
  203. I:"Heart XP Level Cost"=3
  204.  
  205. # The maximum number of heart containers that a blight will drop when killed. [range: 0 ~ 64, default: 2]
  206. I:"Hearts Dropped by Blight Max"=3
  207.  
  208. # The minimum number of heart containers that a blight will drop when killed. [range: 0 ~ 64, default: 0]
  209. I:"Hearts Dropped by Blight Min"=1
  210.  
  211. # The maximum number of heart containers that a boss will drop when killed. [range: 0 ~ 64, default: 6]
  212. I:"Hearts Dropped by Boss Max"=6
  213.  
  214. # The minimum number of heart containers that a boss will drop when killed. [range: 0 ~ 64, default: 3]
  215. I:"Hearts Dropped by Boss Min"=3
  216.  
  217. # The amount of extra health restored when using a heart container. This applies whether or not hearts increase max health. [range: 0 ~ 2147483647, default: 4]
  218. I:"Hearts Health Restored"=4
  219.  
  220. # If set to false, hearts will no longer increase the player's maximum health, but can still be used for healing.
  221. B:"Hearts Increase Max Health"=true
  222.  
  223. cursed_heart {
  224. # The amount of difficulty added/removed when using a cursed heart. [range: -3.4028234663852886E38 ~ 3.4028234663852886E38, default: 10.0]
  225. S:"Difficulty Change"=10.0
  226. }
  227.  
  228. enchanted_heart {
  229. # The amount of difficulty added/removed when using an enchanted heart. [range: -3.4028234663852886E38 ~ 3.4028234663852886E38, default: -10.0]
  230. S:"Difficulty Change"=-10.0
  231. }
  232.  
  233. }
  234.  
  235. mob {
  236. # A multiplier for extra attack strength all mobs will receive. Set to 0 to disable extra attack strength. [range: 0.0 ~ 3.4028234663852886E38, default: 0.10000000149011612]
  237. S:"Damage Modifier"=0.10000000149011612
  238.  
  239. # The maximum extra attack damage a mob can receive. Zero means unlimited. [range: 0.0 ~ 1000.0, default: 10.0]
  240. S:"Max Damage Bonus"=10.0
  241.  
  242. # The chance that an extra potion effect will be applied to any hostile mob. Note that this effect requires the mob to have a certain amount of "difficulty" left after it has been given extra health and damage. So entering 1 won't guarantee potion effects. [range: 0.0 ~ 1.0, default: 0.375]
  243. S:"Potion Chance (Hostiles)"=0.375
  244.  
  245. # The chance that an extra potion effect will be applied to any passive mob. Note that this effect requires the mob to have a certain amount of "difficulty" left after it has been given extra health and damage. So entering 1 won't guarantee potion effects. [range: 0.0 ~ 1.0, default: 0.02500000037252903]
  246. S:"Potion Chance (Passives)"=0.02500000037252903
  247.  
  248. # Additional XP (as percentage) per point of difficulty. For example, if this is 0.01, a mob will drop 2x (+1.0x) XP at 100 difficulty and 3x (+2.0x) at 200 [range: 0.0 ~ 1.0, default: 0.009999999776482582]
  249. S:"XP Boost"=0.01
  250.  
  251. blights {
  252. # If true, every mob that can be a blight will be one 100% of the time.
  253. B:"All Mobs Are Blights"=false
  254.  
  255. # If true, the list is a whitelist. Otherwise it is a blacklist. [default: false]
  256. B:"Always Blight IsWhitelist"=false
  257.  
  258. # If "All Mobs Are Blights" is enabled, this list can be used to filter mobs. [default: ]
  259. S:"Always Blight List" <
  260. >
  261.  
  262. # The amplifier level on the speed potion effect applied to blights. Set -1 to disable, 0 is level 1. [range: -1 ~ 99, default: 4]
  263. I:"Amplifier Speed"=4
  264.  
  265. # The amplifier level on the strength potion effect applied to blights. Set -1 to disable, 0 is level 1. [range: -1 ~ 99, default: 1]
  266. I:"Amplifier Strength"=1
  267.  
  268. # Mobs listed here will never become blights, but can still receive extra health. There is also a blacklist for extra health. [default: [minecraft:wither], [minecraft:villager], [minecolonies:citizen]]
  269. S:Blacklist <
  270. minecraft:wither
  271. minecraft:villager
  272. minecolonies:citizen
  273. >
  274.  
  275. # If enabled, no bosses can become blights. If you need more control, use the Blacklist instead.
  276. B:"Blacklist All Bosses"=false
  277.  
  278. # If enabled, no hostile mobs can become blights.
  279. B:"Blacklist All Hostiles"=false
  280.  
  281. # If enabled, no passive (peaceful) mobs can become blights.
  282. B:"Blacklist All Passives"=false
  283.  
  284. # Determines the chance of a mob spawning as a blight. Formula is "blightChanceMulti * currentDifficulty / maxDifficulty". Setting to 0 will disable blights. Setting to 1 will guarantee blights at max difficulty. [range: 0.0 ~ 3.4028234663852886E38, default: 0.0625]
  285. S:"Blight Chance Multiplier"=0.0625
  286.  
  287. # When an entity spawns as a blight, their calculated difficulty is multiplied by this. Higher numbers mean more health and damage! [range: 1.0 ~ 3.4028234663852886E38, default: 3.0]
  288. S:"Blight Difficulty Multiplier"=3.0
  289.  
  290. # Should blights have the fire resistance potion effect?
  291. B:"Fire Resist"=true
  292.  
  293. # Set blight fires to "ride" on the blight they belong to. In some cases, this might cause the fire to follow the blight more smoothly, but doesn't seem to help in most cases. Leaving off is recommended.
  294. B:"Fire Rides Blights"=false
  295.  
  296. # Should blights have the invisibility potion effect?
  297. B:Invisibility=false
  298.  
  299. # Let all players know when a blight dies in chat.
  300. B:"Notify Players on Death"=false
  301.  
  302. # The duration (in ticks) of the potion effects applied to blights. The effects are refreshed frequently, so this value doesn't matter in most cases... except for the lingering potion effects left by blight creepers. Set to -1 for infinite time. Default is 5 minutes. [range: -1 ~ 2147483647, default: 6000]
  303. I:"Potion Duration"=6000
  304.  
  305. # Blight creepers will be supercharged, like when they are struck by lightning.
  306. B:"Supercharge Creepers"=false
  307.  
  308. # The multiplier applied to the amount of XP dropped when a blight is killed. [range: 0.0 ~ 1000.0, default: 10.0]
  309. S:"XP Multiplier"=10.0
  310.  
  311. equipment {
  312. # The chance of an additional armor piece being given. Every blight receives a helmet, then has this probability of receiving a chestplate. If it gets a chestplate, it has this probability of receiving leggings, etc. [range: 0.0 ~ 1.0, default: 0.5]
  313. S:"Armor Piece Chance"=0.5
  314.  
  315. # The chance that a blight will receive equipment in their hands (swords, etc.) They only get a chance at an offhand item if a main hand item is selected. Depending on the mods you have installed, there may not be any hand equipment to chose from. [range: 0.0 ~ 1.0, default: 0.5]
  316. S:"Hand Piece Chance"=0.5
  317.  
  318. # The highest commonly-occuring equipment tier for blights. This goes from 0 to 4 inclusive. For armor, the defaults (tiers 0 to 4) are leather, gold, chainmail, iron, and diamond. [range: 0 ~ 4, default: 1]
  319. I:"Highest Common Tier"=1
  320.  
  321. # The chance that a higher tier will be selected for a blight. A common tier is chosen first, then it has a few chances to increase. [range: 0.0 ~ 1.0, default: 0.095]
  322. S:"Tier Up Chance"=0.095
  323. }
  324.  
  325. }
  326.  
  327. health {
  328. # Allow boss mobs (dragon, wither, etc.) to spawn with extra health based on difficulty.
  329. B:"Allow Boss Extra Health"=true
  330.  
  331. # Allow hostile mobs (monsters) to spawn with extra health based on difficulty.
  332. B:"Allow Hostile Extra Health"=true
  333.  
  334. # Allow peaceful/passive mobs (such as animals) to spawn with extra health based on difficulty.
  335. B:"Allow Peaceful Extra Health"=true
  336.  
  337. # The minimum extra health a hostile mob will have per point of difficulty, before the scaling mode is accounted for. [range: 0.0 ~ 3.4028234663852886E38, default: 0.5]
  338. S:"Base Health Modifier"=0.5
  339.  
  340. # The minimum extra health a peaceful mob will have per point of difficulty, before the scaling mode is accounted for. Same as "Base Health Modifier", but for peaceful/passive mobs! [range: 0.0 ~ 3.4028234663852886E38, default: 0.25]
  341. S:"Base Health Modifier Peaceful"=0.25
  342.  
  343. # Mobs listed here will never receive extra health, and will not become blights. There is also a separate blacklist for blights, if you still want the mob in question to have extra health. [default: ]
  344. S:Blacklist <
  345. >
  346.  
  347. # Mobs will not gain extra health or become blights in these dimensions. Integers only, any other entries will be silently ignored. [default: ]
  348. S:"Dimension Blacklist" <
  349. >
  350.  
  351. # Describes how extra mob health is applied. This will not change the health of mobs that already exist!
  352. # ADD - Adds a value based on difficulty to the mob's health, ignoring the mob's default health.
  353. # MULTI - Multiplies the mob's health instead of adding a flat value. For example, endermen
  354. # will always have around twice the health of zombies with this option.
  355. # MULTI_HALF - Multiplies the mob's health, but the value is reduced for higher-health mobs.
  356. # MULTI_QUARTER - Same as MULTI_HALF, but the scaling factor is even less. [default: MULTI_HALF]
  357. S:"Scaling Mode"=MULTI
  358. }
  359.  
  360. ##########################################################################################################
  361. # potion
  362. #--------------------------------------------------------------------------------------------------------#
  363. # Potion effects applied to non-blights.
  364. ##########################################################################################################
  365.  
  366. potion {
  367. # The potion effects that mobs can spawn with. You can add effects from other mods if you want to, or remove existing ones. Each line has 3 values separated by commas: the potion ID, the minimum difficulty (higher = less common), and the level (1 = level I, 2 = level II, etc). [default: [minecraft:strength,30,1], [minecraft:speed,10,1], [minecraft:speed,50,2], [minecraft:fire_resistance,10,1], [minecraft:invisibility,25,1], [minecraft:resistance,30,1]]
  368. S:"Mob Potions" <
  369. minecraft:strength,30,1
  370. minecraft:speed,10,1
  371. minecraft:speed,50,2
  372. minecraft:fire_resistance,10,1
  373. minecraft:invisibility,25,1
  374. minecraft:resistance,30,1
  375. >
  376. }
  377.  
  378. }
  379.  
  380. fake_players {
  381. # If enabled, fake players will be able to get heart container drops when killing mobs. Disabling should prevent at least some mob grinders from getting heart drops.
  382. B:"Can Generate Hearts"=true
  383. }
  384.  
  385. player {
  386.  
  387. regen {
  388. # The amount of time (in ticks) between each bonus regen tick (a half heart being healed). [range: 0 ~ 2147483647, default: 100]
  389. I:Delay=100
  390.  
  391. # The amount of time (in ticks) after being hurt before bonus regen activates. [range: 0 ~ 2147483647, default: 400]
  392. I:"Delay (Initial)"=400
  393.  
  394. # Enable bonus health regen for players. Vanilla regen is not changed in any way, this just adds extra healing! Vanilla regen can be disabled with the naturalRegeneration gamerule.
  395. B:"Enable Bonus Regen"=true
  396.  
  397. # The food consumption for each bonus regen tick. [range: 0.0 ~ 1.0, default: 0.10000000149011612]
  398. S:"Exhaustion Added"=0.10000000149011612
  399.  
  400. # The maximum food level at which bonus regen will be active (vanilla max food is 20). [range: 0 ~ 2147483647, default: 2147483647]
  401. I:"Food Max"=2147483647
  402.  
  403. # The minimum food level at which bonus regen will be active (vanilla max food is 20). [range: 0 ~ 2147483647, default: 10]
  404. I:"Food Min"=10
  405.  
  406. # Bonus regen will stop when players have this much health or more. [range: 0 ~ 2147483647, default: 2147483647]
  407. I:"Health Max"=2147483647
  408.  
  409. # Bonus regen will stop when players have this much health or less. [range: 0 ~ 2147483647, default: 0]
  410. I:"Health Min"=0
  411. }
  412.  
  413. health {
  414. # Allow Scaling Health to modify the player's health. Scaling Health's changes are often compatible with other mods, assuming they use Minecraft's attribute system. If set to false, heart containers and the '/scalinghealth health' command will not work.
  415. B:"Allow Modified Health"=true
  416.  
  417. # The amount of health (in half hearts) a player will lose each time they die. Set to a negative number to cause players to gain health instead. [range: -2147483648 ~ 2147483647, default: 0]
  418. I:"Health Lost On Death"=0
  419.  
  420. # The maximum amount of health (in half hearts) a player can achieve with heart containers alone. Zero means unlimited. NOTE: Players must still obey Minecraft's max health cap. You can change that value with the "Max Health Cap" setting under the main category. [range: 0 ~ 2147483647, default: 0]
  421. I:"Max Health"=0
  422.  
  423. # Allows players' health to be reset at certain frequencies.
  424. # NONE - Do not do regular resets. Weekdays (SUNDAY, MONDAY, etc.) - Reset on this day of the week. If the player does not play on this day, they will be reset the next time they log in.
  425. # DAILY - Reset if the last time the player logged in was a different day. MONTHLY - Reset if the last time the player logged in was a different month (everyone resets on the first of the month). [default: NONE]
  426. S:"Reset Time"=NONE
  427.  
  428. # Allows the player's health to be set according to XP level. Each line will have the level, then the max health after a space. For example, "10 30" would give the player 15 hearts (30 health) at level 10. Note this is the "target health" for a player of this XP level. The actual bonus heart will be the value you enter minus starting health. The highest level the player has passed will be selected. The health bonus will stack with heart containers (just remember heart containers consume XP by default). [default: ]
  429. S:"Set Health By XP" <
  430. >
  431.  
  432. # The amount of health (in half hearts) players will start with when first joining the world. Vanilla is 20. [range: 2 ~ 2147483647, default: 20]
  433. I:"Starting Health"=20
  434. }
  435.  
  436. damage {
  437. # Also apply damage scaling to hostile mobs when they take damage. [default: false]
  438. B:"Affect Hostile Mobs"=true
  439.  
  440. # Also apply damage scaling to passive mobs when they take damage. [default: false]
  441. B:"Affect Passive Mobs"=true
  442.  
  443. # How much each point of difficulty affects damage scaling. With the default value of 0.04 (1/25th) and max difficulty of 250, that's up to a 10x multiplier on added damage. So player's would take 11x damage at max difficulty, if the source scale is set to 1.0. [range: 0.0 ~ 1000.0, default: 0.04]
  444. S:"Difficulty Weight"=0.05
  445.  
  446. # If the damage source is not in the "Scale By Source" list, this value is used instead. [range: -3.4028235E38 ~ 3.4028235E38, default: 0.0]
  447. S:"Generic Scale"=0.0
  448.  
  449. # Set damage scaling by damage source. All vanilla sources should be included, but set to no scaling. Mod sources can be added too, you'll just need the damage type string. The number represents how steeply the damage scales. 0 means no scaling (vanilla), 1 means it will be proportional to difficulty/max health (whichever you set). The scaling number can be anything, although I recommend a non-negative number. [default: [inFire 0.0], [lightningBolt 0.0], [onFire 0.0], [lava 0.0], [hotFloor 0.0], [inWall 0.0], [cramming 0.0], [drown 0.0], [starve 0.0], [cactus 0.0], [fall 0.0], [flyIntoWall 0.0], [outOfWorld 0.0], [generic 0.0], [magic 0.0], [wither 0.0], [anvil 0.0], [fallingBlock 0.0], [dragonBreath 0.0], [fireworks 0.0]]
  450. S:"Scale By Source" <
  451. inFire 0.0
  452. lightningBolt 0.0
  453. onFire 0.0
  454. lava 0.0
  455. hotFloor 0.0
  456. inWall 0.0
  457. cramming 0.0
  458. drown 0.0
  459. starve 0.0
  460. cactus 0.0
  461. fall 0.0
  462. flyIntoWall 0.0
  463. outOfWorld 0.0
  464. generic 0.0
  465. magic 0.0
  466. wither 0.0
  467. anvil 0.0
  468. fallingBlock 0.0
  469. dragonBreath 0.0
  470. fireworks 0.0
  471. >
  472.  
  473. # Set what value we scale against. MAX_HEALTH scales to player's max health MINUS starting health. Defaults to MAX_HEALTH if an invalid string is entered.
  474. # Valid values: [MAX_HEALTH, PLAYER_DIFFICULTY, AREA_DIFFICULTY] [default: MAX_HEALTH]
  475. S:"Scaling Mode"=MAX_HEALTH
  476. }
  477.  
  478. }
  479.  
  480. debug {
  481. # Draws random stuffs on the screen! And maybe does some other things.
  482. B:"Debug Mode"=false
  483.  
  484. # If debug mode is on, this will log details of damage done to players.
  485. B:"Log Player Damage"=true
  486.  
  487. # If debug mode is on, this will log details on mob spawns. This may slow down your game.
  488. B:"Log Spawns"=false
  489. }
  490.  
  491. pets {
  492. # The number of ticks between regen ticks on pets. Set to 0 to disable pet regen. [range: 0 ~ 72000, default: 600]
  493. I:"Regen Delay"=600
  494. }
  495.  
  496. network {
  497. # The number of ticks between update packets. Smaller numbers mean more packets (and more bandwidth and processing power used), but also less client-server desynconfig. [range: 1 ~ 1200, default: 20]
  498. I:"Packet Delay"=20
  499. }
  500.  
  501. world {
  502.  
  503. heart_crystal_ore {
  504. # The maximum number of extra veins created by distance from spawn. [range: 0.0 ~ 1000.0, default: 3.0]
  505. S:"Extra Vein Cap"=3.0
  506.  
  507. # The number of extra possible veins per chunk away from spawn. The default value will reach the cap at 50,000 blocks from spawn. [range: 0.0 ~ 1.0, default: 9.6E-4]
  508. S:"Extra Vein Rate"=9.6E-4
  509.  
  510. # The highest y-level the ore can be found at. Must be greater than Min Height [range: 0 ~ 255, default: 35]
  511. I:"Max Height"=35
  512.  
  513. # The lowest y-level the ore can be found at. Must be less than Max Height [range: 0 ~ 255, default: 10]
  514. I:"Min Height"=10
  515.  
  516. # The base number of heart crystal shards dropped by the ore. Fortune III can double this value at most. [range: 1 ~ 64, default: 1]
  517. I:"Quantity Dropped"=2
  518.  
  519. # The size of each vein. [range: 0 ~ 10000, default: 6]
  520. I:"Vein Size"=6
  521.  
  522. # The number of veins per chunk. The fractional part is a probability of an extra vein in each chunk. [range: 0.0 ~ 10000.0, default: 0.42857143]
  523. S:"Veins Per Chunk"=0.42857143
  524. }
  525.  
  526. }
  527.  
  528. compatibility {
  529. # Override the Morpheus new day handler to fire sleep events. Without this, difficulty will not increase when sleeping. [default: true]
  530. B:"Morpheus Support"=true
  531. }
  532.  
  533. holidays {
  534.  
  535. ##########################################################################################################
  536. # april_trickery
  537. #--------------------------------------------------------------------------------------------------------#
  538. # April Fools event options.
  539. ##########################################################################################################
  540.  
  541. april_trickery {
  542. # May cause silly things to happen on certain day(s) in April. [default: true]
  543. B:Enabled=true
  544.  
  545. # I need this in my life 24/7! [default: false]
  546. B:"Forced On"=false
  547. }
  548.  
  549. }
  550.  
  551. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement