Medibot Fix (#18063)

This commit is contained in:
Arendian
2023-07-15 21:59:45 +02:00
committed by GitHub
parent b3a1b97919
commit 040cfe3aae
5 changed files with 31 additions and 25 deletions

View File

@@ -19,7 +19,7 @@ public sealed class MedibotComponent : Component
public string StandardMed = "Tricordrazine";
[DataField("standardMedAmount")]
public float StandardMedAmount = 15f;
public float StandardMedAmount = 30f;
/// <summary>
/// Med the bot will inject when OVER the emergency med damage threshold.
@@ -36,6 +36,7 @@ public sealed class MedibotComponent : Component
[DataField("injectSound")]
public SoundSpecifier InjectSound = new SoundPathSpecifier("/Audio/Items/hypospray.ogg");
public const float StandardMedDamageThreshold = 50f;
public const float StandardMedDamageThreshold = 0f;
public const float StandardMedDamageThresholdStop = 50f;
public const float EmergencyMedDamageThreshold = 100f;
}