Rebalance traitor objective difficulty (#5988)
* Adjusted traitor steal objectives * Added theft target to cargo * Rebalanced difficulty
This commit is contained in:
parent
007f4c6cbe
commit
e3de9bcd72
4 changed files with 4 additions and 4 deletions
|
|
@ -25,7 +25,7 @@ namespace Content.Server.Objectives.Conditions
|
|||
|
||||
public float Progress => (_mind?.CharacterDeadIC ?? true) ? 1f : 0f;
|
||||
|
||||
public float Difficulty => 1f;
|
||||
public float Difficulty => 0.5f;
|
||||
|
||||
public bool Equals(IObjectiveCondition? other)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ namespace Content.Server.Objectives.Conditions
|
|||
|
||||
public float Progress => (Target?.CharacterDeadIC ?? true) ? 1f : 0f;
|
||||
|
||||
public float Difficulty => 2f;
|
||||
public float Difficulty => 2.25f;
|
||||
|
||||
public bool Equals(IObjectiveCondition? other)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ namespace Content.Server.Objectives.Conditions
|
|||
|
||||
public float Progress => (_mind?.CharacterDeadIC ?? false) ? 0f : 1f;
|
||||
|
||||
public float Difficulty => 1f;
|
||||
public float Difficulty => 1.25f;
|
||||
|
||||
public bool Equals(IObjectiveCondition? other)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ namespace Content.Server.Objectives.Conditions
|
|||
}
|
||||
}
|
||||
|
||||
public float Difficulty => 1.5f;
|
||||
public float Difficulty => 2f;
|
||||
|
||||
public bool Equals(IObjectiveCondition? other)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue