2020-06-18 22:52:44 +10:00
|
|
|
using Content.Server.AI.Utility.Actions;
|
|
|
|
|
using Content.Server.AI.Utility.ExpandableActions.Combat.Melee;
|
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 SpirateBehaviorSet : BehaviorSet
|
|
|
|
|
{
|
|
|
|
|
public SpirateBehaviorSet(IEntity owner) : base(owner)
|
|
|
|
|
{
|
|
|
|
|
Actions = new IAiUtility[]
|
|
|
|
|
{
|
|
|
|
|
// TODO: Reload Ballistic
|
|
|
|
|
// TODO: Ideally long-term we should just store the weapons in backpack
|
|
|
|
|
new EquipMeleeExp(),
|
|
|
|
|
new PickUpMeleeWeaponExp(),
|
2020-08-24 20:33:03 +10:00
|
|
|
new MeleeAttackNearbyExp(),
|
2020-06-18 22:52:44 +10:00
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|