2020-06-18 22:52:44 +10:00
|
|
|
using Content.Server.AI.Utility.Actions;
|
|
|
|
|
using Content.Server.AI.Utility.ExpandableActions.Nutrition;
|
|
|
|
|
using Robust.Shared.Interfaces.GameObjects;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.AI.Utility.BehaviorSets
|
|
|
|
|
{
|
|
|
|
|
public sealed class ThirstBehaviorSet : BehaviorSet
|
|
|
|
|
{
|
|
|
|
|
public ThirstBehaviorSet(IEntity owner) : base(owner)
|
|
|
|
|
{
|
|
|
|
|
Actions = new IAiUtility[]
|
|
|
|
|
{
|
|
|
|
|
new PickUpNearbyDrinkExp(),
|
2020-08-12 06:01:55 +10:00
|
|
|
new UseDrinkInInventoryExp(),
|
2020-06-18 22:52:44 +10:00
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|