add exploding pen from goldeneye (#14421)

This commit is contained in:
deltanedas
2023-03-20 19:32:28 +00:00
committed by GitHub
parent 1ca6ced0cc
commit 93425f0dd5
7 changed files with 71 additions and 8 deletions

View File

@@ -15,7 +15,7 @@ namespace Content.Server.Explosion.Components
public List<float>? DelayOptions = null;
/// <summary>
/// If not null, this timer will periodically play this sound wile active.
/// If not null, this timer will periodically play this sound while active.
/// </summary>
[DataField("beepSound")]
public SoundSpecifier? BeepSound;
@@ -44,5 +44,11 @@ namespace Content.Server.Explosion.Components
/// </summary>
[DataField("canToggleStartOnStick")]
public bool AllowToggleStartOnStick;
/// <summary>
/// Whether you can examine the item to see its timer or not.
/// </summary>
[DataField("examinable")]
public bool Examinable = true;
}
}