* metabolism -> respirator, add reageanteffect and reagenteffectcondition, start on metabolizercomp/system * move LiverBehavior metabolism logic to Metabolizer * minor tweaks and update all YAML * how about actually taking conditions into account * off by one * removals * reviews
15 lines
296 B
C#
15 lines
296 B
C#
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Shared.Body.Metabolism
|
|
{
|
|
public class SweatAttemptEvent : CancellableEntityEventArgs
|
|
{
|
|
public SweatAttemptEvent(IEntity entity)
|
|
{
|
|
Entity = entity;
|
|
}
|
|
|
|
public IEntity Entity { get; }
|
|
}
|
|
}
|