2020-06-18 22:52:44 +10:00
|
|
|
using Content.Server.AI.Utility.Actions;
|
|
|
|
|
using Content.Server.AI.Utility.ExpandableActions.Nutrition;
|
2021-02-11 01:13:03 -08:00
|
|
|
using Robust.Shared.GameObjects;
|
2020-06-18 22:52:44 +10:00
|
|
|
|
|
|
|
|
namespace Content.Server.AI.Utility.BehaviorSets
|
|
|
|
|
{
|
|
|
|
|
public sealed class HungerBehaviorSet : BehaviorSet
|
|
|
|
|
{
|
|
|
|
|
public HungerBehaviorSet(IEntity owner) : base(owner)
|
|
|
|
|
{
|
|
|
|
|
Actions = new IAiUtility[]
|
|
|
|
|
{
|
|
|
|
|
new PickUpNearbyFoodExp(),
|
|
|
|
|
new UseFoodInInventoryExp(),
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|