Frozen Flame: config file and defaults updates (#355)

This commit is contained in:
Greelan 2023-05-08 18:45:31 +10:00 committed by GitHub
parent 02dca1597b
commit 2c76124325
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 17 deletions

View File

@ -196,29 +196,29 @@
{
"DisplayName":"Armour Durability Reduction On Death",
"Category":"Frozen Flame Server Settings",
"Description":"Sets the amount of armour durability lost after death",
"Description":"Sets the amount of armour durability lost after death. Defaults: 5 (Campaign), 25 (Survival)",
"Keywords":"armour,durability,loss,reduction,armordurabilityreducementafterdeath",
"FieldName":"ArmorDurabilityReducementAfterDeath",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"/Script/FrozenFlame.GameBalance.ArmorDurabilityReducementAfterDeath",
"IncludeInCommandLine":false,
"DefaultValue":"25",
"Placeholder":"25",
"DefaultValue":"5",
"Placeholder":"5",
"EnumValues":{}
},
{
"DisplayName":"Default Weapon Durability Cost",
"Category":"Frozen Flame Server Settings",
"Description":"Sets the default weapon durability loss speed",
"Description":"Sets the default weapon durability loss speed. Defaults: 0.3 (Campaign), 0.5 (Survival)",
"Keywords":"weapon,durability,cost,speed,defaultweapondurabilitycost",
"FieldName":"DefaultWeaponDurabilityCost",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"/Script/FrozenFlame.GameBalance.DefaultWeaponDurabilityCost",
"IncludeInCommandLine":false,
"DefaultValue":"0.5",
"Placeholder":"0.5",
"DefaultValue":"0.3",
"Placeholder":"0.3",
"EnumValues":{}
},
{
@ -482,15 +482,15 @@
{
"DisplayName":"Decay Threshold",
"Category":"Frozen Flame Server Settings",
"Description":"Sets a minimum durability that keeps after weather decay system damage",
"Description":"Sets a minimum durability that keeps after weather decay system damage. Defaults: 0.5 (Campaign), 0 (Survival)",
"Keywords":"decay,threshold,minimum,durability,decaythreshold",
"FieldName":"DecayThreshold",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"/Script/FrozenFlame.GameBalance.DecayThreshold",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"Placeholder":"0",
"DefaultValue":"0.5",
"Placeholder":"0.5",
"EnumValues":{}
},
{

View File

@ -1,16 +1,18 @@
[/Script/FrozenFlame.GameBalance]
bSkipTutorial=False
HealthRateAfterRespawn=0.5
bRestoreHealthOnLevelUp=True
ArmorDurabilityReducementAfterDeath=25
DefaultWeaponDurabilityCost=0.5
JumpStaminaCost=6
SprintStaminaCost=1.0
bDropEquippedItems=False
bDropEquipableItems=True
bDropFoodItems=True
ArmorDurabilityReducementAfterDeath=5
DefaultWeaponDurabilityCost=0.3
HalfSlowdownOverweightRatio=1
FullSlowdownOverweightRatio=1.5
LevelUpFlameRate=1.0
bDemolishResourceDropMultiplier=0.5
DecayThreshold=0
DecayThreshold=0.5