Skip to content

Commit

Permalink
direction requested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Spielern committed Feb 2, 2025
1 parent 4ee3aa4 commit e91ac3a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public sealed partial class BlindHealingComponent : Component
/// A multiplier that will be applied to the above if an entity is repairing themselves.
/// </summary>
[DataField]
public float SelfHealPenalty = 3f;
public float SelfHealPenalty = 4f;

/// <summary>
/// Whether or not an entity is allowed to repair itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public sealed partial class WeldingHealingComponent : Component
/// The fuel amount needed to repair physical related damage
/// </summary>
[DataField]
public int FuelCost = 5;
public int FuelCost = 15;

[DataField]
public int DoAfterDelay = 3;
Expand All @@ -34,7 +34,7 @@ public sealed partial class WeldingHealingComponent : Component
/// A multiplier that will be applied to the above if an entity is repairing themselves.
/// </summary>
[DataField]
public float SelfHealPenalty = 3f;
public float SelfHealPenalty = 4f;

/// <summary>
/// Whether or not an entity is allowed to repair itself.
Expand All @@ -45,4 +45,4 @@ public sealed partial class WeldingHealingComponent : Component
[DataField(required: true)]
public List<string> DamageContainers;
}
}
}
2 changes: 1 addition & 1 deletion Resources/Prototypes/Entities/Objects/Tools/welders.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
- type: WeldingHealing # Same as Brutepack - EE IPCs
damageContainers:
- Silicon
fuelCost: 5
fuelCost: 15
damage:
types:
Blunt: -15
Expand Down
6 changes: 3 additions & 3 deletions Resources/Prototypes/_EE/Damage/modifier_sets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
id: IPC
coefficients:
Poison: 0
Cold: 0.2
Heat: 2
Shock: 2.5
Cold: 0.5
Heat: 1.5
Shock: 2

0 comments on commit e91ac3a

Please sign in to comment.