De-duplicate loadout gear (#30341)
* De-duplicate loadout gear Needs supporting code, probably with an interface with StartingGearPrototype which would also use it, but I regexed the yaml. * Code updates * Remaining yaml * Fix automatic naming * raiseEvent * Don't code when tired kids
This commit is contained in:
@@ -43,6 +43,7 @@ public sealed class LobbyUIController : UIController, IOnStateEntered<LobbyState
|
|||||||
[UISystemDependency] private readonly ClientInventorySystem _inventory = default!;
|
[UISystemDependency] private readonly ClientInventorySystem _inventory = default!;
|
||||||
[UISystemDependency] private readonly StationSpawningSystem _spawn = default!;
|
[UISystemDependency] private readonly StationSpawningSystem _spawn = default!;
|
||||||
[UISystemDependency] private readonly GuidebookSystem _guide = default!;
|
[UISystemDependency] private readonly GuidebookSystem _guide = default!;
|
||||||
|
[UISystemDependency] private readonly LoadoutSystem _loadouts = default!;
|
||||||
|
|
||||||
private CharacterSetupGui? _characterSetup;
|
private CharacterSetupGui? _characterSetup;
|
||||||
private HumanoidProfileEditor? _profileEditor;
|
private HumanoidProfileEditor? _profileEditor;
|
||||||
@@ -365,7 +366,7 @@ public sealed class LobbyUIController : UIController, IOnStateEntered<LobbyState
|
|||||||
if (!_prototypeManager.TryIndex(loadout.Prototype, out var loadoutProto))
|
if (!_prototypeManager.TryIndex(loadout.Prototype, out var loadoutProto))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
_spawn.EquipStartingGear(uid, _prototypeManager.Index(loadoutProto.Equipment));
|
_spawn.EquipStartingGear(uid, loadoutProto);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -388,36 +389,51 @@ public sealed class LobbyUIController : UIController, IOnStateEntered<LobbyState
|
|||||||
if (!_prototypeManager.TryIndex(loadout.Prototype, out var loadoutProto))
|
if (!_prototypeManager.TryIndex(loadout.Prototype, out var loadoutProto))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
// TODO: Need some way to apply starting gear to an entity coz holy fucking shit dude.
|
// TODO: Need some way to apply starting gear to an entity and replace existing stuff coz holy fucking shit dude.
|
||||||
var loadoutGear = _prototypeManager.Index(loadoutProto.Equipment);
|
|
||||||
|
|
||||||
foreach (var slot in slots)
|
foreach (var slot in slots)
|
||||||
{
|
{
|
||||||
var itemType = loadoutGear.GetGear(slot.Name);
|
// Try startinggear first
|
||||||
|
if (_prototypeManager.TryIndex(loadoutProto.StartingGear, out var loadoutGear))
|
||||||
if (_inventory.TryUnequip(dummy, slot.Name, out var unequippedItem, silent: true, force: true, reparent: false))
|
|
||||||
{
|
{
|
||||||
EntityManager.DeleteEntity(unequippedItem.Value);
|
var itemType = ((IEquipmentLoadout) loadoutGear).GetGear(slot.Name);
|
||||||
|
|
||||||
|
if (_inventory.TryUnequip(dummy, slot.Name, out var unequippedItem, silent: true, force: true, reparent: false))
|
||||||
|
{
|
||||||
|
EntityManager.DeleteEntity(unequippedItem.Value);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (itemType != string.Empty)
|
||||||
|
{
|
||||||
|
var item = EntityManager.SpawnEntity(itemType, MapCoordinates.Nullspace);
|
||||||
|
_inventory.TryEquip(dummy, item, slot.Name, true, true);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
if (itemType != string.Empty)
|
|
||||||
{
|
{
|
||||||
var item = EntityManager.SpawnEntity(itemType, MapCoordinates.Nullspace);
|
var itemType = ((IEquipmentLoadout) loadoutProto).GetGear(slot.Name);
|
||||||
_inventory.TryEquip(dummy, item, slot.Name, true, true);
|
|
||||||
|
if (_inventory.TryUnequip(dummy, slot.Name, out var unequippedItem, silent: true, force: true, reparent: false))
|
||||||
|
{
|
||||||
|
EntityManager.DeleteEntity(unequippedItem.Value);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (itemType != string.Empty)
|
||||||
|
{
|
||||||
|
var item = EntityManager.SpawnEntity(itemType, MapCoordinates.Nullspace);
|
||||||
|
_inventory.TryEquip(dummy, item, slot.Name, true, true);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (job.StartingGear == null)
|
if (!_prototypeManager.TryIndex(job.StartingGear, out var gear))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
var gear = _prototypeManager.Index<StartingGearPrototype>(job.StartingGear);
|
|
||||||
|
|
||||||
foreach (var slot in slots)
|
foreach (var slot in slots)
|
||||||
{
|
{
|
||||||
var itemType = gear.GetGear(slot.Name);
|
var itemType = ((IEquipmentLoadout) gear).GetGear(slot.Name);
|
||||||
|
|
||||||
if (_inventory.TryUnequip(dummy, slot.Name, out var unequippedItem, silent: true, force: true, reparent: false))
|
if (_inventory.TryUnequip(dummy, slot.Name, out var unequippedItem, silent: true, force: true, reparent: false))
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -18,10 +18,6 @@ public sealed class LoadoutTests
|
|||||||
id: PlayTimeLoadoutTester
|
id: PlayTimeLoadoutTester
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: TestJumpsuit
|
|
||||||
equipment: TestJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: TestJumpsuit
|
id: TestJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitColorGrey
|
jumpsuit: ClothingUniformJumpsuitColorGrey
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ public sealed class StartingGearPrototypeStorageTest
|
|||||||
{
|
{
|
||||||
foreach (var gearProto in protos)
|
foreach (var gearProto in protos)
|
||||||
{
|
{
|
||||||
var backpackProto = gearProto.GetGear("back");
|
var backpackProto = ((IEquipmentLoadout) gearProto).GetGear("back");
|
||||||
if (backpackProto == string.Empty)
|
if (backpackProto == string.Empty)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
|||||||
@@ -97,11 +97,12 @@ namespace Content.Server.Administration.Commands
|
|||||||
foreach (var slot in slots)
|
foreach (var slot in slots)
|
||||||
{
|
{
|
||||||
invSystem.TryUnequip(target, slot.Name, true, true, false, inventoryComponent);
|
invSystem.TryUnequip(target, slot.Name, true, true, false, inventoryComponent);
|
||||||
var gearStr = startingGear.GetGear(slot.Name);
|
var gearStr = ((IEquipmentLoadout) startingGear).GetGear(slot.Name);
|
||||||
if (gearStr == string.Empty)
|
if (gearStr == string.Empty)
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
var equipmentEntity = entityManager.SpawnEntity(gearStr, entityManager.GetComponent<TransformComponent>(target).Coordinates);
|
var equipmentEntity = entityManager.SpawnEntity(gearStr, entityManager.GetComponent<TransformComponent>(target).Coordinates);
|
||||||
if (slot.Name == "id" &&
|
if (slot.Name == "id" &&
|
||||||
entityManager.TryGetComponent(equipmentEntity, out PdaComponent? pdaComponent) &&
|
entityManager.TryGetComponent(equipmentEntity, out PdaComponent? pdaComponent) &&
|
||||||
|
|||||||
@@ -40,12 +40,25 @@ public sealed class LoadoutSystem : EntitySystem
|
|||||||
return "Job" + loadout;
|
return "Job" + loadout;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public EntProtoId? GetFirstOrNull(LoadoutPrototype loadout)
|
||||||
|
{
|
||||||
|
EntProtoId? proto = null;
|
||||||
|
|
||||||
|
if (_protoMan.TryIndex(loadout.StartingGear, out var gear))
|
||||||
|
{
|
||||||
|
proto = GetFirstOrNull(gear);
|
||||||
|
}
|
||||||
|
|
||||||
|
proto ??= GetFirstOrNull((IEquipmentLoadout)loadout);
|
||||||
|
return proto;
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Tries to get the first entity prototype for operations such as sprite drawing.
|
/// Tries to get the first entity prototype for operations such as sprite drawing.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public EntProtoId? GetFirstOrNull(LoadoutPrototype loadout)
|
public EntProtoId? GetFirstOrNull(IEquipmentLoadout? gear)
|
||||||
{
|
{
|
||||||
if (!_protoMan.TryIndex(loadout.Equipment, out var gear))
|
if (gear == null)
|
||||||
return null;
|
return null;
|
||||||
|
|
||||||
var count = gear.Equipment.Count + gear.Inhand.Count + gear.Storage.Values.Sum(x => x.Count);
|
var count = gear.Equipment.Count + gear.Inhand.Count + gear.Storage.Values.Sum(x => x.Count);
|
||||||
@@ -75,13 +88,23 @@ public sealed class LoadoutSystem : EntitySystem
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public string GetName(LoadoutPrototype loadout)
|
||||||
|
{
|
||||||
|
if (_protoMan.TryIndex(loadout.StartingGear, out var gear))
|
||||||
|
{
|
||||||
|
return GetName(gear);
|
||||||
|
}
|
||||||
|
|
||||||
|
return GetName((IEquipmentLoadout) loadout);
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Tries to get the name of a loadout.
|
/// Tries to get the name of a loadout.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string GetName(LoadoutPrototype loadout)
|
public string GetName(IEquipmentLoadout? gear)
|
||||||
{
|
{
|
||||||
if (!_protoMan.TryIndex(loadout.Equipment, out var gear))
|
if (gear == null)
|
||||||
return Loc.GetString("loadout-unknown");
|
return string.Empty;
|
||||||
|
|
||||||
var count = gear.Equipment.Count + gear.Storage.Values.Sum(o => o.Count) + gear.Inhand.Count;
|
var count = gear.Equipment.Count + gear.Storage.Values.Sum(o => o.Count) + gear.Inhand.Count;
|
||||||
|
|
||||||
@@ -111,7 +134,7 @@ public sealed class LoadoutSystem : EntitySystem
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return Loc.GetString($"loadout-{loadout.ID}");
|
return Loc.GetString($"unknown");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnMapInit(EntityUid uid, LoadoutComponent component, MapInitEvent args)
|
private void OnMapInit(EntityUid uid, LoadoutComponent component, MapInitEvent args)
|
||||||
@@ -119,8 +142,7 @@ public sealed class LoadoutSystem : EntitySystem
|
|||||||
// Use starting gear if specified
|
// Use starting gear if specified
|
||||||
if (component.StartingGear != null)
|
if (component.StartingGear != null)
|
||||||
{
|
{
|
||||||
var gear = _protoMan.Index(_random.Pick(component.StartingGear));
|
_station.EquipStartingGear(uid, _random.Pick(component.StartingGear));
|
||||||
_station.EquipStartingGear(uid, gear);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -8,13 +8,17 @@ namespace Content.Shared.Preferences.Loadouts;
|
|||||||
/// Individual loadout item to be applied.
|
/// Individual loadout item to be applied.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Prototype]
|
[Prototype]
|
||||||
public sealed partial class LoadoutPrototype : IPrototype
|
public sealed partial class LoadoutPrototype : IPrototype, IEquipmentLoadout
|
||||||
{
|
{
|
||||||
[IdDataField]
|
[IdDataField]
|
||||||
public string ID { get; } = string.Empty;
|
public string ID { get; } = string.Empty;
|
||||||
|
|
||||||
[DataField(required: true)]
|
/*
|
||||||
public ProtoId<StartingGearPrototype> Equipment;
|
* You can either use an existing StartingGearPrototype or specify it inline to avoid bloating yaml.
|
||||||
|
*/
|
||||||
|
|
||||||
|
[DataField]
|
||||||
|
public ProtoId<StartingGearPrototype>? StartingGear;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Effects to be applied when the loadout is applied.
|
/// Effects to be applied when the loadout is applied.
|
||||||
@@ -22,4 +26,16 @@ public sealed partial class LoadoutPrototype : IPrototype
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
[DataField]
|
[DataField]
|
||||||
public List<LoadoutEffect> Effects = new();
|
public List<LoadoutEffect> Effects = new();
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
[DataField]
|
||||||
|
public Dictionary<string, EntProtoId> Equipment { get; set; } = new();
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
[DataField]
|
||||||
|
public List<EntProtoId> Inhand { get; set; } = new();
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
[DataField]
|
||||||
|
public Dictionary<string, List<EntProtoId>> Storage { get; set; } = new();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -87,8 +87,8 @@ namespace Content.Shared.Roles
|
|||||||
[DataField("antagAdvantage")]
|
[DataField("antagAdvantage")]
|
||||||
public int AntagAdvantage = 0;
|
public int AntagAdvantage = 0;
|
||||||
|
|
||||||
[DataField("startingGear", customTypeSerializer: typeof(PrototypeIdSerializer<StartingGearPrototype>))]
|
[DataField]
|
||||||
public string? StartingGear { get; private set; }
|
public ProtoId<StartingGearPrototype>? StartingGear { get; private set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Use this to spawn in as a non-humanoid (borg, test subject, etc.)
|
/// Use this to spawn in as a non-humanoid (borg, test subject, etc.)
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototy
|
|||||||
namespace Content.Shared.Roles;
|
namespace Content.Shared.Roles;
|
||||||
|
|
||||||
[Prototype]
|
[Prototype]
|
||||||
public sealed partial class StartingGearPrototype : IPrototype, IInheritingPrototype
|
public sealed partial class StartingGearPrototype : IPrototype, IInheritingPrototype, IEquipmentLoadout
|
||||||
{
|
{
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
[ViewVariables]
|
[ViewVariables]
|
||||||
@@ -19,26 +19,41 @@ public sealed partial class StartingGearPrototype : IPrototype, IInheritingProto
|
|||||||
[AbstractDataField]
|
[AbstractDataField]
|
||||||
public bool Abstract { get; }
|
public bool Abstract { get; }
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
[DataField]
|
||||||
|
[AlwaysPushInheritance]
|
||||||
|
public Dictionary<string, EntProtoId> Equipment { get; set; } = new();
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
[DataField]
|
||||||
|
[AlwaysPushInheritance]
|
||||||
|
public List<EntProtoId> Inhand { get; set; } = new();
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
[DataField]
|
||||||
|
[AlwaysPushInheritance]
|
||||||
|
public Dictionary<string, List<EntProtoId>> Storage { get; set; } = new();
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Specifies the starting entity prototypes and where to equip them for the specified class.
|
||||||
|
/// </summary>
|
||||||
|
public interface IEquipmentLoadout
|
||||||
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The slot and entity prototype ID of the equipment that is to be spawned and equipped onto the entity.
|
/// The slot and entity prototype ID of the equipment that is to be spawned and equipped onto the entity.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[DataField]
|
public Dictionary<string, EntProtoId> Equipment { get; set; }
|
||||||
[AlwaysPushInheritance]
|
|
||||||
public Dictionary<string, EntProtoId> Equipment = new();
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The inhand items that are equipped when this starting gear is equipped onto an entity.
|
/// The inhand items that are equipped when this starting gear is equipped onto an entity.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[DataField]
|
public List<EntProtoId> Inhand { get; set; }
|
||||||
[AlwaysPushInheritance]
|
|
||||||
public List<EntProtoId> Inhand = new(0);
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Inserts entities into the specified slot's storage (if it does have storage).
|
/// Inserts entities into the specified slot's storage (if it does have storage).
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[DataField]
|
public Dictionary<string, List<EntProtoId>> Storage { get; set; }
|
||||||
[AlwaysPushInheritance]
|
|
||||||
public Dictionary<string, List<EntProtoId>> Storage = new();
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the entity prototype ID of a slot in this starting gear.
|
/// Gets the entity prototype ID of a slot in this starting gear.
|
||||||
|
|||||||
@@ -49,25 +49,32 @@ public abstract class SharedStationSpawningSystem : EntitySystem
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!PrototypeManager.TryIndex(loadoutProto.Equipment, out var startingGear))
|
EquipStartingGear(entity, loadoutProto, raiseEvent: false);
|
||||||
{
|
|
||||||
Log.Error($"Unable to find starting gear {loadoutProto.Equipment} for loadout {loadoutProto}");
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Handle any extra data here.
|
|
||||||
EquipStartingGear(entity, startingGear, raiseEvent: false);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void EquipStartingGear(EntityUid entity, LoadoutPrototype loadout, bool raiseEvent = true)
|
||||||
|
{
|
||||||
|
EquipStartingGear(entity, loadout.StartingGear, raiseEvent);
|
||||||
|
EquipStartingGear(entity, (IEquipmentLoadout) loadout, raiseEvent);
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// <see cref="EquipStartingGear(Robust.Shared.GameObjects.EntityUid,System.Nullable{Robust.Shared.Prototypes.ProtoId{Content.Shared.Roles.StartingGearPrototype}},bool)"/>
|
/// <see cref="EquipStartingGear(Robust.Shared.GameObjects.EntityUid,System.Nullable{Robust.Shared.Prototypes.ProtoId{Content.Shared.Roles.StartingGearPrototype}},bool)"/>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public void EquipStartingGear(EntityUid entity, ProtoId<StartingGearPrototype>? startingGear, bool raiseEvent = true)
|
public void EquipStartingGear(EntityUid entity, ProtoId<StartingGearPrototype>? startingGear, bool raiseEvent = true)
|
||||||
{
|
{
|
||||||
PrototypeManager.TryIndex(startingGear, out var gearProto);
|
PrototypeManager.TryIndex(startingGear, out var gearProto);
|
||||||
EquipStartingGear(entity, gearProto);
|
EquipStartingGear(entity, gearProto, raiseEvent);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// <see cref="EquipStartingGear(Robust.Shared.GameObjects.EntityUid,System.Nullable{Robust.Shared.Prototypes.ProtoId{Content.Shared.Roles.StartingGearPrototype}},bool)"/>
|
||||||
|
/// </summary>
|
||||||
|
public void EquipStartingGear(EntityUid entity, StartingGearPrototype? startingGear, bool raiseEvent = true)
|
||||||
|
{
|
||||||
|
EquipStartingGear(entity, (IEquipmentLoadout?) startingGear, raiseEvent);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -76,7 +83,7 @@ public abstract class SharedStationSpawningSystem : EntitySystem
|
|||||||
/// <param name="entity">Entity to load out.</param>
|
/// <param name="entity">Entity to load out.</param>
|
||||||
/// <param name="startingGear">Starting gear to use.</param>
|
/// <param name="startingGear">Starting gear to use.</param>
|
||||||
/// <param name="raiseEvent">Should we raise the event for equipped. Set to false if you will call this manually</param>
|
/// <param name="raiseEvent">Should we raise the event for equipped. Set to false if you will call this manually</param>
|
||||||
public void EquipStartingGear(EntityUid entity, StartingGearPrototype? startingGear, bool raiseEvent = true)
|
public void EquipStartingGear(EntityUid entity, IEquipmentLoadout? startingGear, bool raiseEvent = true)
|
||||||
{
|
{
|
||||||
if (startingGear == null)
|
if (startingGear == null)
|
||||||
return;
|
return;
|
||||||
@@ -145,4 +152,4 @@ public abstract class SharedStationSpawningSystem : EntitySystem
|
|||||||
RaiseLocalEvent(entity, ref ev);
|
RaiseLocalEvent(entity, ref ev);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,76 +1,44 @@
|
|||||||
# Head
|
# Head
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CargoTechnicianHead
|
|
||||||
equipment: CargoTechnicianHead
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CargoTechnicianHead
|
id: CargoTechnicianHead
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatCargosoft
|
head: ClothingHeadHatCargosoft
|
||||||
|
|
||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CargoTechnicianJumpsuit
|
|
||||||
equipment: CargoTechnicianJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CargoTechnicianJumpsuit
|
id: CargoTechnicianJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitCargo
|
jumpsuit: ClothingUniformJumpsuitCargo
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CargoTechnicianJumpskirt
|
|
||||||
equipment: CargoTechnicianJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CargoTechnicianJumpskirt
|
id: CargoTechnicianJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtCargo
|
jumpsuit: ClothingUniformJumpskirtCargo
|
||||||
|
|
||||||
# Back
|
# Back
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CargoTechnicianBackpack
|
|
||||||
equipment: CargoTechnicianBackpack
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CargoTechnicianBackpack
|
id: CargoTechnicianBackpack
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackCargo
|
back: ClothingBackpackCargo
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CargoTechnicianSatchel
|
|
||||||
equipment: CargoTechnicianSatchel
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CargoTechnicianSatchel
|
id: CargoTechnicianSatchel
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackSatchelCargo
|
back: ClothingBackpackSatchelCargo
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CargoTechnicianDuffel
|
|
||||||
equipment: CargoTechnicianDuffel
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CargoTechnicianDuffel
|
id: CargoTechnicianDuffel
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackDuffelCargo
|
back: ClothingBackpackDuffelCargo
|
||||||
|
|
||||||
# OuterClothing
|
# OuterClothing
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CargoTechnicianWintercoat
|
|
||||||
equipment: CargoTechnicianWintercoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CargoTechnicianWintercoat
|
id: CargoTechnicianWintercoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterWinterCargo
|
outerClothing: ClothingOuterWinterCargo
|
||||||
|
|
||||||
# Shoes
|
# Shoes
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CargoWinterBoots
|
|
||||||
equipment: CargoWinterBoots
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CargoWinterBoots
|
id: CargoWinterBoots
|
||||||
equipment:
|
equipment:
|
||||||
shoes: ClothingShoesBootsWinterCargo
|
shoes: ClothingShoesBootsWinterCargo
|
||||||
|
|||||||
@@ -1,93 +1,53 @@
|
|||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: QuartermasterJumpsuit
|
|
||||||
equipment: QuartermasterJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: QuartermasterJumpsuit
|
id: QuartermasterJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitQM
|
jumpsuit: ClothingUniformJumpsuitQM
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: QuartermasterJumpskirt
|
|
||||||
equipment: QuartermasterJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: QuartermasterJumpskirt
|
id: QuartermasterJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtQM
|
jumpsuit: ClothingUniformJumpskirtQM
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: QuartermasterTurtleneck
|
|
||||||
equipment: QuartermasterTurtleneck
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: QuartermasterTurtleneck
|
id: QuartermasterTurtleneck
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitQMTurtleneck
|
jumpsuit: ClothingUniformJumpsuitQMTurtleneck
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: QuartermasterTurtleneckSkirt
|
|
||||||
equipment: QuartermasterTurtleneckSkirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: QuartermasterTurtleneckSkirt
|
id: QuartermasterTurtleneckSkirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtQMTurtleneck
|
jumpsuit: ClothingUniformJumpskirtQMTurtleneck
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: QuartermasterFormalSuit
|
|
||||||
equipment: QuartermasterFormalSuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: QuartermasterFormalSuit
|
id: QuartermasterFormalSuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitQMFormal
|
jumpsuit: ClothingUniformJumpsuitQMFormal
|
||||||
|
|
||||||
# Head
|
# Head
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: QuartermasterHead
|
|
||||||
equipment: QuartermasterHead
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: QuartermasterHead
|
id: QuartermasterHead
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatQMsoft
|
head: ClothingHeadHatQMsoft
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: QuartermasterBeret
|
|
||||||
equipment: QuartermasterBeret
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: QuartermasterBeret
|
id: QuartermasterBeret
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatBeretQM
|
head: ClothingHeadHatBeretQM
|
||||||
|
|
||||||
# Neck
|
# Neck
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: QuartermasterCloak
|
|
||||||
equipment: QuartermasterCloak
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: QuartermasterCloak
|
id: QuartermasterCloak
|
||||||
equipment:
|
equipment:
|
||||||
neck: ClothingNeckCloakQm
|
neck: ClothingNeckCloakQm
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: QuartermasterMantle
|
|
||||||
equipment: QuartermasterMantle
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: QuartermasterMantle
|
id: QuartermasterMantle
|
||||||
equipment:
|
equipment:
|
||||||
neck: ClothingNeckMantleQM
|
neck: ClothingNeckMantleQM
|
||||||
|
|
||||||
# OuterClothing
|
# OuterClothing
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: QuartermasterWintercoat
|
|
||||||
equipment: QuartermasterWintercoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: QuartermasterWintercoat
|
id: QuartermasterWintercoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterWinterQM
|
outerClothing: ClothingOuterWinterQM
|
||||||
|
|||||||
@@ -1,47 +1,27 @@
|
|||||||
# Back
|
# Back
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SalvageSpecialistBackpack
|
|
||||||
equipment: SalvageSpecialistBackpack
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SalvageSpecialistBackpack
|
id: SalvageSpecialistBackpack
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackSalvage
|
back: ClothingBackpackSalvage
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SalvageSpecialistSatchel
|
|
||||||
equipment: SalvageSpecialistSatchel
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SalvageSpecialistSatchel
|
id: SalvageSpecialistSatchel
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackSatchelSalvage
|
back: ClothingBackpackSatchelSalvage
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SalvageSpecialistDuffel
|
|
||||||
equipment: SalvageSpecialistDuffel
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SalvageSpecialistDuffel
|
id: SalvageSpecialistDuffel
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackDuffelSalvage
|
back: ClothingBackpackDuffelSalvage
|
||||||
|
|
||||||
# OuterClothing
|
# OuterClothing
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SalvageSpecialistWintercoat
|
|
||||||
equipment: SalvageSpecialistWintercoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SalvageSpecialistWintercoat
|
id: SalvageSpecialistWintercoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterWinterMiner
|
outerClothing: ClothingOuterWinterMiner
|
||||||
|
|
||||||
# Shoes
|
# Shoes
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SalvageBoots
|
|
||||||
equipment: SalvageBoots
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SalvageBoots
|
id: SalvageBoots
|
||||||
equipment:
|
equipment:
|
||||||
shoes: ClothingShoesBootsSalvage
|
shoes: ClothingShoesBootsSalvage
|
||||||
|
|||||||
@@ -1,74 +1,42 @@
|
|||||||
# Head
|
# Head
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: BartenderHead
|
|
||||||
equipment: BartenderHead
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: BartenderHead
|
id: BartenderHead
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatTophat
|
head: ClothingHeadHatTophat
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: BartenderBowler
|
|
||||||
equipment: BartenderBowler
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: BartenderBowler
|
id: BartenderBowler
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatBowlerHat
|
head: ClothingHeadHatBowlerHat
|
||||||
|
|
||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: BartenderJumpsuit
|
|
||||||
equipment: BartenderJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: BartenderJumpsuit
|
id: BartenderJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitBartender
|
jumpsuit: ClothingUniformJumpsuitBartender
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: BartenderJumpskirt
|
|
||||||
equipment: BartenderJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: BartenderJumpskirt
|
id: BartenderJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtBartender
|
jumpsuit: ClothingUniformJumpskirtBartender
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: BartenderJumpsuitPurple
|
|
||||||
equipment: BartenderJumpsuitPurple
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: BartenderJumpsuitPurple
|
id: BartenderJumpsuitPurple
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitBartenderPurple
|
jumpsuit: ClothingUniformJumpsuitBartenderPurple
|
||||||
|
|
||||||
# Outer clothing
|
# Outer clothing
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: BartenderApron
|
|
||||||
equipment: BartenderApron
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: BartenderApron
|
id: BartenderApron
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterApronBar
|
outerClothing: ClothingOuterApronBar
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: BartenderVest
|
|
||||||
equipment: BartenderVest
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: BartenderVest
|
id: BartenderVest
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterVest
|
outerClothing: ClothingOuterVest
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: BartenderWintercoat
|
|
||||||
equipment: BartenderWintercoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: BartenderWintercoat
|
id: BartenderWintercoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterWinterBar
|
outerClothing: ClothingOuterWinterBar
|
||||||
|
|||||||
@@ -1,93 +1,53 @@
|
|||||||
# Head
|
# Head
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: BotanistHead
|
|
||||||
equipment: BotanistHead
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: BotanistHead
|
id: BotanistHead
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatTrucker
|
head: ClothingHeadHatTrucker
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: BotanistBandana
|
|
||||||
equipment: BotanistBandana
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: BotanistBandana
|
id: BotanistBandana
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadBandBotany
|
head: ClothingHeadBandBotany
|
||||||
|
|
||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: BotanistJumpsuit
|
|
||||||
equipment: BotanistJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: BotanistJumpsuit
|
id: BotanistJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitHydroponics
|
jumpsuit: ClothingUniformJumpsuitHydroponics
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: BotanistJumpskirt
|
|
||||||
equipment: BotanistJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: BotanistJumpskirt
|
id: BotanistJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtHydroponics
|
jumpsuit: ClothingUniformJumpskirtHydroponics
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: BotanistOveralls
|
|
||||||
equipment: BotanistOveralls
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: BotanistOveralls
|
id: BotanistOveralls
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformOveralls
|
jumpsuit: ClothingUniformOveralls
|
||||||
|
|
||||||
# Back
|
# Back
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: BotanistBackpack
|
|
||||||
equipment: BotanistBackpack
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: BotanistBackpack
|
id: BotanistBackpack
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackHydroponics
|
back: ClothingBackpackHydroponics
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: BotanistSatchel
|
|
||||||
equipment: BotanistSatchel
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: BotanistSatchel
|
id: BotanistSatchel
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackSatchelHydroponics
|
back: ClothingBackpackSatchelHydroponics
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: BotanistDuffel
|
|
||||||
equipment: BotanistDuffel
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: BotanistDuffel
|
id: BotanistDuffel
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackDuffelHydroponics
|
back: ClothingBackpackDuffelHydroponics
|
||||||
|
|
||||||
# Outer clothing
|
# Outer clothing
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: BotanistApron
|
|
||||||
equipment: BotanistApron
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: BotanistApron
|
id: BotanistApron
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterApronBotanist
|
outerClothing: ClothingOuterApronBotanist
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: BotanistWintercoat
|
|
||||||
equipment: BotanistWintercoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: BotanistWintercoat
|
id: BotanistWintercoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterWinterHydro
|
outerClothing: ClothingOuterWinterHydro
|
||||||
|
|||||||
@@ -1,139 +1,79 @@
|
|||||||
# Head
|
# Head
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChaplainHead
|
|
||||||
equipment: ChaplainHead
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChaplainHead
|
id: ChaplainHead
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatFez
|
head: ClothingHeadHatFez
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChaplainNunHood
|
|
||||||
equipment: ChaplainNunHood
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChaplainNunHood
|
id: ChaplainNunHood
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatHoodNunHood
|
head: ClothingHeadHatHoodNunHood
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChaplainPlagueHat
|
|
||||||
equipment: ChaplainPlagueHat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChaplainPlagueHat
|
id: ChaplainPlagueHat
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatPlaguedoctor
|
head: ClothingHeadHatPlaguedoctor
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChaplainWitchHat
|
|
||||||
equipment: ChaplainWitchHat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChaplainWitchHat
|
id: ChaplainWitchHat
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatWitch
|
head: ClothingHeadHatWitch
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChaplainWitchHatAlt
|
|
||||||
equipment: ChaplainWitchHatAlt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChaplainWitchHatAlt
|
id: ChaplainWitchHatAlt
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatWitch1
|
head: ClothingHeadHatWitch1
|
||||||
|
|
||||||
# Mask
|
# Mask
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChaplainMask
|
|
||||||
equipment: ChaplainMask
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChaplainMask
|
id: ChaplainMask
|
||||||
equipment:
|
equipment:
|
||||||
mask: ClothingMaskPlague
|
mask: ClothingMaskPlague
|
||||||
|
|
||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChaplainJumpsuit
|
|
||||||
equipment: ChaplainJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChaplainJumpsuit
|
id: ChaplainJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitChaplain
|
jumpsuit: ClothingUniformJumpsuitChaplain
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChaplainJumpskirt
|
|
||||||
equipment: ChaplainJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChaplainJumpskirt
|
id: ChaplainJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtChaplain
|
jumpsuit: ClothingUniformJumpskirtChaplain
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChaplainRobesDark
|
|
||||||
equipment: ChaplainRobesDark
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChaplainRobesDark
|
id: ChaplainRobesDark
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitMonasticRobeDark
|
jumpsuit: ClothingUniformJumpsuitMonasticRobeDark
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChaplainRobesLight
|
|
||||||
equipment: ChaplainRobesLight
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChaplainRobesLight
|
id: ChaplainRobesLight
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitMonasticRobeLight
|
jumpsuit: ClothingUniformJumpsuitMonasticRobeLight
|
||||||
|
|
||||||
# Neck
|
# Neck
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChaplainNeck
|
|
||||||
equipment: ChaplainNeck
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChaplainNeck
|
id: ChaplainNeck
|
||||||
equipment:
|
equipment:
|
||||||
neck: ClothingNeckStoleChaplain
|
neck: ClothingNeckStoleChaplain
|
||||||
|
|
||||||
# Outer clothing
|
# Outer clothing
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChaplainPlagueSuit
|
|
||||||
equipment: ChaplainPlagueSuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChaplainPlagueSuit
|
id: ChaplainPlagueSuit
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterPlagueSuit
|
outerClothing: ClothingOuterPlagueSuit
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChaplainNunRobe
|
|
||||||
equipment: ChaplainNunRobe
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChaplainNunRobe
|
id: ChaplainNunRobe
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterNunRobe
|
outerClothing: ClothingOuterNunRobe
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChaplainBlackHoodie
|
|
||||||
equipment: ChaplainBlackHoodie
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChaplainBlackHoodie
|
id: ChaplainBlackHoodie
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterHoodieBlack
|
outerClothing: ClothingOuterHoodieBlack
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChaplainHoodie
|
|
||||||
equipment: ChaplainHoodie
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChaplainHoodie
|
id: ChaplainHoodie
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterHoodieChaplain
|
outerClothing: ClothingOuterHoodieChaplain
|
||||||
|
|||||||
@@ -1,66 +1,38 @@
|
|||||||
# Head
|
# Head
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChefHead
|
|
||||||
equipment: ChefHead
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChefHead
|
id: ChefHead
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatChef
|
head: ClothingHeadHatChef
|
||||||
|
|
||||||
# Mask
|
# Mask
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChefMask
|
|
||||||
equipment: ChefMask
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChefMask
|
id: ChefMask
|
||||||
equipment:
|
equipment:
|
||||||
mask: ClothingMaskItalianMoustache
|
mask: ClothingMaskItalianMoustache
|
||||||
|
|
||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChefJumpsuit
|
|
||||||
equipment: ChefJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChefJumpsuit
|
id: ChefJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitChef
|
jumpsuit: ClothingUniformJumpsuitChef
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChefJumpskirt
|
|
||||||
equipment: ChefJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChefJumpskirt
|
id: ChefJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtChef
|
jumpsuit: ClothingUniformJumpskirtChef
|
||||||
|
|
||||||
# Outer clothing
|
# Outer clothing
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChefApron
|
|
||||||
equipment: ChefApron
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChefApron
|
id: ChefApron
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterApronChef
|
outerClothing: ClothingOuterApronChef
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChefJacket
|
|
||||||
equipment: ChefJacket
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChefJacket
|
id: ChefJacket
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterJacketChef
|
outerClothing: ClothingOuterJacketChef
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChefWintercoat
|
|
||||||
equipment: ChefWintercoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChefWintercoat
|
id: ChefWintercoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterWinterChef
|
outerClothing: ClothingOuterWinterChef
|
||||||
|
|||||||
@@ -1,94 +1,54 @@
|
|||||||
# Head
|
# Head
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: JesterHat
|
|
||||||
equipment: JesterHat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: JesterHat
|
id: JesterHat
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatJesterAlt
|
head: ClothingHeadHatJesterAlt
|
||||||
|
|
||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ClownSuit
|
|
||||||
equipment: ClownSuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ClownSuit
|
id: ClownSuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitClown
|
jumpsuit: ClothingUniformJumpsuitClown
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: JesterSuit
|
|
||||||
equipment: JesterSuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: JesterSuit
|
id: JesterSuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitJesterAlt
|
jumpsuit: ClothingUniformJumpsuitJesterAlt
|
||||||
|
|
||||||
# Back
|
# Back
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ClownBackpack
|
|
||||||
equipment: ClownBackpack
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ClownBackpack
|
id: ClownBackpack
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackClown
|
back: ClothingBackpackClown
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ClownSatchel
|
|
||||||
equipment: ClownSatchel
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ClownSatchel
|
id: ClownSatchel
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackSatchelClown
|
back: ClothingBackpackSatchelClown
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ClownDuffel
|
|
||||||
equipment: ClownDuffel
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ClownDuffel
|
id: ClownDuffel
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackDuffelClown
|
back: ClothingBackpackDuffelClown
|
||||||
|
|
||||||
# Shoes
|
# Shoes
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ClownShoes
|
|
||||||
equipment: ClownShoes
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ClownShoes
|
id: ClownShoes
|
||||||
equipment:
|
equipment:
|
||||||
shoes: ClothingShoesClown
|
shoes: ClothingShoesClown
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: JesterShoes
|
|
||||||
equipment: JesterShoes
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: JesterShoes
|
id: JesterShoes
|
||||||
equipment:
|
equipment:
|
||||||
shoes: ClothingShoesJester
|
shoes: ClothingShoesJester
|
||||||
|
|
||||||
# Outer clothing
|
# Outer clothing
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ClownRobes
|
|
||||||
equipment: ClownRobes
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ClownRobes
|
id: ClownRobes
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterClownPriest
|
outerClothing: ClothingOuterClownPriest
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ClownWintercoat
|
|
||||||
equipment: ClownWintercoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ClownWintercoat
|
id: ClownWintercoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterWinterClown
|
outerClothing: ClothingOuterWinterClown
|
||||||
|
|||||||
@@ -9,67 +9,39 @@
|
|||||||
|
|
||||||
# Head
|
# Head
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: JanitorHead
|
|
||||||
equipment: JanitorHead
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: JanitorHead
|
id: JanitorHead
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatPurplesoft
|
head: ClothingHeadHatPurplesoft
|
||||||
|
|
||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: JanitorJumpsuit
|
|
||||||
equipment: JanitorJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: JanitorJumpsuit
|
id: JanitorJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitJanitor
|
jumpsuit: ClothingUniformJumpsuitJanitor
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: JanitorJumpskirt
|
|
||||||
equipment: JanitorJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: JanitorJumpskirt
|
id: JanitorJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtJanitor
|
jumpsuit: ClothingUniformJumpskirtJanitor
|
||||||
|
|
||||||
# Gloves
|
# Gloves
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: JanitorRubberGloves
|
|
||||||
equipment: JanitorRubberGloves
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: JanitorRubberGloves
|
id: JanitorRubberGloves
|
||||||
equipment:
|
equipment:
|
||||||
gloves: ClothingHandsGlovesJanitor
|
gloves: ClothingHandsGlovesJanitor
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: OrangeGloves
|
|
||||||
equipment: OrangeGloves
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: OrangeGloves
|
id: OrangeGloves
|
||||||
equipment:
|
equipment:
|
||||||
gloves: ClothingHandsGlovesColorOrange
|
gloves: ClothingHandsGlovesColorOrange
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: PurpleGloves
|
|
||||||
equipment: PurpleGloves
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: PurpleGloves
|
id: PurpleGloves
|
||||||
equipment:
|
equipment:
|
||||||
gloves: ClothingHandsGlovesColorPurple
|
gloves: ClothingHandsGlovesColorPurple
|
||||||
|
|
||||||
# Outer clothing
|
# Outer clothing
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: JanitorWintercoat
|
|
||||||
equipment: JanitorWintercoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: JanitorWintercoat
|
id: JanitorWintercoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterWinterJani
|
outerClothing: ClothingOuterWinterJani
|
||||||
@@ -77,13 +49,9 @@
|
|||||||
# Misc
|
# Misc
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: JanitorGoldenPlunger
|
id: JanitorGoldenPlunger
|
||||||
equipment: JanitorGoldenPlunger
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: SeniorJanitorial
|
proto: SeniorJanitorial
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: JanitorGoldenPlunger
|
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- GoldenPlunger
|
- GoldenPlunger
|
||||||
|
|||||||
@@ -1,100 +1,56 @@
|
|||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: LawyerJumpsuit
|
|
||||||
equipment: LawyerJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: LawyerJumpsuit
|
id: LawyerJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitLawyerBlack
|
jumpsuit: ClothingUniformJumpsuitLawyerBlack
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: LawyerJumpskirt
|
|
||||||
equipment: LawyerJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: LawyerJumpskirt
|
id: LawyerJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtLawyerBlack
|
jumpsuit: ClothingUniformJumpskirtLawyerBlack
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: LawyerJumpsuitBlue
|
|
||||||
equipment: LawyerJumpsuitBlue
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: LawyerJumpsuitBlue
|
id: LawyerJumpsuitBlue
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitLawyerBlue
|
jumpsuit: ClothingUniformJumpsuitLawyerBlue
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: LawyerJumpskirtBlue
|
|
||||||
equipment: LawyerJumpskirtBlue
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: LawyerJumpskirtBlue
|
id: LawyerJumpskirtBlue
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtLawyerBlue
|
jumpsuit: ClothingUniformJumpskirtLawyerBlue
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: LawyerJumpsuitPurple
|
|
||||||
equipment: LawyerJumpsuitPurple
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: LawyerJumpsuitPurple
|
id: LawyerJumpsuitPurple
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitLawyerPurple
|
jumpsuit: ClothingUniformJumpsuitLawyerPurple
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: LawyerJumpskirtPurple
|
|
||||||
equipment: LawyerJumpskirtPurple
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: LawyerJumpskirtPurple
|
id: LawyerJumpskirtPurple
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtLawyerPurple
|
jumpsuit: ClothingUniformJumpskirtLawyerPurple
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: LawyerJumpsuitRed
|
|
||||||
equipment: LawyerJumpsuitRed
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: LawyerJumpsuitRed
|
id: LawyerJumpsuitRed
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitLawyerRed
|
jumpsuit: ClothingUniformJumpsuitLawyerRed
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: LawyerJumpskirtRed
|
|
||||||
equipment: LawyerJumpskirtRed
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: LawyerJumpskirtRed
|
id: LawyerJumpskirtRed
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtLawyerRed
|
jumpsuit: ClothingUniformJumpskirtLawyerRed
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: LawyerJumpsuitGood
|
|
||||||
equipment: LawyerJumpsuitGood
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: LawyerJumpsuitGood
|
id: LawyerJumpsuitGood
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitLawyerGood
|
jumpsuit: ClothingUniformJumpsuitLawyerGood
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: LawyerJumpskirtGood
|
|
||||||
equipment: LawyerJumpskirtGood
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: LawyerJumpskirtGood
|
id: LawyerJumpskirtGood
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtLawyerGood
|
jumpsuit: ClothingUniformJumpskirtLawyerGood
|
||||||
|
|
||||||
# Neck
|
# Neck
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: LawyerNeck
|
|
||||||
equipment: LawyerNeck
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: LawyerNeck
|
id: LawyerNeck
|
||||||
equipment:
|
equipment:
|
||||||
neck: ClothingNeckLawyerbadge
|
neck: ClothingNeckLawyerbadge
|
||||||
|
|||||||
@@ -1,36 +1,20 @@
|
|||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: LibrarianJumpsuit
|
|
||||||
equipment: LibrarianJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: LibrarianJumpsuit
|
id: LibrarianJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitLibrarian
|
jumpsuit: ClothingUniformJumpsuitLibrarian
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: LibrarianJumpskirt
|
|
||||||
equipment: LibrarianJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: LibrarianJumpskirt
|
id: LibrarianJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtLibrarian
|
jumpsuit: ClothingUniformJumpskirtLibrarian
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CuratorJumpsuit
|
|
||||||
equipment: CuratorJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CuratorJumpsuit
|
id: CuratorJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitCurator
|
jumpsuit: ClothingUniformJumpsuitCurator
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CuratorJumpskirt
|
|
||||||
equipment: CuratorJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CuratorJumpskirt
|
id: CuratorJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtCurator
|
jumpsuit: ClothingUniformJumpskirtCurator
|
||||||
|
|||||||
@@ -1,112 +1,64 @@
|
|||||||
# Head
|
# Head
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MimeHead
|
|
||||||
equipment: MimeHead
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MimeHead
|
id: MimeHead
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatBeret
|
head: ClothingHeadHatBeret
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MimeFrenchBeret
|
|
||||||
equipment: MimeFrenchBeret
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MimeFrenchBeret
|
id: MimeFrenchBeret
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatBeretFrench
|
head: ClothingHeadHatBeretFrench
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MimeCap
|
|
||||||
equipment: MimeCap
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MimeCap
|
id: MimeCap
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatMimesoft
|
head: ClothingHeadHatMimesoft
|
||||||
|
|
||||||
# Mask
|
# Mask
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MimeMask
|
|
||||||
equipment: MimeMask
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MimeMask
|
id: MimeMask
|
||||||
equipment:
|
equipment:
|
||||||
mask: ClothingMaskMime
|
mask: ClothingMaskMime
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MimeMaskSad
|
|
||||||
equipment: MimeMaskSad
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MimeMaskSad
|
id: MimeMaskSad
|
||||||
equipment:
|
equipment:
|
||||||
mask: ClothingMaskSadMime
|
mask: ClothingMaskSadMime
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MimeMaskScared
|
|
||||||
equipment: MimeMaskScared
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MimeMaskScared
|
id: MimeMaskScared
|
||||||
equipment:
|
equipment:
|
||||||
mask: ClothingMaskScaredMime
|
mask: ClothingMaskScaredMime
|
||||||
|
|
||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MimeJumpsuit
|
|
||||||
equipment: MimeJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MimeJumpsuit
|
id: MimeJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitMime
|
jumpsuit: ClothingUniformJumpsuitMime
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MimeJumpskirt
|
|
||||||
equipment: MimeJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MimeJumpskirt
|
id: MimeJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtMime
|
jumpsuit: ClothingUniformJumpskirtMime
|
||||||
|
|
||||||
# Back
|
# Back
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MimeBackpack
|
|
||||||
equipment: MimeBackpack
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MimeBackpack
|
id: MimeBackpack
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackMime
|
back: ClothingBackpackMime
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MimeSatchel
|
|
||||||
equipment: MimeSatchel
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MimeSatchel
|
id: MimeSatchel
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackSatchelMime
|
back: ClothingBackpackSatchelMime
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MimeDuffel
|
|
||||||
equipment: MimeDuffel
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MimeDuffel
|
id: MimeDuffel
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackDuffelMime
|
back: ClothingBackpackDuffelMime
|
||||||
|
|
||||||
# Outerclothing
|
# Outerclothing
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MimeWintercoat
|
|
||||||
equipment: MimeWintercoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MimeWintercoat
|
id: MimeWintercoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterWinterMime
|
outerClothing: ClothingOuterWinterMime
|
||||||
|
|||||||
@@ -1,28 +1,16 @@
|
|||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MusicianJumpsuit
|
|
||||||
equipment: MusicianJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MusicianJumpsuit
|
id: MusicianJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitMusician
|
jumpsuit: ClothingUniformJumpsuitMusician
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MusicianJumpskirt
|
|
||||||
equipment: MusicianJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MusicianJumpskirt
|
id: MusicianJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtMusician
|
jumpsuit: ClothingUniformJumpskirtMusician
|
||||||
|
|
||||||
# Outerclothing
|
# Outerclothing
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MusicianWintercoat
|
|
||||||
equipment: MusicianWintercoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MusicianWintercoat
|
id: MusicianWintercoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterWinterMusician
|
outerClothing: ClothingOuterWinterMusician
|
||||||
|
|||||||
@@ -11,32 +11,20 @@
|
|||||||
# Face
|
# Face
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: PassengerFace
|
id: PassengerFace
|
||||||
equipment: GasMask
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: GreyTider
|
proto: GreyTider
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: GasMask
|
|
||||||
equipment:
|
equipment:
|
||||||
mask: ClothingMaskGas
|
mask: ClothingMaskGas
|
||||||
|
|
||||||
# Jumpsuits
|
# Jumpsuits
|
||||||
# Grey
|
# Grey
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: GreyJumpsuit
|
|
||||||
equipment: GreyJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: GreyJumpsuit
|
id: GreyJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitColorGrey
|
jumpsuit: ClothingUniformJumpsuitColorGrey
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: GreyJumpskirt
|
|
||||||
equipment: GreyJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: GreyJumpskirt
|
id: GreyJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtColorGrey
|
jumpsuit: ClothingUniformJumpskirtColorGrey
|
||||||
@@ -44,53 +32,33 @@
|
|||||||
# Rainbow
|
# Rainbow
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: RainbowJumpsuit
|
id: RainbowJumpsuit
|
||||||
equipment: RainbowJumpsuit
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: GreyTider
|
proto: GreyTider
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: RainbowJumpsuit
|
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformColorRainbow
|
jumpsuit: ClothingUniformColorRainbow
|
||||||
|
|
||||||
# Ancient
|
# Ancient
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: AncientJumpsuit
|
id: AncientJumpsuit
|
||||||
equipment: AncientJumpsuit
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: GreyTider
|
proto: GreyTider
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: AncientJumpsuit
|
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitAncient
|
jumpsuit: ClothingUniformJumpsuitAncient
|
||||||
|
|
||||||
# Back
|
# Back
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CommonBackpack
|
|
||||||
equipment: CommonBackpack
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CommonBackpack
|
id: CommonBackpack
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpack
|
back: ClothingBackpack
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CommonSatchel
|
|
||||||
equipment: CommonSatchel
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CommonSatchel
|
id: CommonSatchel
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackSatchel
|
back: ClothingBackpackSatchel
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CommonDuffel
|
|
||||||
equipment: CommonDuffel
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CommonDuffel
|
id: CommonDuffel
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackDuffel
|
back: ClothingBackpackDuffel
|
||||||
@@ -98,41 +66,25 @@
|
|||||||
# Gloves
|
# Gloves
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: PassengerGloves
|
id: PassengerGloves
|
||||||
equipment: FingerlessInsulatedGloves
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: GreyTider
|
proto: GreyTider
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: FingerlessInsulatedGloves
|
|
||||||
equipment:
|
equipment:
|
||||||
gloves: ClothingHandsGlovesFingerlessInsulated
|
gloves: ClothingHandsGlovesFingerlessInsulated
|
||||||
|
|
||||||
# Outerclothing
|
# Outerclothing
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: PassengerWintercoat
|
|
||||||
equipment: PassengerWintercoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: PassengerWintercoat
|
id: PassengerWintercoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterWinterCoat
|
outerClothing: ClothingOuterWinterCoat
|
||||||
|
|
||||||
# Shoes
|
# Shoes
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: BlackShoes
|
|
||||||
equipment: BlackShoes
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: BlackShoes
|
id: BlackShoes
|
||||||
equipment:
|
equipment:
|
||||||
shoes: ClothingShoesColorBlack
|
shoes: ClothingShoesColorBlack
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: WinterBoots
|
|
||||||
equipment: WinterBoots
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: WinterBoots
|
id: WinterBoots
|
||||||
equipment:
|
equipment:
|
||||||
shoes: ClothingShoesBootsWinter
|
shoes: ClothingShoesBootsWinter
|
||||||
|
|||||||
@@ -1,130 +1,74 @@
|
|||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CaptainJumpsuit
|
|
||||||
equipment: CaptainJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CaptainJumpsuit
|
id: CaptainJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitCaptain
|
jumpsuit: ClothingUniformJumpsuitCaptain
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CaptainJumpskirt
|
|
||||||
equipment: CaptainJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CaptainJumpskirt
|
id: CaptainJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtCaptain
|
jumpsuit: ClothingUniformJumpskirtCaptain
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CaptainFormalSuit
|
|
||||||
equipment: CaptainFormalSuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CaptainFormalSuit
|
id: CaptainFormalSuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitCapFormal
|
jumpsuit: ClothingUniformJumpsuitCapFormal
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CaptainFormalSkirt
|
|
||||||
equipment: CaptainFormalSkirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CaptainFormalSkirt
|
id: CaptainFormalSkirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtCapFormalDress
|
jumpsuit: ClothingUniformJumpskirtCapFormalDress
|
||||||
|
|
||||||
# Head
|
# Head
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CaptainHead
|
|
||||||
equipment: CaptainHead
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CaptainHead
|
id: CaptainHead
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatCaptain
|
head: ClothingHeadHatCaptain
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CaptainCap
|
|
||||||
equipment: CaptainCap
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CaptainCap
|
id: CaptainCap
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatCapcap
|
head: ClothingHeadHatCapcap
|
||||||
|
|
||||||
# Neck
|
# Neck
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CaptainCloak
|
|
||||||
equipment: CaptainCloak
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CaptainCloak
|
id: CaptainCloak
|
||||||
equipment:
|
equipment:
|
||||||
neck: ClothingNeckCloakCap
|
neck: ClothingNeckCloakCap
|
||||||
|
|
||||||
- type: loadout
|
|
||||||
id: CaptainCloakFormal
|
|
||||||
equipment: CaptainCloakFormal
|
|
||||||
|
|
||||||
- type: startingGear
|
- type: loadout
|
||||||
id: CaptainCloakFormal
|
id: CaptainCloakFormal
|
||||||
equipment:
|
equipment:
|
||||||
neck: ClothingNeckCloakCapFormal
|
neck: ClothingNeckCloakCapFormal
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CaptainMantle
|
|
||||||
equipment: CaptainMantle
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CaptainMantle
|
id: CaptainMantle
|
||||||
equipment:
|
equipment:
|
||||||
neck: ClothingNeckMantleCap
|
neck: ClothingNeckMantleCap
|
||||||
|
|
||||||
# Back
|
# Back
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CaptainBackpack
|
|
||||||
equipment: CaptainBackpack
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CaptainBackpack
|
id: CaptainBackpack
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackCaptain
|
back: ClothingBackpackCaptain
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CaptainSatchel
|
|
||||||
equipment: CaptainSatchel
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CaptainSatchel
|
id: CaptainSatchel
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackSatchelCaptain
|
back: ClothingBackpackSatchelCaptain
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CaptainDuffel
|
|
||||||
equipment: CaptainDuffel
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CaptainDuffel
|
id: CaptainDuffel
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackDuffelCaptain
|
back: ClothingBackpackDuffelCaptain
|
||||||
|
|
||||||
# Outer clothing
|
# Outer clothing
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CaptainOuterClothing
|
|
||||||
equipment: CaptainOuterClothing
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CaptainOuterClothing
|
id: CaptainOuterClothing
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterArmorCaptainCarapace
|
outerClothing: ClothingOuterArmorCaptainCarapace
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CaptainWintercoat
|
|
||||||
equipment: CaptainWintercoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CaptainWintercoat
|
id: CaptainWintercoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterWinterCap
|
outerClothing: ClothingOuterWinterCap
|
||||||
|
|||||||
@@ -10,48 +10,28 @@
|
|||||||
|
|
||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: HoPJumpsuit
|
|
||||||
equipment: HoPJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: HoPJumpsuit
|
id: HoPJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitHoP
|
jumpsuit: ClothingUniformJumpsuitHoP
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: HoPJumpskirt
|
|
||||||
equipment: HoPJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: HoPJumpskirt
|
id: HoPJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtHoP
|
jumpsuit: ClothingUniformJumpskirtHoP
|
||||||
|
|
||||||
# Head
|
# Head
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: HoPHead
|
|
||||||
equipment: HoPHead
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: HoPHead
|
id: HoPHead
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatHopcap
|
head: ClothingHeadHatHopcap
|
||||||
|
|
||||||
# Neck
|
# Neck
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: HoPCloak
|
|
||||||
equipment: HoPCloak
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: HoPCloak
|
id: HoPCloak
|
||||||
equipment:
|
equipment:
|
||||||
neck: ClothingNeckCloakHop
|
neck: ClothingNeckCloakHop
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: HoPMantle
|
|
||||||
equipment: HoPMantle
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: HoPMantle
|
id: HoPMantle
|
||||||
equipment:
|
equipment:
|
||||||
neck: ClothingNeckMantleHOP
|
neck: ClothingNeckMantleHOP
|
||||||
@@ -59,22 +39,14 @@
|
|||||||
# Back
|
# Back
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: HoPBackpackIan
|
id: HoPBackpackIan
|
||||||
equipment: HoPBackpackIan
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: ProfessionalHoP
|
proto: ProfessionalHoP
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: HoPBackpackIan
|
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackIan
|
back: ClothingBackpackIan
|
||||||
|
|
||||||
# Outerclothing
|
# Outerclothing
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: HoPWintercoat
|
|
||||||
equipment: HoPWintercoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: HoPWintercoat
|
id: HoPWintercoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterWinterHoP
|
outerClothing: ClothingOuterWinterHoP
|
||||||
|
|||||||
@@ -1,75 +1,43 @@
|
|||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: AtmosphericTechnicianJumpsuit
|
|
||||||
equipment: AtmosphericTechnicianJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: AtmosphericTechnicianJumpsuit
|
id: AtmosphericTechnicianJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitAtmos
|
jumpsuit: ClothingUniformJumpsuitAtmos
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: AtmosphericTechnicianJumpskirt
|
|
||||||
equipment: AtmosphericTechnicianJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: AtmosphericTechnicianJumpskirt
|
id: AtmosphericTechnicianJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtAtmos
|
jumpsuit: ClothingUniformJumpskirtAtmos
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: AtmosphericTechnicianJumpsuitCasual
|
|
||||||
equipment: AtmosphericTechnicianJumpsuitCasual
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: AtmosphericTechnicianJumpsuitCasual
|
id: AtmosphericTechnicianJumpsuitCasual
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitAtmosCasual
|
jumpsuit: ClothingUniformJumpsuitAtmosCasual
|
||||||
|
|
||||||
# Back
|
# Back
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: AtmosphericTechnicianBackpack
|
|
||||||
equipment: AtmosphericTechnicianBackpack
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: AtmosphericTechnicianBackpack
|
id: AtmosphericTechnicianBackpack
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackAtmospherics
|
back: ClothingBackpackAtmospherics
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: AtmosphericTechnicianSatchel
|
|
||||||
equipment: AtmosphericTechnicianSatchel
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: AtmosphericTechnicianSatchel
|
id: AtmosphericTechnicianSatchel
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackSatchelAtmospherics
|
back: ClothingBackpackSatchelAtmospherics
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: AtmosphericTechnicianDuffel
|
|
||||||
equipment: AtmosphericTechnicianDuffel
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: AtmosphericTechnicianDuffel
|
id: AtmosphericTechnicianDuffel
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackDuffelAtmospherics
|
back: ClothingBackpackDuffelAtmospherics
|
||||||
|
|
||||||
# OuterClothing
|
# OuterClothing
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: AtmosphericTechnicianWintercoat
|
|
||||||
equipment: AtmosphericTechnicianWintercoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: AtmosphericTechnicianWintercoat
|
id: AtmosphericTechnicianWintercoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterWinterAtmos
|
outerClothing: ClothingOuterWinterAtmos
|
||||||
|
|
||||||
# Shoes
|
# Shoes
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: WhiteShoes
|
|
||||||
equipment: WhiteShoes
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: WhiteShoes
|
id: WhiteShoes
|
||||||
equipment:
|
equipment:
|
||||||
shoes: ClothingShoesColorWhite
|
shoes: ClothingShoesColorWhite
|
||||||
|
|||||||
@@ -1,89 +1,53 @@
|
|||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChiefEngineerJumpsuit
|
|
||||||
equipment: ChiefEngineerJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChiefEngineerJumpsuit
|
id: ChiefEngineerJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitChiefEngineer
|
jumpsuit: ClothingUniformJumpsuitChiefEngineer
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChiefEngineerJumpskirt
|
|
||||||
equipment: ChiefEngineerJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChiefEngineerJumpskirt
|
id: ChiefEngineerJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtChiefEngineer
|
jumpsuit: ClothingUniformJumpskirtChiefEngineer
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChiefEngineerTurtleneck
|
|
||||||
equipment: ChiefEngineerTurtleneck
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChiefEngineerTurtleneck
|
id: ChiefEngineerTurtleneck
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitChiefEngineerTurtle
|
jumpsuit: ClothingUniformJumpsuitChiefEngineerTurtle
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChiefEngineerTurtleneckSkirt
|
|
||||||
equipment: ChiefEngineerTurtleneckSkirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChiefEngineerTurtleneckSkirt
|
id: ChiefEngineerTurtleneckSkirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtChiefEngineerTurtle
|
jumpsuit: ClothingUniformJumpskirtChiefEngineerTurtle
|
||||||
|
|
||||||
# Head
|
# Head
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChiefEngineerHead
|
|
||||||
equipment: ChiefEngineerHead
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChiefEngineerHead
|
id: ChiefEngineerHead
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatHardhatWhite
|
head: ClothingHeadHatHardhatWhite
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChiefEngineerBeret
|
id: ChiefEngineerBeret
|
||||||
equipment: EngineeringBeret
|
startingGear: EngineeringBeret
|
||||||
|
|
||||||
# Neck
|
# Neck
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChiefEngineerCloak
|
|
||||||
equipment: ChiefEngineerCloak
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChiefEngineerCloak
|
id: ChiefEngineerCloak
|
||||||
equipment:
|
equipment:
|
||||||
neck: ClothingNeckCloakCe
|
neck: ClothingNeckCloakCe
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChiefEngineerMantle
|
|
||||||
equipment: ChiefEngineerMantle
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChiefEngineerMantle
|
id: ChiefEngineerMantle
|
||||||
equipment:
|
equipment:
|
||||||
neck: ClothingNeckMantleCE
|
neck: ClothingNeckMantleCE
|
||||||
|
|
||||||
# OuterClothing
|
# OuterClothing
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChiefEngineerWintercoat
|
|
||||||
equipment: ChiefEngineerWintercoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChiefEngineerWintercoat
|
id: ChiefEngineerWintercoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterWinterCE
|
outerClothing: ClothingOuterWinterCE
|
||||||
|
|
||||||
# Shoes
|
# Shoes
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: BrownShoes
|
|
||||||
equipment: BrownShoes
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: BrownShoes
|
id: BrownShoes
|
||||||
equipment:
|
equipment:
|
||||||
shoes: ClothingShoesColorBrown
|
shoes: ClothingShoesColorBrown
|
||||||
|
|||||||
@@ -19,181 +19,113 @@
|
|||||||
time: 216000 # 60 hrs
|
time: 216000 # 60 hrs
|
||||||
|
|
||||||
# Head
|
# Head
|
||||||
- type: loadout
|
|
||||||
id: StationEngineerHardhatYellow
|
|
||||||
equipment: StationEngineerHardhatYellow
|
|
||||||
|
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
|
id: EngineeringBeret
|
||||||
|
equipment:
|
||||||
|
head: ClothingHeadHatBeretEngineering
|
||||||
|
|
||||||
|
- type: loadout
|
||||||
id: StationEngineerHardhatYellow
|
id: StationEngineerHardhatYellow
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatHardhatYellow
|
head: ClothingHeadHatHardhatYellow
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: StationEngineerHardhatOrange
|
|
||||||
equipment: StationEngineerHardhatOrange
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: StationEngineerHardhatOrange
|
id: StationEngineerHardhatOrange
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatHardhatOrange
|
head: ClothingHeadHatHardhatOrange
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: StationEngineerHardhatRed
|
|
||||||
equipment: StationEngineerHardhatRed
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: StationEngineerHardhatRed
|
id: StationEngineerHardhatRed
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatHardhatRed
|
head: ClothingHeadHatHardhatRed
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SeniorEngineerBeret
|
id: SeniorEngineerBeret
|
||||||
equipment: EngineeringBeret
|
startingGear: EngineeringBeret
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: SeniorEngineering
|
proto: SeniorEngineering
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: EngineeringBeret
|
|
||||||
equipment:
|
|
||||||
head: ClothingHeadHatBeretEngineering
|
|
||||||
|
|
||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: StationEngineerJumpsuit
|
|
||||||
equipment: StationEngineerJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: StationEngineerJumpsuit
|
id: StationEngineerJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitEngineering
|
jumpsuit: ClothingUniformJumpsuitEngineering
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: StationEngineerJumpskirt
|
|
||||||
equipment: StationEngineerJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: StationEngineerJumpskirt
|
id: StationEngineerJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtEngineering
|
jumpsuit: ClothingUniformJumpskirtEngineering
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: StationEngineerHazardsuit
|
|
||||||
equipment: StationEngineerHazardsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: StationEngineerHazardsuit
|
id: StationEngineerHazardsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitEngineeringHazard
|
jumpsuit: ClothingUniformJumpsuitEngineeringHazard
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SeniorEngineerJumpsuit
|
id: SeniorEngineerJumpsuit
|
||||||
equipment: SeniorEngineerJumpsuit
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: SeniorEngineering
|
proto: SeniorEngineering
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SeniorEngineerJumpsuit
|
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitSeniorEngineer
|
jumpsuit: ClothingUniformJumpsuitSeniorEngineer
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SeniorEngineerJumpskirt
|
id: SeniorEngineerJumpskirt
|
||||||
equipment: SeniorEngineerJumpskirt
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: SeniorEngineering
|
proto: SeniorEngineering
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SeniorEngineerJumpskirt
|
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtSeniorEngineer
|
jumpsuit: ClothingUniformJumpskirtSeniorEngineer
|
||||||
|
|
||||||
# Back
|
# Back
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: StationEngineerBackpack
|
|
||||||
equipment: StationEngineerBackpack
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: StationEngineerBackpack
|
id: StationEngineerBackpack
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackEngineering
|
back: ClothingBackpackEngineering
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: StationEngineerSatchel
|
|
||||||
equipment: StationEngineerSatchel
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: StationEngineerSatchel
|
id: StationEngineerSatchel
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackSatchelEngineering
|
back: ClothingBackpackSatchelEngineering
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: StationEngineerDuffel
|
|
||||||
equipment: StationEngineerDuffel
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: StationEngineerDuffel
|
id: StationEngineerDuffel
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackDuffelEngineering
|
back: ClothingBackpackDuffelEngineering
|
||||||
|
|
||||||
# OuterClothing
|
# OuterClothing
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: StationEngineerOuterVest
|
|
||||||
equipment: StationEngineerOuterVest
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: StationEngineerOuterVest
|
id: StationEngineerOuterVest
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterVestHazard
|
outerClothing: ClothingOuterVestHazard
|
||||||
|
|
||||||
- type: loadout
|
|
||||||
id: StationEngineerWintercoat
|
|
||||||
equipment: StationEngineerWintercoat
|
|
||||||
|
|
||||||
- type: startingGear
|
- type: loadout
|
||||||
id: StationEngineerWintercoat
|
id: StationEngineerWintercoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterWinterEngi
|
outerClothing: ClothingOuterWinterEngi
|
||||||
|
|
||||||
# Shoes
|
# Shoes
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: WorkBoots
|
|
||||||
equipment: WorkBoots
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: WorkBoots
|
id: WorkBoots
|
||||||
equipment:
|
equipment:
|
||||||
shoes: ClothingShoesBootsWork
|
shoes: ClothingShoesBootsWork
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: EngineeringWinterBoots
|
|
||||||
equipment: EngineeringWinterBoots
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: EngineeringWinterBoots
|
id: EngineeringWinterBoots
|
||||||
equipment:
|
equipment:
|
||||||
shoes: ClothingShoesBootsWinterEngi
|
shoes: ClothingShoesBootsWinterEngi
|
||||||
|
|
||||||
# ID
|
# ID
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: StationEngineerPDA
|
|
||||||
equipment: StationEngineerPDA
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: StationEngineerPDA
|
id: StationEngineerPDA
|
||||||
equipment:
|
equipment:
|
||||||
id: EngineerPDA
|
id: EngineerPDA
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SeniorEngineerPDA
|
id: SeniorEngineerPDA
|
||||||
equipment: SeniorEngineerPDA
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: SeniorEngineering
|
proto: SeniorEngineering
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SeniorEngineerPDA
|
|
||||||
equipment:
|
equipment:
|
||||||
id: SeniorEngineerPDA
|
id: SeniorEngineerPDA
|
||||||
|
|||||||
@@ -1,18 +1,10 @@
|
|||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: YellowJumpsuit
|
|
||||||
equipment: YellowJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: YellowJumpsuit
|
id: YellowJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitColorYellow
|
jumpsuit: ClothingUniformJumpsuitColorYellow
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: YellowJumpskirt
|
|
||||||
equipment: YellowJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: YellowJumpskirt
|
id: YellowJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtColorYellow
|
jumpsuit: ClothingUniformJumpskirtColorYellow
|
||||||
|
|||||||
@@ -1,65 +1,37 @@
|
|||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChemistJumpsuit
|
|
||||||
equipment: ChemistJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChemistJumpsuit
|
id: ChemistJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitChemistry
|
jumpsuit: ClothingUniformJumpsuitChemistry
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChemistJumpskirt
|
|
||||||
equipment: ChemistJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChemistJumpskirt
|
id: ChemistJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtChemistry
|
jumpsuit: ClothingUniformJumpskirtChemistry
|
||||||
|
|
||||||
# Back
|
# Back
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChemistBackpack
|
|
||||||
equipment: ChemistBackpack
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChemistBackpack
|
id: ChemistBackpack
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackChemistry
|
back: ClothingBackpackChemistry
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChemistSatchel
|
|
||||||
equipment: ChemistSatchel
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChemistSatchel
|
id: ChemistSatchel
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackSatchelChemistry
|
back: ClothingBackpackSatchelChemistry
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChemistDuffel
|
|
||||||
equipment: ChemistDuffel
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChemistDuffel
|
id: ChemistDuffel
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackDuffelChemistry
|
back: ClothingBackpackDuffelChemistry
|
||||||
|
|
||||||
# Outer clothing
|
# Outer clothing
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChemistLabCoat
|
|
||||||
equipment: ChemistLabCoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChemistLabCoat
|
id: ChemistLabCoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterCoatLabChem
|
outerClothing: ClothingOuterCoatLabChem
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChemistWintercoat
|
|
||||||
equipment: ChemistWintercoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChemistWintercoat
|
id: ChemistWintercoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterWinterChem
|
outerClothing: ClothingOuterWinterChem
|
||||||
|
|||||||
@@ -1,93 +1,53 @@
|
|||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChiefMedicalOfficerJumpsuit
|
|
||||||
equipment: ChiefMedicalOfficerJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChiefMedicalOfficerJumpsuit
|
id: ChiefMedicalOfficerJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitCMO
|
jumpsuit: ClothingUniformJumpsuitCMO
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChiefMedicalOfficerJumpskirt
|
|
||||||
equipment: ChiefMedicalOfficerJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChiefMedicalOfficerJumpskirt
|
id: ChiefMedicalOfficerJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtCMO
|
jumpsuit: ClothingUniformJumpskirtCMO
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChiefMedicalOfficerTurtleneckJumpsuit
|
|
||||||
equipment: ChiefMedicalOfficerTurtleneckJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChiefMedicalOfficerTurtleneckJumpsuit
|
id: ChiefMedicalOfficerTurtleneckJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitCMOTurtle
|
jumpsuit: ClothingUniformJumpsuitCMOTurtle
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChiefMedicalOfficerTurtleneckJumpskirt
|
|
||||||
equipment: ChiefMedicalOfficerTurtleneckJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChiefMedicalOfficerTurtleneckJumpskirt
|
id: ChiefMedicalOfficerTurtleneckJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtCMOTurtle
|
jumpsuit: ClothingUniformJumpskirtCMOTurtle
|
||||||
|
|
||||||
# Head
|
# Head
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChiefMedicalOfficerBeret
|
|
||||||
equipment: ChiefMedicalOfficerBeret
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChiefMedicalOfficerBeret
|
id: ChiefMedicalOfficerBeret
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatBeretCmo
|
head: ClothingHeadHatBeretCmo
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CMOMedicalHeadMirror
|
|
||||||
equipment: CMOMedicalHeadMirror
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CMOMedicalHeadMirror
|
id: CMOMedicalHeadMirror
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadMirror
|
head: ClothingHeadMirror
|
||||||
|
|
||||||
# Neck
|
# Neck
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChiefMedicalOfficerCloak
|
|
||||||
equipment: ChiefMedicalOfficerCloak
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChiefMedicalOfficerCloak
|
id: ChiefMedicalOfficerCloak
|
||||||
equipment:
|
equipment:
|
||||||
neck: ClothingCloakCmo
|
neck: ClothingCloakCmo
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChiefMedicalOfficerMantle
|
|
||||||
equipment: ChiefMedicalOfficerMantle
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChiefMedicalOfficerMantle
|
id: ChiefMedicalOfficerMantle
|
||||||
equipment:
|
equipment:
|
||||||
neck: ClothingNeckMantleCMO
|
neck: ClothingNeckMantleCMO
|
||||||
|
|
||||||
# Outer clothing
|
# Outer clothing
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChiefMedicalOfficerLabCoat
|
|
||||||
equipment: ChiefMedicalOfficerLabCoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChiefMedicalOfficerLabCoat
|
id: ChiefMedicalOfficerLabCoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterCoatLabCmo
|
outerClothing: ClothingOuterCoatLabCmo
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ChiefMedicalOfficerWintercoat
|
|
||||||
equipment: ChiefMedicalOfficerWintercoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ChiefMedicalOfficerWintercoat
|
id: ChiefMedicalOfficerWintercoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterWinterCMO
|
outerClothing: ClothingOuterWinterCMO
|
||||||
|
|||||||
@@ -33,241 +33,145 @@
|
|||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SeniorPhysicianBeret
|
id: SeniorPhysicianBeret
|
||||||
equipment: SeniorPhysicianBeret
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: SeniorPhysician
|
proto: SeniorPhysician
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SeniorPhysicianBeret
|
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatBeretSeniorPhysician
|
head: ClothingHeadHatBeretSeniorPhysician
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MedicalHeadMirror
|
id: MedicalHeadMirror
|
||||||
equipment: MedicalHeadMirror
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: MedicalHeadMirrorTimer
|
proto: MedicalHeadMirrorTimer
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MedicalHeadMirror
|
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadMirror
|
head: ClothingHeadMirror
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MedicalBeret
|
|
||||||
equipment: MedicalBeret
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MedicalBeret
|
id: MedicalBeret
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatBeretMedic
|
head: ClothingHeadHatBeretMedic
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: BlueSurgeryCap
|
|
||||||
equipment: BlueSurgeryCap
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: BlueSurgeryCap
|
id: BlueSurgeryCap
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatSurgcapBlue
|
head: ClothingHeadHatSurgcapBlue
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: GreenSurgeryCap
|
|
||||||
equipment: GreenSurgeryCap
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: GreenSurgeryCap
|
id: GreenSurgeryCap
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatSurgcapGreen
|
head: ClothingHeadHatSurgcapGreen
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: PurpleSurgeryCap
|
|
||||||
equipment: PurpleSurgeryCap
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: PurpleSurgeryCap
|
id: PurpleSurgeryCap
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatSurgcapPurple
|
head: ClothingHeadHatSurgcapPurple
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: NurseHat
|
|
||||||
equipment: NurseHat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: NurseHat
|
id: NurseHat
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadNurseHat
|
head: ClothingHeadNurseHat
|
||||||
|
|
||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MedicalDoctorJumpsuit
|
|
||||||
equipment: MedicalDoctorJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MedicalDoctorJumpsuit
|
id: MedicalDoctorJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitMedicalDoctor
|
jumpsuit: ClothingUniformJumpsuitMedicalDoctor
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MedicalDoctorJumpskirt
|
|
||||||
equipment: MedicalDoctorJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MedicalDoctorJumpskirt
|
id: MedicalDoctorJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtMedicalDoctor
|
jumpsuit: ClothingUniformJumpskirtMedicalDoctor
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SeniorPhysicianJumpsuit
|
id: SeniorPhysicianJumpsuit
|
||||||
equipment: SeniorPhysicianJumpsuit
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: SeniorPhysician
|
proto: SeniorPhysician
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SeniorPhysicianJumpsuit
|
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitSeniorPhysician
|
jumpsuit: ClothingUniformJumpsuitSeniorPhysician
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SeniorPhysicianJumpskirt
|
id: SeniorPhysicianJumpskirt
|
||||||
equipment: SeniorPhysicianJumpskirt
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: SeniorPhysician
|
proto: SeniorPhysician
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SeniorPhysicianJumpskirt
|
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtSeniorPhysician
|
jumpsuit: ClothingUniformJumpskirtSeniorPhysician
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MedicalBlueScrubs
|
|
||||||
equipment: MedicalBlueScrubs
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MedicalBlueScrubs
|
id: MedicalBlueScrubs
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: UniformScrubsColorBlue
|
jumpsuit: UniformScrubsColorBlue
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MedicalGreenScrubs
|
|
||||||
equipment: MedicalGreenScrubs
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MedicalGreenScrubs
|
id: MedicalGreenScrubs
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: UniformScrubsColorGreen
|
jumpsuit: UniformScrubsColorGreen
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MedicalPurpleScrubs
|
|
||||||
equipment: MedicalPurpleScrubs
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MedicalPurpleScrubs
|
id: MedicalPurpleScrubs
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: UniformScrubsColorPurple
|
jumpsuit: UniformScrubsColorPurple
|
||||||
|
|
||||||
# Back
|
# Back
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MedicalDoctorBackpack
|
|
||||||
equipment: MedicalDoctorBackpack
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MedicalDoctorBackpack
|
id: MedicalDoctorBackpack
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackMedical
|
back: ClothingBackpackMedical
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MedicalDoctorSatchel
|
|
||||||
equipment: MedicalDoctorSatchel
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MedicalDoctorSatchel
|
id: MedicalDoctorSatchel
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackSatchelMedical
|
back: ClothingBackpackSatchelMedical
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MedicalDoctorDuffel
|
|
||||||
equipment: MedicalDoctorDuffel
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MedicalDoctorDuffel
|
id: MedicalDoctorDuffel
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackDuffelMedical
|
back: ClothingBackpackDuffelMedical
|
||||||
|
|
||||||
# OuterClothing
|
# OuterClothing
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MedicalDoctorWintercoat
|
|
||||||
equipment: MedicalDoctorWintercoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MedicalDoctorWintercoat
|
id: MedicalDoctorWintercoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterWinterMed
|
outerClothing: ClothingOuterWinterMed
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SeniorPhysicianLabCoat
|
id: SeniorPhysicianLabCoat
|
||||||
equipment: SeniorPhysicianLabCoat
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: SeniorPhysician
|
proto: SeniorPhysician
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SeniorPhysicianLabCoat
|
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterCoatLabSeniorPhysician
|
outerClothing: ClothingOuterCoatLabSeniorPhysician
|
||||||
|
|
||||||
# Shoes
|
# Shoes
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MedicalWinterBoots
|
|
||||||
equipment: MedicalWinterBoots
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MedicalWinterBoots
|
id: MedicalWinterBoots
|
||||||
equipment:
|
equipment:
|
||||||
shoes: ClothingShoesBootsWinterMed
|
shoes: ClothingShoesBootsWinterMed
|
||||||
|
|
||||||
# ID
|
# ID
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MedicalDoctorPDA
|
|
||||||
equipment: MedicalDoctorPDA
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MedicalDoctorPDA
|
id: MedicalDoctorPDA
|
||||||
equipment:
|
equipment:
|
||||||
id: MedicalPDA
|
id: MedicalPDA
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SeniorPhysicianPDA
|
id: SeniorPhysicianPDA
|
||||||
equipment: SeniorPhysicianPDA
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: SeniorPhysician
|
proto: SeniorPhysician
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SeniorPhysicianPDA
|
|
||||||
equipment:
|
equipment:
|
||||||
id: SeniorPhysicianPDA
|
id: SeniorPhysicianPDA
|
||||||
|
|
||||||
# Gloves
|
# Gloves
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: NitrileGloves
|
|
||||||
equipment: NitrileGloves
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: NitrileGloves
|
id: NitrileGloves
|
||||||
equipment:
|
equipment:
|
||||||
gloves: ClothingHandsGlovesNitrile
|
gloves: ClothingHandsGlovesNitrile
|
||||||
|
|
||||||
#Masks
|
#Masks
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SterileMask
|
|
||||||
equipment: SterileMask
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SterileMask
|
id: SterileMask
|
||||||
equipment:
|
equipment:
|
||||||
mask: ClothingMaskSterile
|
mask: ClothingMaskSterile
|
||||||
|
|||||||
@@ -1,18 +1,10 @@
|
|||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: WhiteJumpsuit
|
|
||||||
equipment: WhiteJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: WhiteJumpsuit
|
id: WhiteJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitColorWhite
|
jumpsuit: ClothingUniformJumpsuitColorWhite
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: WhiteJumpskirt
|
|
||||||
equipment: WhiteJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: WhiteJumpskirt
|
id: WhiteJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtColorWhite
|
jumpsuit: ClothingUniformJumpskirtColorWhite
|
||||||
|
|||||||
@@ -1,57 +1,33 @@
|
|||||||
# Head
|
# Head
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ParamedicHead
|
|
||||||
equipment: ParamedicHead
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ParamedicHead
|
id: ParamedicHead
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatParamedicsoft
|
head: ClothingHeadHatParamedicsoft
|
||||||
|
|
||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ParamedicJumpsuit
|
|
||||||
equipment: ParamedicJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ParamedicJumpsuit
|
id: ParamedicJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitParamedic
|
jumpsuit: ClothingUniformJumpsuitParamedic
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ParamedicJumpskirt
|
|
||||||
equipment: ParamedicJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ParamedicJumpskirt
|
id: ParamedicJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtParamedic
|
jumpsuit: ClothingUniformJumpskirtParamedic
|
||||||
|
|
||||||
# Outer clothing
|
# Outer clothing
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ParamedicWindbreaker
|
|
||||||
equipment: ParamedicWindbreaker
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ParamedicWindbreaker
|
id: ParamedicWindbreaker
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterCoatParamedicWB
|
outerClothing: ClothingOuterCoatParamedicWB
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ParamedicWintercoat
|
|
||||||
equipment: ParamedicWintercoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ParamedicWintercoat
|
id: ParamedicWintercoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterWinterPara
|
outerClothing: ClothingOuterWinterPara
|
||||||
|
|
||||||
# Shoes
|
# Shoes
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: BlueShoes
|
|
||||||
equipment: BlueShoes
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: BlueShoes
|
id: BlueShoes
|
||||||
equipment:
|
equipment:
|
||||||
shoes: ClothingShoesColorBlue
|
shoes: ClothingShoesColorBlue
|
||||||
|
|||||||
@@ -2,62 +2,38 @@
|
|||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ResearchDirectorBeret
|
id: ResearchDirectorBeret
|
||||||
equipment: ScientificBeret
|
startingGear: ScientificBeret
|
||||||
|
|
||||||
# Neck
|
# Neck
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ResearchDirectorMantle
|
|
||||||
equipment: ResearchDirectorMantle
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ResearchDirectorMantle
|
id: ResearchDirectorMantle
|
||||||
equipment:
|
equipment:
|
||||||
neck: ClothingNeckMantleRD
|
neck: ClothingNeckMantleRD
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ResearchDirectorCloak
|
|
||||||
equipment: ResearchDirectorCloak
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ResearchDirectorCloak
|
id: ResearchDirectorCloak
|
||||||
equipment:
|
equipment:
|
||||||
neck: ClothingNeckCloakRd
|
neck: ClothingNeckCloakRd
|
||||||
|
|
||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ResearchDirectorJumpsuit
|
|
||||||
equipment: ResearchDirectorJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ResearchDirectorJumpsuit
|
id: ResearchDirectorJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitResearchDirector
|
jumpsuit: ClothingUniformJumpsuitResearchDirector
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ResearchDirectorJumpskirt
|
|
||||||
equipment: ResearchDirectorJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ResearchDirectorJumpskirt
|
id: ResearchDirectorJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtResearchDirector
|
jumpsuit: ClothingUniformJumpskirtResearchDirector
|
||||||
|
|
||||||
# OuterClothing
|
# OuterClothing
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ResearchDirectorLabCoat
|
|
||||||
equipment: ResearchDirectorLabCoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ResearchDirectorLabCoat
|
id: ResearchDirectorLabCoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterCoatRD
|
outerClothing: ClothingOuterCoatRD
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ResearchDirectorWintercoat
|
|
||||||
equipment: ResearchDirectorWintercoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ResearchDirectorWintercoat
|
id: ResearchDirectorWintercoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterWinterRD
|
outerClothing: ClothingOuterWinterRD
|
||||||
|
|||||||
@@ -9,33 +9,24 @@
|
|||||||
time: 216000 #60 hrs
|
time: 216000 #60 hrs
|
||||||
|
|
||||||
# Head
|
# Head
|
||||||
|
|
||||||
- type: loadout
|
|
||||||
id: ScientificBeret
|
|
||||||
equipment: ScientificBeret
|
|
||||||
effects:
|
|
||||||
- !type:GroupLoadoutEffect
|
|
||||||
proto: SeniorResearcher
|
|
||||||
|
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: ScientificBeret
|
id: ScientificBeret
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatBeretRND
|
head: ClothingHeadHatBeretRND
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: RoboticistCap
|
id: ScientificBeret
|
||||||
equipment: RoboticistCap
|
startingGear: ScientificBeret
|
||||||
|
effects:
|
||||||
|
- !type:GroupLoadoutEffect
|
||||||
|
proto: SeniorResearcher
|
||||||
|
|
||||||
- type: startingGear
|
- type: loadout
|
||||||
id: RoboticistCap
|
id: RoboticistCap
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatCorpsoft
|
head: ClothingHeadHatCorpsoft
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SkullBandana
|
|
||||||
equipment: SkullBandana
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SkullBandana
|
id: SkullBandana
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadBandSkull
|
head: ClothingHeadBandSkull
|
||||||
@@ -43,208 +34,124 @@
|
|||||||
# Neck
|
# Neck
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ScientistTie
|
|
||||||
equipment: ScientistTie
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ScientistTie
|
id: ScientistTie
|
||||||
equipment:
|
equipment:
|
||||||
neck: ClothingNeckTieSci
|
neck: ClothingNeckTieSci
|
||||||
|
|
||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ScientistJumpsuit
|
|
||||||
equipment: ScientistJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ScientistJumpsuit
|
id: ScientistJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitScientist
|
jumpsuit: ClothingUniformJumpsuitScientist
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ScientistJumpskirt
|
|
||||||
equipment: ScientistJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ScientistJumpskirt
|
id: ScientistJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtScientist
|
jumpsuit: ClothingUniformJumpskirtScientist
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: RoboticistJumpsuit
|
|
||||||
equipment: RoboticistJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: RoboticistJumpsuit
|
id: RoboticistJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitRoboticist
|
jumpsuit: ClothingUniformJumpsuitRoboticist
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: RoboticistJumpskirt
|
|
||||||
equipment: RoboticistJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: RoboticistJumpskirt
|
id: RoboticistJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtRoboticist
|
jumpsuit: ClothingUniformJumpskirtRoboticist
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SeniorResearcherJumpsuit
|
id: SeniorResearcherJumpsuit
|
||||||
equipment: SeniorResearcherJumpsuit
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: SeniorResearcher
|
proto: SeniorResearcher
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SeniorResearcherJumpsuit
|
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitSeniorResearcher
|
jumpsuit: ClothingUniformJumpsuitSeniorResearcher
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SeniorResearcherJumpskirt
|
id: SeniorResearcherJumpskirt
|
||||||
equipment: SeniorResearcherJumpskirt
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: SeniorResearcher
|
proto: SeniorResearcher
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SeniorResearcherJumpskirt
|
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtSeniorResearcher
|
jumpsuit: ClothingUniformJumpskirtSeniorResearcher
|
||||||
|
|
||||||
# Back
|
# Back
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ScientistBackpack
|
|
||||||
equipment: ScientistBackpack
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ScientistBackpack
|
id: ScientistBackpack
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackScience
|
back: ClothingBackpackScience
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ScientistSatchel
|
|
||||||
equipment: ScientistSatchel
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ScientistSatchel
|
id: ScientistSatchel
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackSatchelScience
|
back: ClothingBackpackSatchelScience
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ScientistDuffel
|
|
||||||
equipment: ScientistDuffel
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ScientistDuffel
|
id: ScientistDuffel
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackDuffelScience
|
back: ClothingBackpackDuffelScience
|
||||||
|
|
||||||
# OuterClothing
|
# OuterClothing
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: RegularLabCoat
|
|
||||||
equipment: RegularLabCoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: RegularLabCoat
|
id: RegularLabCoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterCoatLab
|
outerClothing: ClothingOuterCoatLab
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ScienceLabCoat
|
|
||||||
equipment: ScienceLabCoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ScienceLabCoat
|
id: ScienceLabCoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterCoatRnd
|
outerClothing: ClothingOuterCoatRnd
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ScienceWintercoat
|
|
||||||
equipment: ScienceWintercoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ScienceWintercoat
|
id: ScienceWintercoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterWinterSci
|
outerClothing: ClothingOuterWinterSci
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: RoboticistLabCoat
|
|
||||||
equipment: RoboticistLabCoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: RoboticistLabCoat
|
id: RoboticistLabCoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterCoatRobo
|
outerClothing: ClothingOuterCoatRobo
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: RoboticistWintercoat
|
|
||||||
equipment: RoboticistWintercoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: RoboticistWintercoat
|
id: RoboticistWintercoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterWinterRobo
|
outerClothing: ClothingOuterWinterRobo
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SeniorResearcherLabCoat
|
id: SeniorResearcherLabCoat
|
||||||
equipment: SeniorResearcherLabCoat
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: SeniorResearcher
|
proto: SeniorResearcher
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SeniorResearcherLabCoat
|
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterCoatLabSeniorResearcher
|
outerClothing: ClothingOuterCoatLabSeniorResearcher
|
||||||
|
|
||||||
# Gloves
|
# Gloves
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: LatexGloves
|
|
||||||
equipment: LatexGloves
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: LatexGloves
|
id: LatexGloves
|
||||||
equipment:
|
equipment:
|
||||||
gloves: ClothingHandsGlovesLatex
|
gloves: ClothingHandsGlovesLatex
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: RobohandsGloves
|
|
||||||
equipment: RobohandsGloves
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: RobohandsGloves
|
id: RobohandsGloves
|
||||||
equipment:
|
equipment:
|
||||||
gloves: ClothingHandsGlovesRobohands
|
gloves: ClothingHandsGlovesRobohands
|
||||||
|
|
||||||
# Shoes
|
# Shoes
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ScienceWinterBoots
|
|
||||||
equipment: ScienceWinterBoots
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ScienceWinterBoots
|
id: ScienceWinterBoots
|
||||||
equipment:
|
equipment:
|
||||||
shoes: ClothingShoesBootsWinterSci
|
shoes: ClothingShoesBootsWinterSci
|
||||||
|
|
||||||
# ID
|
# ID
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ScientistPDA
|
|
||||||
equipment: ScientistPDA
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ScientistPDA
|
id: ScientistPDA
|
||||||
equipment:
|
equipment:
|
||||||
id: SciencePDA
|
id: SciencePDA
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SeniorResearcherPDA
|
id: SeniorResearcherPDA
|
||||||
equipment: SeniorResearcherPDA
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: SeniorResearcher
|
proto: SeniorResearcher
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SeniorResearcherPDA
|
|
||||||
equipment:
|
equipment:
|
||||||
id: SeniorResearcherPDA
|
id: SeniorResearcherPDA
|
||||||
|
|||||||
@@ -1,84 +1,48 @@
|
|||||||
# Head
|
# Head
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: DetectiveFedora
|
|
||||||
equipment: DetectiveFedora
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: DetectiveFedora
|
id: DetectiveFedora
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatFedoraBrown
|
head: ClothingHeadHatFedoraBrown
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: DetectiveFedoraGrey
|
|
||||||
equipment: DetectiveFedoraGrey
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: DetectiveFedoraGrey
|
id: DetectiveFedoraGrey
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatFedoraGrey
|
head: ClothingHeadHatFedoraGrey
|
||||||
|
|
||||||
# Neck
|
# Neck
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: DetectiveTie
|
|
||||||
equipment: DetectiveTie
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: DetectiveTie
|
id: DetectiveTie
|
||||||
equipment:
|
equipment:
|
||||||
neck: ClothingNeckTieDet
|
neck: ClothingNeckTieDet
|
||||||
|
|
||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: DetectiveJumpsuit
|
|
||||||
equipment: DetectiveJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: DetectiveJumpsuit
|
id: DetectiveJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitDetective
|
jumpsuit: ClothingUniformJumpsuitDetective
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: DetectiveJumpskirt
|
|
||||||
equipment: DetectiveJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: DetectiveJumpskirt
|
id: DetectiveJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtDetective
|
jumpsuit: ClothingUniformJumpskirtDetective
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: NoirJumpsuit
|
|
||||||
equipment: NoirJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: NoirJumpsuit
|
id: NoirJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitDetectiveGrey
|
jumpsuit: ClothingUniformJumpsuitDetectiveGrey
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: NoirJumpskirt
|
|
||||||
equipment: NoirJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: NoirJumpskirt
|
id: NoirJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtDetectiveGrey
|
jumpsuit: ClothingUniformJumpskirtDetectiveGrey
|
||||||
|
|
||||||
# OuterClothing
|
# OuterClothing
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: DetectiveArmorVest
|
|
||||||
equipment: DetectiveArmorVest
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: DetectiveArmorVest
|
id: DetectiveArmorVest
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterVestDetective
|
outerClothing: ClothingOuterVestDetective
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: DetectiveCoat
|
|
||||||
equipment: DetectiveCoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: DetectiveCoat
|
id: DetectiveCoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterCoatDetectiveLoadout
|
outerClothing: ClothingOuterCoatDetectiveLoadout
|
||||||
|
|||||||
@@ -1,111 +1,63 @@
|
|||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: HeadofSecurityJumpsuit
|
|
||||||
equipment: HeadofSecurityJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: HeadofSecurityJumpsuit
|
id: HeadofSecurityJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitHoS
|
jumpsuit: ClothingUniformJumpsuitHoS
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: HeadofSecurityJumpskirt
|
|
||||||
equipment: HeadofSecurityJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: HeadofSecurityJumpskirt
|
id: HeadofSecurityJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtHoS
|
jumpsuit: ClothingUniformJumpskirtHoS
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: HeadofSecurityTurtleneck
|
|
||||||
equipment: HeadofSecurityTurtleneck
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: HeadofSecurityTurtleneck
|
id: HeadofSecurityTurtleneck
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitHoSAlt
|
jumpsuit: ClothingUniformJumpsuitHoSAlt
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: HeadofSecurityTurtleneckSkirt
|
|
||||||
equipment: HeadofSecurityTurtleneckSkirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: HeadofSecurityTurtleneckSkirt
|
id: HeadofSecurityTurtleneckSkirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtHoSAlt
|
jumpsuit: ClothingUniformJumpskirtHoSAlt
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: HeadofSecurityFormalSuit
|
|
||||||
equipment: HeadofSecurityFormalSuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: HeadofSecurityFormalSuit
|
id: HeadofSecurityFormalSuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitHosFormal
|
jumpsuit: ClothingUniformJumpsuitHosFormal
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: HeadofSecurityFormalSkirt
|
|
||||||
equipment: HeadofSecurityFormalSkirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: HeadofSecurityFormalSkirt
|
id: HeadofSecurityFormalSkirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtHosFormal
|
jumpsuit: ClothingUniformJumpskirtHosFormal
|
||||||
|
|
||||||
# Head
|
# Head
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: HeadofSecurityHead
|
|
||||||
equipment: HeadofSecurityHead
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: HeadofSecurityHead
|
id: HeadofSecurityHead
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatHoshat
|
head: ClothingHeadHatHoshat
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: HeadofSecurityBeret
|
|
||||||
equipment: HeadofSecurityBeret
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: HeadofSecurityBeret
|
id: HeadofSecurityBeret
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatBeretHoS
|
head: ClothingHeadHatBeretHoS
|
||||||
|
|
||||||
# Neck
|
# Neck
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: HeadofSecurityCloak
|
|
||||||
equipment: HeadofSecurityCloak
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: HeadofSecurityCloak
|
id: HeadofSecurityCloak
|
||||||
equipment:
|
equipment:
|
||||||
neck: ClothingNeckCloakHos
|
neck: ClothingNeckCloakHos
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: HeadofSecurityMantle
|
|
||||||
equipment: HeadofSecurityMantle
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: HeadofSecurityMantle
|
id: HeadofSecurityMantle
|
||||||
equipment:
|
equipment:
|
||||||
neck: ClothingNeckMantleHOS
|
neck: ClothingNeckMantleHOS
|
||||||
|
|
||||||
# OuterClothing
|
# OuterClothing
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: HeadofSecurityCoat
|
|
||||||
equipment: HeadofSecurityCoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: HeadofSecurityCoat
|
id: HeadofSecurityCoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterCoatHoSTrench
|
outerClothing: ClothingOuterCoatHoSTrench
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: HeadofSecurityWinterCoat
|
|
||||||
equipment: HeadofSecurityWinterCoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: HeadofSecurityWinterCoat
|
id: HeadofSecurityWinterCoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterWinterHoS
|
outerClothing: ClothingOuterWinterHoS
|
||||||
|
|||||||
@@ -1,18 +1,10 @@
|
|||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: RedJumpsuit
|
|
||||||
equipment: RedJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: RedJumpsuit
|
id: RedJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitColorRed
|
jumpsuit: ClothingUniformJumpsuitColorRed
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: RedJumpskirt
|
|
||||||
equipment: RedJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: RedJumpskirt
|
id: RedJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtColorRed
|
jumpsuit: ClothingUniformJumpskirtColorRed
|
||||||
|
|||||||
@@ -15,214 +15,126 @@
|
|||||||
|
|
||||||
# Head
|
# Head
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SecurityHelmet
|
|
||||||
equipment: SecurityHelmet
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SecurityHelmet
|
id: SecurityHelmet
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHelmetBasic
|
head: ClothingHeadHelmetBasic
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SecurityHat
|
|
||||||
equipment: SecurityHat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SecurityHat
|
id: SecurityHat
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatSecsoft
|
head: ClothingHeadHatSecsoft
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SecurityBeret
|
|
||||||
equipment: SecurityBeret
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SecurityBeret
|
id: SecurityBeret
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatBeretSecurity
|
head: ClothingHeadHatBeretSecurity
|
||||||
|
|
||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SecurityJumpsuit
|
|
||||||
equipment: SecurityJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SecurityJumpsuit
|
id: SecurityJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitSec
|
jumpsuit: ClothingUniformJumpsuitSec
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SecurityJumpskirt
|
|
||||||
equipment: SecurityJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SecurityJumpskirt
|
id: SecurityJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtSec
|
jumpsuit: ClothingUniformJumpskirtSec
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SecurityJumpsuitGrey
|
|
||||||
equipment: SecurityJumpsuitGrey
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SecurityJumpsuitGrey
|
id: SecurityJumpsuitGrey
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitSecGrey
|
jumpsuit: ClothingUniformJumpsuitSecGrey
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SecurityJumpskirtGrey
|
|
||||||
equipment: SecurityJumpskirtGrey
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SecurityJumpskirtGrey
|
id: SecurityJumpskirtGrey
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtSecGrey
|
jumpsuit: ClothingUniformJumpskirtSecGrey
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SeniorOfficerJumpsuit
|
id: SeniorOfficerJumpsuit
|
||||||
equipment: SeniorOfficerJumpsuit
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: SeniorOfficer
|
proto: SeniorOfficer
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SeniorOfficerJumpsuit
|
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitSeniorOfficer
|
jumpsuit: ClothingUniformJumpsuitSeniorOfficer
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SeniorOfficerJumpskirt
|
id: SeniorOfficerJumpskirt
|
||||||
equipment: SeniorOfficerJumpskirt
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: SeniorOfficer
|
proto: SeniorOfficer
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SeniorOfficerJumpskirt
|
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtSeniorOfficer
|
jumpsuit: ClothingUniformJumpskirtSeniorOfficer
|
||||||
|
|
||||||
# Back
|
# Back
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SecurityBackpack
|
|
||||||
equipment: SecurityBackpack
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SecurityBackpack
|
id: SecurityBackpack
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackSecurity
|
back: ClothingBackpackSecurity
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SecuritySatchel
|
|
||||||
equipment: SecuritySatchel
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SecuritySatchel
|
id: SecuritySatchel
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackSatchelSecurity
|
back: ClothingBackpackSatchelSecurity
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SecurityDuffel
|
|
||||||
equipment: SecurityDuffel
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SecurityDuffel
|
id: SecurityDuffel
|
||||||
equipment:
|
equipment:
|
||||||
back: ClothingBackpackDuffelSecurity
|
back: ClothingBackpackDuffelSecurity
|
||||||
|
|
||||||
# Belt
|
# Belt
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SecurityBelt
|
|
||||||
equipment: SecurityBelt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SecurityBelt
|
id: SecurityBelt
|
||||||
equipment:
|
equipment:
|
||||||
belt: ClothingBeltSecurityFilled
|
belt: ClothingBeltSecurityFilled
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SecurityWebbing
|
|
||||||
equipment: SecurityWebbing
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SecurityWebbing
|
id: SecurityWebbing
|
||||||
equipment:
|
equipment:
|
||||||
belt: ClothingBeltSecurityWebbingFilled
|
belt: ClothingBeltSecurityWebbingFilled
|
||||||
|
|
||||||
# Outerclothing
|
# Outerclothing
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ArmorVest
|
|
||||||
equipment: ArmorVest
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ArmorVest
|
id: ArmorVest
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterArmorBasic
|
outerClothing: ClothingOuterArmorBasic
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ArmorVestSlim
|
|
||||||
equipment: ArmorVestSlim
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ArmorVestSlim
|
id: ArmorVestSlim
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterArmorBasicSlim
|
outerClothing: ClothingOuterArmorBasicSlim
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SecurityOfficerWintercoat
|
|
||||||
equipment: SecurityOfficerWintercoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SecurityOfficerWintercoat
|
id: SecurityOfficerWintercoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterWinterSec
|
outerClothing: ClothingOuterWinterSec
|
||||||
|
|
||||||
# Shoes
|
# Shoes
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CombatBoots
|
|
||||||
equipment: CombatBoots
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CombatBoots
|
id: CombatBoots
|
||||||
equipment:
|
equipment:
|
||||||
shoes: ClothingShoesBootsCombatFilled
|
shoes: ClothingShoesBootsCombatFilled
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: JackBoots
|
|
||||||
equipment: JackBoots
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: JackBoots
|
id: JackBoots
|
||||||
equipment:
|
equipment:
|
||||||
shoes: ClothingShoesBootsJackFilled
|
shoes: ClothingShoesBootsJackFilled
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SecurityWinterBoots
|
|
||||||
equipment: SecurityWinterBoots
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SecurityWinterBoots
|
id: SecurityWinterBoots
|
||||||
equipment:
|
equipment:
|
||||||
shoes: ClothingShoesBootsWinterSecFilled
|
shoes: ClothingShoesBootsWinterSecFilled
|
||||||
|
|
||||||
# PDA
|
# PDA
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SecurityPDA
|
|
||||||
equipment: SecurityPDA
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SecurityPDA
|
id: SecurityPDA
|
||||||
equipment:
|
equipment:
|
||||||
id: SecurityPDA
|
id: SecurityPDA
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: SeniorOfficerPDA
|
id: SeniorOfficerPDA
|
||||||
equipment: SeniorOfficerPDA
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: SeniorOfficer
|
proto: SeniorOfficer
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: SeniorOfficerPDA
|
|
||||||
equipment:
|
equipment:
|
||||||
id: SeniorOfficerPDA
|
id: SeniorOfficerPDA
|
||||||
|
|||||||
@@ -1,56 +1,32 @@
|
|||||||
# Head
|
# Head
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: WardenHead
|
|
||||||
equipment: WardenHead
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: WardenHead
|
id: WardenHead
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatWarden
|
head: ClothingHeadHatWarden
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: WardenBeret
|
|
||||||
equipment: WardenBeret
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: WardenBeret
|
id: WardenBeret
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatBeretWarden
|
head: ClothingHeadHatBeretWarden
|
||||||
|
|
||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: WardenJumpsuit
|
|
||||||
equipment: WardenJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: WardenJumpsuit
|
id: WardenJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitWarden
|
jumpsuit: ClothingUniformJumpsuitWarden
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: WardenJumpskirt
|
|
||||||
equipment: WardenJumpskirt
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: WardenJumpskirt
|
id: WardenJumpskirt
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpskirtWarden
|
jumpsuit: ClothingUniformJumpskirtWarden
|
||||||
|
|
||||||
# OuterClothing
|
# OuterClothing
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: WardenCoat
|
|
||||||
equipment: WardenCoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: WardenCoat
|
id: WardenCoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterCoatWarden
|
outerClothing: ClothingOuterCoatWarden
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: WardenArmoredWinterCoat
|
|
||||||
equipment: WardenArmoredWinterCoat
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: WardenArmoredWinterCoat
|
id: WardenArmoredWinterCoat
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterWinterWarden
|
outerClothing: ClothingOuterWinterWarden
|
||||||
|
|||||||
@@ -1,55 +1,31 @@
|
|||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: BoxerShorts
|
|
||||||
equipment: BoxerShorts
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: BoxerShorts
|
id: BoxerShorts
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: UniformShortsRed
|
jumpsuit: UniformShortsRed
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: BoxerShortsWithTop
|
|
||||||
equipment: BoxerShortsWithTop
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: BoxerShortsWithTop
|
id: BoxerShortsWithTop
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: UniformShortsRedWithTop
|
jumpsuit: UniformShortsRedWithTop
|
||||||
|
|
||||||
# Gloves
|
# Gloves
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: RedBoxingGloves
|
|
||||||
equipment: RedBoxingGloves
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: RedBoxingGloves
|
id: RedBoxingGloves
|
||||||
equipment:
|
equipment:
|
||||||
gloves: ClothingHandsGlovesBoxingRed
|
gloves: ClothingHandsGlovesBoxingRed
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: BlueBoxingGloves
|
|
||||||
equipment: BlueBoxingGloves
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: BlueBoxingGloves
|
id: BlueBoxingGloves
|
||||||
equipment:
|
equipment:
|
||||||
gloves: ClothingHandsGlovesBoxingBlue
|
gloves: ClothingHandsGlovesBoxingBlue
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: GreenBoxingGloves
|
|
||||||
equipment: GreenBoxingGloves
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: GreenBoxingGloves
|
id: GreenBoxingGloves
|
||||||
equipment:
|
equipment:
|
||||||
gloves: ClothingHandsGlovesBoxingGreen
|
gloves: ClothingHandsGlovesBoxingGreen
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: YellowBoxingGloves
|
|
||||||
equipment: YellowBoxingGloves
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: YellowBoxingGloves
|
id: YellowBoxingGloves
|
||||||
equipment:
|
equipment:
|
||||||
gloves: ClothingHandsGlovesBoxingYellow
|
gloves: ClothingHandsGlovesBoxingYellow
|
||||||
|
|||||||
@@ -1,18 +1,10 @@
|
|||||||
# Jumpsuit
|
# Jumpsuit
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ReporterJumpsuit
|
|
||||||
equipment: ReporterJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ReporterJumpsuit
|
id: ReporterJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitReporter
|
jumpsuit: ClothingUniformJumpsuitReporter
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: JournalistJumpsuit
|
|
||||||
equipment: JournalistJumpsuit
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: JournalistJumpsuit
|
id: JournalistJumpsuit
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitJournalist
|
jumpsuit: ClothingUniformJumpsuitJournalist
|
||||||
|
|||||||
@@ -20,37 +20,25 @@
|
|||||||
# Basic options
|
# Basic options
|
||||||
# Glasses
|
# Glasses
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: Glasses
|
|
||||||
equipment: Glasses
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: Glasses
|
id: Glasses
|
||||||
equipment:
|
equipment:
|
||||||
eyes: ClothingEyesGlasses
|
eyes: ClothingEyesGlasses
|
||||||
|
|
||||||
# Special options
|
# Special options
|
||||||
# Jamjar
|
# Jamjar
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: GlassesJamjar
|
id: GlassesJamjar
|
||||||
equipment: GlassesJamjar
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: JamjarTimer
|
proto: JamjarTimer
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: GlassesJamjar
|
|
||||||
equipment:
|
equipment:
|
||||||
eyes: ClothingEyesGlassesJamjar
|
eyes: ClothingEyesGlassesJamjar
|
||||||
|
|
||||||
# Jensen
|
# Jensen
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: GlassesJensen
|
id: GlassesJensen
|
||||||
equipment: GlassesJensen
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: JensenTimer
|
proto: JensenTimer
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: GlassesJensen
|
|
||||||
equipment:
|
equipment:
|
||||||
eyes: ClothingEyesGlassesJensen
|
eyes: ClothingEyesGlassesJensen
|
||||||
|
|||||||
@@ -1,279 +1,167 @@
|
|||||||
# Instruments
|
# Instruments
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: Glockenspiel
|
|
||||||
equipment: Glockenspiel
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: Glockenspiel
|
id: Glockenspiel
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- GlockenspielInstrument
|
- GlockenspielInstrument
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: MusicBox
|
|
||||||
equipment: MusicBox
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MusicBox
|
id: MusicBox
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- MusicBoxInstrument
|
- MusicBoxInstrument
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: Xylophone
|
|
||||||
equipment: Xylophone
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: Xylophone
|
id: Xylophone
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- XylophoneInstrument
|
- XylophoneInstrument
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: Microphone
|
|
||||||
equipment: Microphone
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: Microphone
|
id: Microphone
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- MicrophoneInstrument
|
- MicrophoneInstrument
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: Synthesizer
|
|
||||||
equipment: Synthesizer
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: Synthesizer
|
id: Synthesizer
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- SynthesizerInstrument
|
- SynthesizerInstrument
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: Kalimba
|
|
||||||
equipment: Kalimba
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: Kalimba
|
id: Kalimba
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- KalimbaInstrument
|
- KalimbaInstrument
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: Woodblock
|
|
||||||
equipment: Woodblock
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: Woodblock
|
id: Woodblock
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- WoodblockInstrument
|
- WoodblockInstrument
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ElectricGuitar
|
|
||||||
equipment: ElectricGuitar
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ElectricGuitar
|
id: ElectricGuitar
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- ElectricGuitarInstrument
|
- ElectricGuitarInstrument
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: BassGuitar
|
|
||||||
equipment: BassGuitar
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: BassGuitar
|
id: BassGuitar
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- BassGuitarInstrument
|
- BassGuitarInstrument
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: RockGuitar
|
|
||||||
equipment: RockGuitar
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: RockGuitar
|
id: RockGuitar
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- RockGuitarInstrument
|
- RockGuitarInstrument
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: AcousticGuitar
|
|
||||||
equipment: AcousticGuitar
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: AcousticGuitar
|
id: AcousticGuitar
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- AcousticGuitarInstrument
|
- AcousticGuitarInstrument
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: Banjo
|
|
||||||
equipment: Banjo
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: Banjo
|
id: Banjo
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- BanjoInstrument
|
- BanjoInstrument
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: Violin
|
|
||||||
equipment: Violin
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: Violin
|
id: Violin
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- ViolinInstrument
|
- ViolinInstrument
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: Viola
|
|
||||||
equipment: Viola
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: Viola
|
id: Viola
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- ViolaInstrument
|
- ViolaInstrument
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: Cello
|
|
||||||
equipment: Cello
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: Cello
|
id: Cello
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- CelloInstrument
|
- CelloInstrument
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: Trumpet
|
|
||||||
equipment: Trumpet
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: Trumpet
|
id: Trumpet
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- TrumpetInstrument
|
- TrumpetInstrument
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: Trombone
|
|
||||||
equipment: Trombone
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: Trombone
|
id: Trombone
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- TromboneInstrument
|
- TromboneInstrument
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: FrenchHorn
|
|
||||||
equipment: FrenchHorn
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: FrenchHorn
|
id: FrenchHorn
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- FrenchHornInstrument
|
- FrenchHornInstrument
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: Euphonium
|
|
||||||
equipment: Euphonium
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: Euphonium
|
id: Euphonium
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- EuphoniumInstrument
|
- EuphoniumInstrument
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: Saxophone
|
|
||||||
equipment: Saxophone
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: Saxophone
|
id: Saxophone
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- SaxophoneInstrument
|
- SaxophoneInstrument
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: Accordion
|
|
||||||
equipment: Accordion
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: Accordion
|
id: Accordion
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- AccordionInstrument
|
- AccordionInstrument
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: Harmonica
|
|
||||||
equipment: Harmonica
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: Harmonica
|
id: Harmonica
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- HarmonicaInstrument
|
- HarmonicaInstrument
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: Clarinet
|
|
||||||
equipment: Clarinet
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: Clarinet
|
id: Clarinet
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- ClarinetInstrument
|
- ClarinetInstrument
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: Flute
|
|
||||||
equipment: Flute
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: Flute
|
id: Flute
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- FluteInstrument
|
- FluteInstrument
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: Recorder
|
|
||||||
equipment: Recorder
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: Recorder
|
id: Recorder
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- RecorderInstrument
|
- RecorderInstrument
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: PanFlute
|
|
||||||
equipment: PanFlute
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: PanFlute
|
id: PanFlute
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- PanFluteInstrument
|
- PanFluteInstrument
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: Ocarina
|
|
||||||
equipment: Ocarina
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: Ocarina
|
id: Ocarina
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- OcarinaInstrument
|
- OcarinaInstrument
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: Bagpipe
|
|
||||||
equipment: Bagpipe
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: Bagpipe
|
id: Bagpipe
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
|
|||||||
@@ -29,26 +29,18 @@
|
|||||||
# Basic
|
# Basic
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: EmergencyOxygen
|
id: EmergencyOxygen
|
||||||
equipment: EmergencyOxygen
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: OxygenBreather
|
proto: OxygenBreather
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: EmergencyOxygen
|
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- BoxSurvival
|
- BoxSurvival
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: EmergencyNitrogen
|
id: EmergencyNitrogen
|
||||||
equipment: EmergencyNitrogen
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: NitrogenBreather
|
proto: NitrogenBreather
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: EmergencyNitrogen
|
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- BoxSurvivalNitrogen
|
- BoxSurvivalNitrogen
|
||||||
@@ -56,26 +48,18 @@
|
|||||||
# Clown
|
# Clown
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: EmergencyOxygenClown
|
id: EmergencyOxygenClown
|
||||||
equipment: EmergencyOxygenClown
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: OxygenBreather
|
proto: OxygenBreather
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: EmergencyOxygenClown
|
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- BoxHug
|
- BoxHug
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: EmergencyNitrogenClown
|
id: EmergencyNitrogenClown
|
||||||
equipment: EmergencyNitrogenClown
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: NitrogenBreather
|
proto: NitrogenBreather
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: EmergencyNitrogenClown
|
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- BoxHugNitrogen
|
- BoxHugNitrogen
|
||||||
@@ -83,26 +67,18 @@
|
|||||||
# Engineering / Extended
|
# Engineering / Extended
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: EmergencyOxygenExtended
|
id: EmergencyOxygenExtended
|
||||||
equipment: EmergencyOxygenExtended
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: OxygenBreather
|
proto: OxygenBreather
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: EmergencyOxygenExtended
|
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- BoxSurvivalEngineering
|
- BoxSurvivalEngineering
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: EmergencyNitrogenExtended
|
id: EmergencyNitrogenExtended
|
||||||
equipment: EmergencyNitrogenExtended
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: NitrogenBreather
|
proto: NitrogenBreather
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: EmergencyNitrogenExtended
|
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- BoxSurvivalEngineeringNitrogen
|
- BoxSurvivalEngineeringNitrogen
|
||||||
@@ -110,26 +86,18 @@
|
|||||||
# Medical
|
# Medical
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: EmergencyOxygenMedical
|
id: EmergencyOxygenMedical
|
||||||
equipment: EmergencyOxygenMedical
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: OxygenBreather
|
proto: OxygenBreather
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: EmergencyOxygenMedical
|
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- BoxSurvivalMedical
|
- BoxSurvivalMedical
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: EmergencyNitrogenMedical
|
id: EmergencyNitrogenMedical
|
||||||
equipment: EmergencyNitrogenMedical
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: NitrogenBreather
|
proto: NitrogenBreather
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: EmergencyNitrogenMedical
|
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- BoxSurvivalMedicalNitrogen
|
- BoxSurvivalMedicalNitrogen
|
||||||
@@ -137,26 +105,18 @@
|
|||||||
# Security
|
# Security
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: EmergencyOxygenSecurity
|
id: EmergencyOxygenSecurity
|
||||||
equipment: EmergencyOxygenSecurity
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: OxygenBreather
|
proto: OxygenBreather
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: EmergencyOxygenSecurity
|
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- BoxSurvivalSecurity
|
- BoxSurvivalSecurity
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: EmergencyNitrogenSecurity
|
id: EmergencyNitrogenSecurity
|
||||||
equipment: EmergencyNitrogenSecurity
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: NitrogenBreather
|
proto: NitrogenBreather
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: EmergencyNitrogenSecurity
|
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- BoxSurvivalSecurityNitrogen
|
- BoxSurvivalSecurityNitrogen
|
||||||
@@ -164,26 +124,18 @@
|
|||||||
# Syndicate
|
# Syndicate
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: EmergencyOxygenSyndicate
|
id: EmergencyOxygenSyndicate
|
||||||
equipment: EmergencyOxygenSyndicate
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: OxygenBreather
|
proto: OxygenBreather
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: EmergencyOxygenSyndicate
|
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- BoxSurvivalSyndicate
|
- BoxSurvivalSyndicate
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: EmergencyNitrogenSyndicate
|
id: EmergencyNitrogenSyndicate
|
||||||
equipment: EmergencyNitrogenSyndicate
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: NitrogenBreather
|
proto: NitrogenBreather
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: EmergencyNitrogenSyndicate
|
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- BoxSurvivalSyndicateNitrogen
|
- BoxSurvivalSyndicateNitrogen
|
||||||
@@ -193,62 +145,42 @@
|
|||||||
# Full Tank Equipped
|
# Full Tank Equipped
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: LoadoutSpeciesEVANitrogen
|
id: LoadoutSpeciesEVANitrogen
|
||||||
equipment: GearEVANitrogen
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: EffectSpeciesVox
|
proto: EffectSpeciesVox
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: GearEVANitrogen
|
|
||||||
equipment:
|
equipment:
|
||||||
suitstorage: NitrogenTankFilled
|
suitstorage: NitrogenTankFilled
|
||||||
|
|
||||||
# Tank Harness
|
# Tank Harness
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: LoadoutTankHarness
|
id: LoadoutTankHarness
|
||||||
equipment: GearTankHarness
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: EffectSpeciesVox
|
proto: EffectSpeciesVox
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: GearTankHarness
|
|
||||||
equipment:
|
equipment:
|
||||||
outerClothing: ClothingOuterVestTank
|
outerClothing: ClothingOuterVestTank
|
||||||
|
|
||||||
# Breaths Tool On Face
|
# Breaths Tool On Face
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: LoadoutSpeciesBreathTool
|
id: LoadoutSpeciesBreathTool
|
||||||
equipment: GearSpeciesBreathTool
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: EffectSpeciesVox
|
proto: EffectSpeciesVox
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: GearSpeciesBreathTool
|
|
||||||
equipment:
|
equipment:
|
||||||
mask: ClothingMaskBreath
|
mask: ClothingMaskBreath
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: LoadoutSpeciesBreathToolMedical
|
id: LoadoutSpeciesBreathToolMedical
|
||||||
equipment: GearSpeciesBreathToolMedical
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: EffectSpeciesVox
|
proto: EffectSpeciesVox
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: GearSpeciesBreathToolMedical
|
|
||||||
equipment:
|
equipment:
|
||||||
mask: ClothingMaskBreathMedical
|
mask: ClothingMaskBreathMedical
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: LoadoutSpeciesBreathToolSecurity
|
id: LoadoutSpeciesBreathToolSecurity
|
||||||
equipment: GearSpeciesBreathToolSecurity
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: EffectSpeciesVox
|
proto: EffectSpeciesVox
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: GearSpeciesBreathToolSecurity
|
|
||||||
equipment:
|
equipment:
|
||||||
mask: ClothingMaskGasSecurity
|
mask: ClothingMaskGasSecurity
|
||||||
|
|||||||
@@ -10,20 +10,12 @@
|
|||||||
|
|
||||||
# Plushies
|
# Plushies
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: PlushieLizard
|
|
||||||
equipment: PlushieLizard
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: PlushieLizard
|
id: PlushieLizard
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- PlushieLizard
|
- PlushieLizard
|
||||||
|
|
||||||
- type: loadout
|
|
||||||
id: PlushieSpaceLizard
|
|
||||||
equipment: PlushieSpaceLizard
|
|
||||||
|
|
||||||
- type: startingGear
|
- type: loadout
|
||||||
id: PlushieSpaceLizard
|
id: PlushieSpaceLizard
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
@@ -31,50 +23,30 @@
|
|||||||
|
|
||||||
# Smokeables
|
# Smokeables
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: Lighter
|
|
||||||
equipment: Lighter
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: Lighter
|
id: Lighter
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- Lighter
|
- Lighter
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CigPackGreen
|
|
||||||
equipment: CigPackGreen
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CigPackGreen
|
id: CigPackGreen
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- CigPackGreen
|
- CigPackGreen
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CigPackRed
|
|
||||||
equipment: CigPackRed
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CigPackRed
|
id: CigPackRed
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- CigPackRed
|
- CigPackRed
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CigPackBlue
|
|
||||||
equipment: CigPackBlue
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CigPackBlue
|
id: CigPackBlue
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- CigPackBlue
|
- CigPackBlue
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CigPackBlack
|
|
||||||
equipment: CigPackBlack
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CigPackBlack
|
id: CigPackBlack
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
@@ -82,136 +54,84 @@
|
|||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CigarCase
|
id: CigarCase
|
||||||
equipment: CigarCase
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: Command
|
proto: Command
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CigarCase
|
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- CigarCase
|
- CigarCase
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: CigarGold
|
id: CigarGold
|
||||||
equipment: CigarGold
|
|
||||||
effects:
|
effects:
|
||||||
- !type:GroupLoadoutEffect
|
- !type:GroupLoadoutEffect
|
||||||
proto: Command
|
proto: Command
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: CigarGold
|
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- CigarGold
|
- CigarGold
|
||||||
|
|
||||||
# Pins
|
# Pins
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ClothingNeckLGBTPin
|
|
||||||
equipment: ClothingNeckLGBTPin
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ClothingNeckLGBTPin
|
id: ClothingNeckLGBTPin
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- ClothingNeckLGBTPin
|
- ClothingNeckLGBTPin
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ClothingNeckAromanticPin
|
|
||||||
equipment: ClothingNeckAromanticPin
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ClothingNeckAromanticPin
|
id: ClothingNeckAromanticPin
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- ClothingNeckAromanticPin
|
- ClothingNeckAromanticPin
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ClothingNeckAsexualPin
|
|
||||||
equipment: ClothingNeckAsexualPin
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ClothingNeckAsexualPin
|
id: ClothingNeckAsexualPin
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- ClothingNeckAsexualPin
|
- ClothingNeckAsexualPin
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ClothingNeckBisexualPin
|
|
||||||
equipment: ClothingNeckBisexualPin
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ClothingNeckBisexualPin
|
id: ClothingNeckBisexualPin
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- ClothingNeckBisexualPin
|
- ClothingNeckBisexualPin
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ClothingNeckIntersexPin
|
|
||||||
equipment: ClothingNeckIntersexPin
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ClothingNeckIntersexPin
|
id: ClothingNeckIntersexPin
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- ClothingNeckIntersexPin
|
- ClothingNeckIntersexPin
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ClothingNeckLesbianPin
|
|
||||||
equipment: ClothingNeckLesbianPin
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ClothingNeckLesbianPin
|
id: ClothingNeckLesbianPin
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- ClothingNeckLesbianPin
|
- ClothingNeckLesbianPin
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ClothingNeckNonBinaryPin
|
|
||||||
equipment: ClothingNeckNonBinaryPin
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ClothingNeckNonBinaryPin
|
id: ClothingNeckNonBinaryPin
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- ClothingNeckNonBinaryPin
|
- ClothingNeckNonBinaryPin
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ClothingNeckPansexualPin
|
|
||||||
equipment: ClothingNeckPansexualPin
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ClothingNeckPansexualPin
|
id: ClothingNeckPansexualPin
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- ClothingNeckPansexualPin
|
- ClothingNeckPansexualPin
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ClothingNeckTransPin
|
|
||||||
equipment: ClothingNeckTransPin
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ClothingNeckTransPin
|
id: ClothingNeckTransPin
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- ClothingNeckTransPin
|
- ClothingNeckTransPin
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ClothingNeckAutismPin
|
|
||||||
equipment: ClothingNeckAutismPin
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ClothingNeckAutismPin
|
id: ClothingNeckAutismPin
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
- ClothingNeckAutismPin
|
- ClothingNeckAutismPin
|
||||||
|
|
||||||
- type: loadout
|
- type: loadout
|
||||||
id: ClothingNeckGoldAutismPin
|
|
||||||
equipment: ClothingNeckGoldAutismPin
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: ClothingNeckGoldAutismPin
|
id: ClothingNeckGoldAutismPin
|
||||||
storage:
|
storage:
|
||||||
back:
|
back:
|
||||||
|
|||||||
Reference in New Issue
Block a user