* LoadoutSystem change, deathsquad species loadout * survival gear loadouts for disaster victims * skrek * centcom * syndicate agent * cburn * ERT * syndicates * Is it ever gonna be enough? * Take what you can * Move startingGearEquippedEvent after Loadouts are spawned * skreee * even more formatting * Unbreak auto internals activation * undo AddAllRoleLoadouts change * syndicate reinforcement survival loadouts * re-enable vox ghostroles
27 lines
876 B
C#
27 lines
876 B
C#
using Content.Shared.Preferences.Loadouts;
|
|
using Content.Shared.Roles;
|
|
using Robust.Shared.GameStates;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared.Clothing.Components;
|
|
|
|
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
|
public sealed partial class LoadoutComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// A list of starting gears, of which one will be given, before RoleLoadouts are equipped.
|
|
/// All elements are weighted the same in the list.
|
|
/// </summary>
|
|
[DataField("prototypes")]
|
|
[AutoNetworkedField]
|
|
public List<ProtoId<StartingGearPrototype>>? StartingGear;
|
|
|
|
/// <summary>
|
|
/// A list of role loadouts, of which one will be given.
|
|
/// All elements are weighted the same in the list.
|
|
/// </summary>
|
|
[DataField]
|
|
[AutoNetworkedField]
|
|
public List<ProtoId<RoleLoadoutPrototype>>? RoleLoadout;
|
|
}
|