Frozen Flame: config file and defaults updates (#355)
This commit is contained in:
parent
02dca1597b
commit
2c76124325
@ -196,29 +196,29 @@
|
|||||||
{
|
{
|
||||||
"DisplayName":"Armour Durability Reduction On Death",
|
"DisplayName":"Armour Durability Reduction On Death",
|
||||||
"Category":"Frozen Flame Server Settings",
|
"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",
|
"Keywords":"armour,durability,loss,reduction,armordurabilityreducementafterdeath",
|
||||||
"FieldName":"ArmorDurabilityReducementAfterDeath",
|
"FieldName":"ArmorDurabilityReducementAfterDeath",
|
||||||
"InputType":"number",
|
"InputType":"number",
|
||||||
"IsFlagArgument":false,
|
"IsFlagArgument":false,
|
||||||
"ParamFieldName":"/Script/FrozenFlame.GameBalance.ArmorDurabilityReducementAfterDeath",
|
"ParamFieldName":"/Script/FrozenFlame.GameBalance.ArmorDurabilityReducementAfterDeath",
|
||||||
"IncludeInCommandLine":false,
|
"IncludeInCommandLine":false,
|
||||||
"DefaultValue":"25",
|
"DefaultValue":"5",
|
||||||
"Placeholder":"25",
|
"Placeholder":"5",
|
||||||
"EnumValues":{}
|
"EnumValues":{}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DisplayName":"Default Weapon Durability Cost",
|
"DisplayName":"Default Weapon Durability Cost",
|
||||||
"Category":"Frozen Flame Server Settings",
|
"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",
|
"Keywords":"weapon,durability,cost,speed,defaultweapondurabilitycost",
|
||||||
"FieldName":"DefaultWeaponDurabilityCost",
|
"FieldName":"DefaultWeaponDurabilityCost",
|
||||||
"InputType":"number",
|
"InputType":"number",
|
||||||
"IsFlagArgument":false,
|
"IsFlagArgument":false,
|
||||||
"ParamFieldName":"/Script/FrozenFlame.GameBalance.DefaultWeaponDurabilityCost",
|
"ParamFieldName":"/Script/FrozenFlame.GameBalance.DefaultWeaponDurabilityCost",
|
||||||
"IncludeInCommandLine":false,
|
"IncludeInCommandLine":false,
|
||||||
"DefaultValue":"0.5",
|
"DefaultValue":"0.3",
|
||||||
"Placeholder":"0.5",
|
"Placeholder":"0.3",
|
||||||
"EnumValues":{}
|
"EnumValues":{}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -482,15 +482,15 @@
|
|||||||
{
|
{
|
||||||
"DisplayName":"Decay Threshold",
|
"DisplayName":"Decay Threshold",
|
||||||
"Category":"Frozen Flame Server Settings",
|
"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",
|
"Keywords":"decay,threshold,minimum,durability,decaythreshold",
|
||||||
"FieldName":"DecayThreshold",
|
"FieldName":"DecayThreshold",
|
||||||
"InputType":"number",
|
"InputType":"number",
|
||||||
"IsFlagArgument":false,
|
"IsFlagArgument":false,
|
||||||
"ParamFieldName":"/Script/FrozenFlame.GameBalance.DecayThreshold",
|
"ParamFieldName":"/Script/FrozenFlame.GameBalance.DecayThreshold",
|
||||||
"IncludeInCommandLine":false,
|
"IncludeInCommandLine":false,
|
||||||
"DefaultValue":"0",
|
"DefaultValue":"0.5",
|
||||||
"Placeholder":"0",
|
"Placeholder":"0.5",
|
||||||
"EnumValues":{}
|
"EnumValues":{}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -1,16 +1,18 @@
|
|||||||
[/Script/FrozenFlame.GameBalance]
|
[/Script/FrozenFlame.GameBalance]
|
||||||
bSkipTutorial=False
|
|
||||||
|
|
||||||
HealthRateAfterRespawn=0.5
|
HealthRateAfterRespawn=0.5
|
||||||
bRestoreHealthOnLevelUp=True
|
bRestoreHealthOnLevelUp=True
|
||||||
|
|
||||||
ArmorDurabilityReducementAfterDeath=25
|
JumpStaminaCost=6
|
||||||
DefaultWeaponDurabilityCost=0.5
|
SprintStaminaCost=1.0
|
||||||
|
|
||||||
bDropEquippedItems=False
|
ArmorDurabilityReducementAfterDeath=5
|
||||||
bDropEquipableItems=True
|
DefaultWeaponDurabilityCost=0.3
|
||||||
bDropFoodItems=True
|
|
||||||
|
HalfSlowdownOverweightRatio=1
|
||||||
|
FullSlowdownOverweightRatio=1.5
|
||||||
|
|
||||||
|
LevelUpFlameRate=1.0
|
||||||
|
|
||||||
bDemolishResourceDropMultiplier=0.5
|
bDemolishResourceDropMultiplier=0.5
|
||||||
|
|
||||||
DecayThreshold=0
|
DecayThreshold=0.5
|
Loading…
Reference in New Issue
Block a user