Merge branch 'upstream-upstream' of https://github.com/frosty-dev/ss14-core into upstream-upstream

This commit is contained in:
Remuchi
2024-01-27 19:09:49 +07:00
75 changed files with 260 additions and 873848 deletions

View File

@@ -4,19 +4,16 @@ using Robust.Client.GameObjects;
using Robust.Client.Graphics; using Robust.Client.Graphics;
using Robust.Shared.Enums; using Robust.Shared.Enums;
using System.Numerics; using System.Numerics;
using Robust.Shared.Prototypes;
namespace Content.Client.StatusIcon; namespace Content.Client.StatusIcon;
public sealed class StatusIconOverlay : Overlay public sealed class StatusIconOverlay : Overlay
{ {
[Dependency] private readonly IEntityManager _entity = default!; [Dependency] private readonly IEntityManager _entity = default!;
[Dependency] private readonly IPrototypeManager _prototype = default!;
private readonly SpriteSystem _sprite; private readonly SpriteSystem _sprite;
private readonly TransformSystem _transform; private readonly TransformSystem _transform;
private readonly StatusIconSystem _statusIcon; private readonly StatusIconSystem _statusIcon;
private readonly ShaderInstance _shader;
public override OverlaySpace Space => OverlaySpace.WorldSpaceBelowFOV; public override OverlaySpace Space => OverlaySpace.WorldSpaceBelowFOV;
@@ -27,7 +24,6 @@ public sealed class StatusIconOverlay : Overlay
_sprite = _entity.System<SpriteSystem>(); _sprite = _entity.System<SpriteSystem>();
_transform = _entity.System<TransformSystem>(); _transform = _entity.System<TransformSystem>();
_statusIcon = _entity.System<StatusIconSystem>(); _statusIcon = _entity.System<StatusIconSystem>();
_shader = _prototype.Index<ShaderPrototype>("unshaded").Instance();
} }
protected override void Draw(in OverlayDrawArgs args) protected override void Draw(in OverlayDrawArgs args)
@@ -40,8 +36,6 @@ public sealed class StatusIconOverlay : Overlay
var scaleMatrix = Matrix3.CreateScale(new Vector2(1, 1)); var scaleMatrix = Matrix3.CreateScale(new Vector2(1, 1));
var rotationMatrix = Matrix3.CreateRotation(-eyeRot); var rotationMatrix = Matrix3.CreateRotation(-eyeRot);
handle.UseShader(_shader);
var query = _entity.AllEntityQueryEnumerator<StatusIconComponent, SpriteComponent, TransformComponent, MetaDataComponent>(); var query = _entity.AllEntityQueryEnumerator<StatusIconComponent, SpriteComponent, TransformComponent, MetaDataComponent>();
while (query.MoveNext(out var uid, out var comp, out var sprite, out var xform, out var meta)) while (query.MoveNext(out var uid, out var comp, out var sprite, out var xform, out var meta))
{ {
@@ -105,7 +99,5 @@ public sealed class StatusIconOverlay : Overlay
handle.DrawTexture(texture, position); handle.DrawTexture(texture, position);
} }
} }
handle.UseShader(null);
} }
} }

View File

@@ -207,7 +207,7 @@ namespace Content.Shared.Atmos
/// <summary> /// <summary>
/// This is calculated to help prevent singlecap bombs (Overpowered tritium/oxygen single tank bombs) /// This is calculated to help prevent singlecap bombs (Overpowered tritium/oxygen single tank bombs)
/// </summary> /// </summary>
public const float MinimumTritiumOxyburnEnergy = 143000f; public const float MinimumTritiumOxyburnEnergy = 430000f;
public const float TritiumBurnOxyFactor = 100f; public const float TritiumBurnOxyFactor = 100f;
public const float TritiumBurnTritFactor = 10f; public const float TritiumBurnTritFactor = 10f;

View File

@@ -202,7 +202,7 @@ namespace Content.Shared.CCVar
/// Prototype to use for map pool. /// Prototype to use for map pool.
/// </summary> /// </summary>
public static readonly CVarDef<string> public static readonly CVarDef<string>
GameMapPool = CVarDef.Create("game.map_pool", "WhiteMapPool", CVar.SERVERONLY); GameMapPool = CVarDef.Create("game.map_pool", "DefaultMapPool", CVar.SERVERONLY);
/// <summary> /// <summary>
/// The depth of the queue used to calculate which map is next in rotation. /// The depth of the queue used to calculate which map is next in rotation.
@@ -1002,7 +1002,7 @@ namespace Content.Shared.CCVar
/// Whether gas differences will move entities. /// Whether gas differences will move entities.
/// </summary> /// </summary>
public static readonly CVarDef<bool> SpaceWind = public static readonly CVarDef<bool> SpaceWind =
CVarDef.Create("atmos.space_wind", false, CVar.SERVERONLY); CVarDef.Create("atmos.space_wind", true, CVar.SERVERONLY);
/// <summary> /// <summary>
/// Divisor from maxForce (pressureDifference * 2.25f) to force applied on objects. /// Divisor from maxForce (pressureDifference * 2.25f) to force applied on objects.
@@ -1051,7 +1051,7 @@ namespace Content.Shared.CCVar
/// Also looks weird on slow spacing for unrelated reasons. If you do want to enable this, you should probably turn on instaspacing. /// Also looks weird on slow spacing for unrelated reasons. If you do want to enable this, you should probably turn on instaspacing.
/// </summary> /// </summary>
public static readonly CVarDef<bool> MonstermosRipTiles = public static readonly CVarDef<bool> MonstermosRipTiles =
CVarDef.Create("atmos.monstermos_rip_tiles", false, CVar.SERVERONLY); CVarDef.Create("atmos.monstermos_rip_tiles", true, CVar.SERVERONLY);
/// <summary> /// <summary>
/// Whether explosive depressurization will cause the grid to gain an impulse. /// Whether explosive depressurization will cause the grid to gain an impulse.
@@ -1065,7 +1065,7 @@ namespace Content.Shared.CCVar
/// 1.0 for instant spacing, 0.2 means 20% of remaining air lost each time /// 1.0 for instant spacing, 0.2 means 20% of remaining air lost each time
/// </summary> /// </summary>
public static readonly CVarDef<float> AtmosSpacingEscapeRatio = public static readonly CVarDef<float> AtmosSpacingEscapeRatio =
CVarDef.Create("atmos.mmos_spacing_speed", 0.05f, CVar.SERVERONLY); CVarDef.Create("atmos.mmos_spacing_speed", 1f, CVar.SERVERONLY);
/// <summary> /// <summary>
/// Minimum amount of air allowed on a spaced tile before it is reset to 0 immediately in kPa /// Minimum amount of air allowed on a spaced tile before it is reset to 0 immediately in kPa

View File

@@ -11,13 +11,14 @@ public sealed class HeldSpeedModifierSystem : EntitySystem
{ {
[Dependency] private readonly MovementSpeedModifierSystem _movementSpeedModifier = default!; [Dependency] private readonly MovementSpeedModifierSystem _movementSpeedModifier = default!;
/*
/// <inheritdoc/> /// <inheritdoc/>
public override void Initialize() public override void Initialize()
{ {
SubscribeLocalEvent<HeldSpeedModifierComponent, GotEquippedHandEvent>(OnGotEquippedHand); SubscribeLocalEvent<HeldSpeedModifierComponent, GotEquippedHandEvent>(OnGotEquippedHand);
SubscribeLocalEvent<HeldSpeedModifierComponent, GotUnequippedHandEvent>(OnGotUnequippedHand); SubscribeLocalEvent<HeldSpeedModifierComponent, GotUnequippedHandEvent>(OnGotUnequippedHand);
SubscribeLocalEvent<HeldSpeedModifierComponent, HeldRelayedEvent<RefreshMovementSpeedModifiersEvent>>(OnRefreshMovementSpeedModifiers); SubscribeLocalEvent<HeldSpeedModifierComponent, HeldRelayedEvent<RefreshMovementSpeedModifiersEvent>>(OnRefreshMovementSpeedModifiers);
} }*/
private void OnGotEquippedHand(Entity<HeldSpeedModifierComponent> ent, ref GotEquippedHandEvent args) private void OnGotEquippedHand(Entity<HeldSpeedModifierComponent> ent, ref GotEquippedHandEvent args)
{ {

View File

@@ -30,7 +30,7 @@ public sealed partial class PneumaticCannonComponent : Component
/// </summary> /// </summary>
[DataField("gasUsage")] [DataField("gasUsage")]
[ViewVariables(VVAccess.ReadWrite)] [ViewVariables(VVAccess.ReadWrite)]
public float GasUsage = 0.142f; public float GasUsage = 2f;
/// <summary> /// <summary>
/// Base projectile speed at default power. /// Base projectile speed at default power.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -8,6 +8,7 @@
contents: contents:
- id: ClothingMaskBreath - id: ClothingMaskBreath
- id: EmergencyOxygenTankFilled - id: EmergencyOxygenTankFilled
- id: SpaceMedipen
- id: EmergencyMedipen - id: EmergencyMedipen
- id: Flare - id: Flare
- id: FoodTinMRE - id: FoodTinMRE
@@ -27,6 +28,7 @@
contents: contents:
- id: ClothingMaskBreath - id: ClothingMaskBreath
- id: ExtendedEmergencyOxygenTankFilled - id: ExtendedEmergencyOxygenTankFilled
- id: SpaceMedipen
- id: EmergencyMedipen - id: EmergencyMedipen
- id: Flare - id: Flare
- id: FoodTinMRE - id: FoodTinMRE
@@ -47,6 +49,7 @@
contents: contents:
- id: ClothingMaskGasSecurity - id: ClothingMaskGasSecurity
- id: EmergencyOxygenTankFilled - id: EmergencyOxygenTankFilled
- id: SpaceMedipen
- id: EmergencyMedipen - id: EmergencyMedipen
- id: Flare - id: Flare
- id: FoodTinMRE - id: FoodTinMRE
@@ -67,6 +70,7 @@
contents: contents:
- id: ClothingMaskBreathMedical - id: ClothingMaskBreathMedical
- id: EmergencyOxygenTankFilled - id: EmergencyOxygenTankFilled
- id: SpaceMedipen
- id: EmergencyMedipen - id: EmergencyMedipen
- id: Flare - id: Flare
- id: FoodTinMRE - id: FoodTinMRE
@@ -92,6 +96,7 @@
contents: contents:
- id: ClothingMaskBreath - id: ClothingMaskBreath
- id: EmergencyFunnyOxygenTankFilled - id: EmergencyFunnyOxygenTankFilled
- id: SpaceMedipen
- id: EmergencyMedipen - id: EmergencyMedipen
- id: Flare - id: Flare
- id: FoodTinMRE - id: FoodTinMRE
@@ -110,6 +115,7 @@
contents: contents:
- id: ClothingMaskGasSyndicate - id: ClothingMaskGasSyndicate
- id: ExtendedEmergencyOxygenTankFilled - id: ExtendedEmergencyOxygenTankFilled
- id: SpaceMedipen
- id: EmergencyMedipen - id: EmergencyMedipen
- id: Flare - id: Flare
- id: FoodTinMRE - id: FoodTinMRE

View File

@@ -28,10 +28,10 @@
- type: GasTank - type: GasTank
outputPressure: 21.3 outputPressure: 21.3
air: air:
# 31 minutes # 94 minutes
volume: 5 volume: 15
moles: moles:
- 2.051379050 # oxygen - 6.154137219 # oxygen
temperature: 293.15 temperature: 293.15
- type: entity - type: entity
@@ -49,10 +49,10 @@
- type: GasTank - type: GasTank
outputPressure: 21.3 outputPressure: 21.3
air: air:
# 4 minutes # 13 minutes
volume: 0.66 volume: 2
moles: moles:
- 0.270782035 # oxygen - 0.820551629 # oxygen
temperature: 293.15 temperature: 293.15
- type: entity - type: entity
@@ -79,10 +79,10 @@
- type: GasTank - type: GasTank
outputPressure: 21.3 outputPressure: 21.3
air: air:
# 9 minutes # 38 minutes
volume: 1.5 volume: 6
moles: moles:
- 0.615413715 # oxygen - 2.461654887 # oxygen
temperature: 293.15 temperature: 293.15
- type: entity - type: entity
@@ -109,10 +109,10 @@
- type: GasTank - type: GasTank
outputPressure: 21.3 outputPressure: 21.3
air: air:
# 15 minutes # 63 minutes
volume: 2.5 volume: 10
moles: moles:
- 1.025689525 # oxygen - 4.102758145 # oxygen
temperature: 293.15 temperature: 293.15
- type: entity - type: entity
@@ -160,12 +160,12 @@
- type: GasTank - type: GasTank
outputPressure: 101.3 outputPressure: 101.3
air: air:
# 6 minutes due to output pressure # 20 minutes due to output pressure
volume: 5 volume: 15
moles: moles:
- 0.451303391 # 22% oxygen - 1.353910188 # 22% oxygen
- 1.600075659 # 78% nitrogen - 4.800227031 # 78% nitrogen
# 2.051379050 total # 6.154137219 total
temperature: 293.15 temperature: 293.15
- type: entity - type: entity
@@ -175,12 +175,13 @@
name: nitrogen tank name: nitrogen tank
components: components:
- type: GasTank - type: GasTank
outputPressure: 21.3
air: air:
# 31 minutes # 94 minutes
volume: 5 volume: 15
moles: moles:
- 0 # oxygen not included - 0 # oxygen not included
- 2.051379050 # nitrogen - 6.154137219 # nitrogen
temperature: 293.15 temperature: 293.15
- type: entity - type: entity
@@ -197,18 +198,18 @@
# 30.3975 optimal output pressure # 30.3975 optimal output pressure
outputPressure: 30.4 outputPressure: 30.4
air: air:
# only 22 minutes due to pressure # only 66 minutes due to pressure
volume: 5 volume: 15
moles: moles:
- 1.435965335 # 70% oxygen - 4.30789605 # 70% oxygen
- 0 # nitrogen - 0 # nitrogen
- 0 # CO2 - 0 # CO2
- 0 # plasma - 0 # plasma
- 0 # tritium - 0 # tritium
- 0 # water vapor - 0 # water vapor
- 0 # ammonia - 0 # ammonia
- 0.615413715 # 30% N2O - 1.84624116 # 30% N2O
# 2.051379050 total # 6.15413721 total
temperature: 293.15 temperature: 293.15
- type: entity - type: entity

View File

@@ -30,14 +30,14 @@
- id: Screwdriver - id: Screwdriver
- id: Crowbar - id: Crowbar
- id: Wirecutter - id: Wirecutter
- id: CableApcStack10 - id: CableApcStack30
- id: CableMVStack10 - id: CableMVStack30
- id: trayScanner - id: trayScanner
prob: 0.9 prob: 0.9
- id: ClothingHandsGlovesColorYellow - id: ClothingHandsGlovesColorYellow
prob: 0.05 prob: 0.05
orGroup: GlovesOrWires orGroup: GlovesOrWires
- id: CableHVStack10 - id: CableHVStack30
orGroup: GlovesOrWires orGroup: GlovesOrWires
- type: entity - type: entity
@@ -51,14 +51,14 @@
- id: Screwdriver - id: Screwdriver
- id: Crowbar - id: Crowbar
- id: Wirecutter - id: Wirecutter
- id: CableApcStack10 - id: CableApcStack30
- id: CableMVStack10 - id: CableMVStack30
- id: trayScanner - id: trayScanner
prob: 0.9 prob: 0.9
- id: ClothingHandsGlovesColorYellow - id: ClothingHandsGlovesColorYellow
prob: 0.05 prob: 0.05
orGroup: GlovesOrWires orGroup: GlovesOrWires
- id: CableHVStack10 - id: CableHVStack30
orGroup: GlovesOrWires orGroup: GlovesOrWires
- type: entity - type: entity

View File

@@ -7,6 +7,7 @@
FoodCondimentPacketKetchup: 5 FoodCondimentPacketKetchup: 5
emaggedInventory: emaggedInventory:
KitchenKnife: 2 KitchenKnife: 2
SpaceMedipen: 3
ClothingMaskBreath: 3 ClothingMaskBreath: 3
EmergencyOxygenTankFilled: 3 EmergencyOxygenTankFilled: 3
DrinkNukieCan: 2 DrinkNukieCan: 2

View File

@@ -268,6 +268,7 @@
Telecrystal: 11 Telecrystal: 11
categories: categories:
- UplinkExplosives - UplinkExplosives
saleLimit: 1
conditions: conditions:
- !type:StoreWhitelistCondition - !type:StoreWhitelistCondition
whitelist: whitelist:
@@ -483,6 +484,7 @@
Telecrystal: 65 Telecrystal: 65
categories: categories:
- UplinkUtility - UplinkUtility
saleLimit: 1
conditions: conditions:
- !type:StoreWhitelistCondition - !type:StoreWhitelistCondition
whitelist: whitelist:
@@ -707,6 +709,7 @@
Telecrystal: 20 Telecrystal: 20
categories: categories:
- UplinkImplants - UplinkImplants
saleLimit: 1
conditions: conditions:
- !type:StoreWhitelistCondition - !type:StoreWhitelistCondition
whitelist: whitelist:
@@ -1000,6 +1003,7 @@
Telecrystal: 8 Telecrystal: 8
categories: categories:
- UplinkTools - UplinkTools
saleLimit: 1
conditions: conditions:
- !type:BuyerWhitelistCondition - !type:BuyerWhitelistCondition
blacklist: blacklist:
@@ -1015,11 +1019,6 @@
Telecrystal: 2 Telecrystal: 2
categories: categories:
- UplinkTools - UplinkTools
conditions:
- !type:StoreWhitelistCondition
blacklist:
tags:
- NukeOpsUplink
# Job Specific # Job Specific
@@ -1037,19 +1036,19 @@
whitelist: whitelist:
- Botanist - Botanist
- type: listing #- type: listing
id: uplinkRiggedBoxingGlovesPassenger # id: uplinkRiggedBoxingGlovesPassenger
name: uplink-rigged-boxing-gloves-name # name: uplink-rigged-boxing-gloves-name
description: uplink-rigged-boxing-gloves-desc # description: uplink-rigged-boxing-gloves-desc
productEntity: ClothingHandsGlovesBoxingRigged # productEntity: ClothingHandsGlovesBoxingRigged
cost: # cost:
Telecrystal: 6 # Telecrystal: 6
categories: # categories:
- UplinkJob # - UplinkJob
conditions: # conditions:
- !type:BuyerJobCondition # - !type:BuyerJobCondition
whitelist: # whitelist:
- Passenger # - Passenger
- type: listing - type: listing
id: uplinkRiggedBoxingGlovesBoxer id: uplinkRiggedBoxingGlovesBoxer
@@ -1060,6 +1059,7 @@
Telecrystal: 4 Telecrystal: 4
categories: categories:
- UplinkJob - UplinkJob
saleLimit: 1
conditions: conditions:
- !type:BuyerJobCondition - !type:BuyerJobCondition
whitelist: whitelist:
@@ -1157,6 +1157,7 @@
- !type:BuyerJobCondition - !type:BuyerJobCondition
whitelist: whitelist:
- Clown - Clown
saleLimit: 1
- type: listing - type: listing
id: uplinkHotPotato id: uplinkHotPotato
@@ -1188,6 +1189,7 @@
- !type:BuyerDepartmentCondition - !type:BuyerDepartmentCondition
whitelist: whitelist:
- Science - Science
saleLimit: 1
- type: listing - type: listing
id: uplinkProximityMine id: uplinkProximityMine
@@ -1311,6 +1313,7 @@
Telecrystal: 8 Telecrystal: 8
categories: categories:
- UplinkArmor - UplinkArmor
saleLimit: 1
- type: listing - type: listing
id: UplinkHardsuitSyndieElite id: UplinkHardsuitSyndieElite
@@ -1321,6 +1324,7 @@
Telecrystal: 10 Telecrystal: 10
categories: categories:
- UplinkArmor - UplinkArmor
saleLimit: 1
- type: listing - type: listing
id: UplinkClothingOuterHardsuitJuggernaut id: UplinkClothingOuterHardsuitJuggernaut
@@ -1382,7 +1386,7 @@
icon: { sprite: /Textures/Objects/Weapons/Melee/e_shield.rsi, state: eshield-on } icon: { sprite: /Textures/Objects/Weapons/Melee/e_shield.rsi, state: eshield-on }
productEntity: EnergyShield productEntity: EnergyShield
cost: cost:
Telecrystal: 6 Telecrystal: 3
categories: categories:
- UplinkMisc - UplinkMisc
saleLimit: 1 saleLimit: 1

View File

@@ -186,9 +186,9 @@
- DoorElectronics - DoorElectronics
- APCElectronics - APCElectronics
- InflatableWallStack5 - InflatableWallStack5
- CableHVStack10 - CableHVStack30
- CableMVStack10 - CableMVStack30
- CableApcStack10 - CableApcStack30
- PetCarrier - PetCarrier
chance: 0.6 chance: 0.6
offset: 0.0 offset: 0.0

View File

@@ -2,7 +2,7 @@
id: GauzeLefteyePatch id: GauzeLefteyePatch
bodyPart: Eyes bodyPart: Eyes
markingCategory: Head markingCategory: Head
speciesRestriction: [Moth, Dwarf, Human, Arachnid] speciesRestriction: [Moth, Dwarf, Human]
coloring: coloring:
default: default:
type: type:
@@ -16,7 +16,7 @@
id: GauzeLefteyeTape id: GauzeLefteyeTape
bodyPart: Eyes bodyPart: Eyes
markingCategory: Head markingCategory: Head
speciesRestriction: [Moth, Dwarf, Human, Reptilian, Arachnid] speciesRestriction: [Moth, Dwarf, Human, Reptilian]
coloring: coloring:
default: default:
type: type:
@@ -30,7 +30,7 @@
id: GauzeRighteyePatch id: GauzeRighteyePatch
bodyPart: Eyes bodyPart: Eyes
markingCategory: Head markingCategory: Head
speciesRestriction: [Moth, Dwarf, Human, Arachnid] speciesRestriction: [Moth, Dwarf, Human]
coloring: coloring:
default: default:
type: type:
@@ -44,7 +44,7 @@
id: GauzeRighteyeTape id: GauzeRighteyeTape
bodyPart: Eyes bodyPart: Eyes
markingCategory: Head markingCategory: Head
speciesRestriction: [Moth, Dwarf, Human, Reptilian, Arachnid] speciesRestriction: [Moth, Dwarf, Human, Reptilian]
coloring: coloring:
default: default:
type: type:
@@ -58,7 +58,7 @@
id: GauzeBlindfold id: GauzeBlindfold
bodyPart: Eyes bodyPart: Eyes
markingCategory: Head markingCategory: Head
speciesRestriction: [Moth, Dwarf, Human, Arachnid] speciesRestriction: [Moth, Dwarf, Human]
coloring: coloring:
default: default:
type: type:

View File

@@ -157,10 +157,6 @@
spawned: spawned:
- id: FoodMeatDragon - id: FoodMeatDragon
amount: 1 amount: 1
- type: MeleeWeapon
damage:
groups:
Brute: 12
- type: entity - type: entity
id: ActionSpawnRift id: ActionSpawnRift

View File

@@ -253,7 +253,7 @@
- type: Barotrauma - type: Barotrauma
damage: damage:
types: types:
Blunt: 0.55 #per second, scales with pressure and other constants. Blunt: 0.35 #per second, scales with pressure and other constants.
- type: PassiveDamage # Slight passive regen. Assuming one damage type, comes out to about 4 damage a minute. - type: PassiveDamage # Slight passive regen. Assuming one damage type, comes out to about 4 damage a minute.
allowedStates: allowedStates:
- Alive - Alive

View File

@@ -35,7 +35,7 @@
- type: Barotrauma - type: Barotrauma
damage: damage:
types: types:
Blunt: 0.60 #per second, scales with pressure and other constants. Slighty more than humans. Blunt: 0.45 #per second, scales with pressure and other constants. Slighty more than humans.
- type: Reactive - type: Reactive
groups: groups:
Flammable: [ Touch ] Flammable: [ Touch ]

View File

@@ -40,7 +40,7 @@
wideAnimationRotation: 180 wideAnimationRotation: 180
damage: damage:
types: types:
Blunt: 10 Blunt: 12
soundHit: soundHit:
path: /Audio/Weapons/smash.ogg path: /Audio/Weapons/smash.ogg
- type: Tool - type: Tool

View File

@@ -75,6 +75,16 @@
- type: Stack - type: Stack
count: 10 count: 10
- type: entity
parent: CableHVStack
id: CableHVStack30
suffix: 30
components:
- type: Sprite
state: coilhv-30
- type: Stack
count: 30
- type: entity - type: entity
parent: CableHVStack10 parent: CableHVStack10
id: CableHVStackLingering10 id: CableHVStackLingering10
@@ -140,6 +150,16 @@
- type: Stack - type: Stack
count: 10 count: 10
- type: entity
parent: CableMVStack
id: CableMVStack30
suffix: 30
components:
- type: Sprite
state: coilmv-30
- type: Stack
count: 30
- type: entity - type: entity
parent: CableMVStack10 parent: CableMVStack10
id: CableMVStackLingering10 id: CableMVStackLingering10
@@ -204,6 +224,16 @@
- type: Stack - type: Stack
count: 10 count: 10
- type: entity
parent: CableApcStack
id: CableApcStack30
suffix: 30
components:
- type: Sprite
state: coillv-30
- type: Stack
count: 30
- type: entity - type: entity
parent: CableApcStack10 parent: CableApcStack10
id: CableApcStackLingering10 id: CableApcStackLingering10

View File

@@ -22,12 +22,6 @@
- key: enum.SharedGasTankUiKey.Key - key: enum.SharedGasTankUiKey.Key
type: GasTankBoundUserInterface type: GasTankBoundUserInterface
- type: GasTank - type: GasTank
outputPressure: 21.3
air:
# If gas tank volume is changed, adjust MinimumTritiumOxyburnEnergy in Atmospherics.cs by the same proportions
volume: 5
temperature: 293.15
tankLowPressure: 30.0
- type: Explosive - type: Explosive
explosionType: Default explosionType: Default
maxIntensity: 20 maxIntensity: 20
@@ -63,8 +57,12 @@
sprite: Objects/Tanks/oxygen.rsi sprite: Objects/Tanks/oxygen.rsi
- type: Item - type: Item
sprite: Objects/Tanks/oxygen.rsi sprite: Objects/Tanks/oxygen.rsi
- type: Clothing - type: GasTank
sprite: Objects/Tanks/oxygen.rsi outputPressure: 21.3
air:
volume: 15
temperature: 293.15
tankLowPressure: 30.0
- type: entity - type: entity
parent: OxygenTank parent: OxygenTank
@@ -80,7 +78,7 @@
sprite: Objects/Tanks/yellow.rsi sprite: Objects/Tanks/yellow.rsi
- type: entity - type: entity
parent: GasTankRoundBase parent: OxygenTank
id: NitrogenTank id: NitrogenTank
name: nitrogen tank name: nitrogen tank
description: A standard cylindrical gas tank for nitrogen. description: A standard cylindrical gas tank for nitrogen.
@@ -93,7 +91,7 @@
sprite: Objects/Tanks/red.rsi sprite: Objects/Tanks/red.rsi
- type: entity - type: entity
parent: GasTankRoundBase parent: OxygenTank
id: EmergencyOxygenTank id: EmergencyOxygenTank
name: emergency oxygen tank name: emergency oxygen tank
description: An easily portable tank for emergencies. Contains very little oxygen, rated for survival use only. description: An easily portable tank for emergencies. Contains very little oxygen, rated for survival use only.
@@ -105,7 +103,7 @@
sprite: Objects/Tanks/emergency.rsi sprite: Objects/Tanks/emergency.rsi
- type: GasTank - type: GasTank
air: air:
volume: 0.66 volume: 2
temperature: 293.15 temperature: 293.15
- type: Clothing - type: Clothing
sprite: Objects/Tanks/emergency.rsi sprite: Objects/Tanks/emergency.rsi
@@ -146,7 +144,7 @@
sprite: Objects/Tanks/emergency_extended.rsi sprite: Objects/Tanks/emergency_extended.rsi
- type: GasTank - type: GasTank
air: air:
volume: 1.5 volume: 6
temperature: 293.15 temperature: 293.15
- type: Clothing - type: Clothing
sprite: Objects/Tanks/emergency_extended.rsi sprite: Objects/Tanks/emergency_extended.rsi
@@ -176,7 +174,7 @@
sprite: Objects/Tanks/emergency_double.rsi sprite: Objects/Tanks/emergency_double.rsi
- type: GasTank - type: GasTank
air: air:
volume: 2.5 volume: 10
temperature: 293.15 temperature: 293.15
- type: Clothing - type: Clothing
sprite: Objects/Tanks/emergency_double.rsi sprite: Objects/Tanks/emergency_double.rsi
@@ -220,6 +218,9 @@
components: components:
- type: GasTank - type: GasTank
outputPressure: 101.3 outputPressure: 101.3
air:
volume: 15
temperature: 293.15
- type: entity - type: entity
parent: GasTankRoundBase parent: GasTankRoundBase
@@ -233,6 +234,9 @@
sprite: Objects/Tanks/anesthetic.rsi sprite: Objects/Tanks/anesthetic.rsi
- type: GasTank - type: GasTank
outputPressure: 30.4 outputPressure: 30.4
air:
volume: 15
temperature: 293.15
- type: Clothing - type: Clothing
sprite: Objects/Tanks/anesthetic.rsi sprite: Objects/Tanks/anesthetic.rsi

View File

@@ -48,12 +48,11 @@
slots: slots:
- Back - Back
- type: GasTank - type: GasTank
outputPressure: 21.3 outputPressure: 21.27825
air: air:
volume: 5 volume: 70
temperature: 293.15 temperature: 293.15
- type: Jetpack - type: Jetpack
moleUsage: 0.00085
- type: Appearance - type: Appearance
- type: StaticPrice - type: StaticPrice
price: 100 price: 100
@@ -98,12 +97,11 @@
- type: GasTank - type: GasTank
outputPressure: 42.6 outputPressure: 42.6
air: air:
# 13 minutes of thrust volume: 70
volume: 5
temperature: 293.15 temperature: 293.15
moles: moles:
- 1.025689525 # oxygen - 11.315
- 1.025689525 # nitrogen - 11.315
#Empty black #Empty black
- type: entity - type: entity
@@ -131,12 +129,11 @@
- type: GasTank - type: GasTank
outputPressure: 42.6 outputPressure: 42.6
air: air:
# 13 minutes of thrust volume: 70
volume: 5
temperature: 293.15 temperature: 293.15
moles: moles:
- 1.025689525 # oxygen - 11.315
- 1.025689525 # nitrogen - 11.315
#Empty captain #Empty captain
- type: entity - type: entity
@@ -171,12 +168,11 @@
- type: GasTank - type: GasTank
outputPressure: 42.6 outputPressure: 42.6
air: air:
# 13 minutes of thrust volume: 70
volume: 5
temperature: 293.15 temperature: 293.15
moles: moles:
- 1.025689525 # oxygen - 11.315
- 1.025689525 # nitrogen - 11.315
#Empty mini #Empty mini
- type: entity - type: entity
@@ -198,7 +194,7 @@
- type: GasTank - type: GasTank
outputPressure: 42.6 outputPressure: 42.6
air: air:
volume: 1.5 volume: 20
# Filled mini # Filled mini
- type: entity - type: entity
@@ -210,12 +206,11 @@
- type: GasTank - type: GasTank
outputPressure: 42.6 outputPressure: 42.6
air: air:
# 4 minutes of thrust
volume: 1.5
temperature: 293.15 temperature: 293.15
volume: 20
moles: moles:
- 0.307706858 # oxygen - 0.747
- 0.307706858 # nitrogen - 0.747
#Empty security #Empty security
- type: entity - type: entity
@@ -243,12 +238,11 @@
- type: GasTank - type: GasTank
outputPressure: 42.6 outputPressure: 42.6
air: air:
# 13 minutes thrust volume: 70
volume: 5
temperature: 293.15 temperature: 293.15
moles: moles:
- 1.025689525 # oxygen - 11.315
- 1.025689525 # nitrogen - 11.315
#Empty void #Empty void
- type: entity - type: entity
@@ -278,9 +272,8 @@
- type: GasTank - type: GasTank
outputPressure: 42.6 outputPressure: 42.6
air: air:
# 13 minutes of thrust volume: 70
volume: 5
temperature: 293.15 temperature: 293.15
moles: moles:
- 1.025689525 # oxygen - 11.315
- 1.025689525 # nitrogen - 11.315

View File

@@ -27,7 +27,7 @@
- type: MeleeWeapon - type: MeleeWeapon
damage: damage:
types: types:
Blunt: 12 Blunt: 15
soundHit: soundHit:
path: "/Audio/Weapons/smash.ogg" path: "/Audio/Weapons/smash.ogg"
- type: Tag - type: Tag

View File

@@ -39,7 +39,7 @@
attackRate: 0.75 attackRate: 0.75
damage: damage:
types: types:
Slash: 16 Slash: 33
soundHit: soundHit:
path: /Audio/Weapons/bladeslice.ogg path: /Audio/Weapons/bladeslice.ogg
- type: Item - type: Item
@@ -69,14 +69,14 @@
damage: damage:
types: types:
Blunt: 10 Blunt: 10
Slash: 10 Slash: 20
Structural: 5 Structural: 5
- type: Wieldable - type: Wieldable
- type: IncreaseDamageOnWield - type: IncreaseDamageOnWield
damage: damage:
types: types:
Blunt: 5 Blunt: 4
Slash: 5 Slash: 12
Structural: 10 Structural: 10
- type: Item - type: Item
size: Ginormous size: Ginormous

View File

@@ -19,14 +19,15 @@
types: types:
# axes are kinda like sharp hammers, you know? # axes are kinda like sharp hammers, you know?
Blunt: 5 Blunt: 5
Slash: 10 Slash: 13
Structural: 10 Structural: 10
- type: Wieldable - type: Wieldable
- type: IncreaseDamageOnWield - type: IncreaseDamageOnWield
damage: damage:
types: types:
Slash: 10 Blunt: 2.5
Structural: 40 Slash: 10.5
Structural: 60
- type: Item - type: Item
size: Ginormous size: Ginormous
- type: Clothing - type: Clothing

View File

@@ -14,7 +14,7 @@
wideAnimationRotation: -135 wideAnimationRotation: -135
damage: damage:
types: types:
Slash: 10 Slash: 12
soundHit: soundHit:
path: /Audio/Weapons/bladeslice.ogg path: /Audio/Weapons/bladeslice.ogg
- type: Sprite - type: Sprite

View File

@@ -46,7 +46,7 @@
wideAnimationRotation: -135 wideAnimationRotation: -135
damage: damage:
types: types:
Slash: 15 Slash: 20
soundHit: soundHit:
path: /Audio/Weapons/bladeslice.ogg path: /Audio/Weapons/bladeslice.ogg
- type: Item - type: Item
@@ -102,7 +102,7 @@
wideAnimationRotation: -135 wideAnimationRotation: -135
damage: damage:
types: types:
Slash: 15 Slash: 20
soundHit: soundHit:
path: /Audio/Weapons/bladeslice.ogg path: /Audio/Weapons/bladeslice.ogg
- type: Item - type: Item
@@ -125,7 +125,7 @@
attackRate: 0.75 attackRate: 0.75
damage: damage:
types: types:
Slash: 20 Slash: 33
soundHit: soundHit:
path: /Audio/Weapons/bladeslice.ogg path: /Audio/Weapons/bladeslice.ogg
- type: Item - type: Item

View File

@@ -1,55 +0,0 @@
- type: gameMap
id: WhiteBagel
mapName: 'Bagel Station'
mapPath: /Maps/White/Whitebagel.yml
minPlayers: 0
stations:
Bagel:
stationProto: StandardNanotrasenStation
components:
- type: StationNameSetup
mapNameTemplate: '{0} Bagel Station {1}'
nameGenerator:
!type:NanotrasenNameGenerator
prefixCreator: '14'
- type: StationEmergencyShuttle
emergencyShuttlePath: /Maps/Shuttles/emergency_lox.yml
- type: StationJobs
overflowJobs:
- Passenger
availableJobs:
CargoTechnician: [ 3, 3 ]
Passenger: [ -1, -1 ]
Bartender: [ 2, 2 ]
Botanist: [ 3, 3 ]
Chef: [ 2, 2 ]
Clown: [ 1, 1 ]
Janitor: [ 3, 3 ]
Mime: [ 1, 1 ]
Captain: [ 1, 1 ]
HeadOfPersonnel: [ 1, 1 ]
ChiefEngineer: [ 1, 1 ]
StationEngineer: [ 4, 4 ]
ChiefMedicalOfficer: [ 1, 1 ]
MedicalDoctor: [ 3, 3 ]
Chemist: [ 2, 3 ]
ResearchDirector: [ 1, 1 ]
Scientist: [ 4, 4 ]
HeadOfSecurity: [ 1, 1 ]
SecurityOfficer: [ 4, 4 ]
Chaplain: [ 1, 1 ]
Warden: [ 1, 1 ]
Librarian: [ 1, 1 ]
Lawyer: [ 2, 2 ]
Quartermaster: [ 1, 1 ]
SalvageSpecialist: [ 3, 3 ]
Musician: [ 1, 1 ]
AtmosphericTechnician: [ 3, 3 ]
TechnicalAssistant: [ 2, 2 ]
MedicalIntern: [ 2, 2 ]
ServiceWorker: [ 2, 2 ]
SecurityCadet: [ 2, 2 ]
Reporter: [ 2, 2 ]
Detective: [ 1, 1 ]
ResearchAssistant: [ 2, 2 ]
Paramedic: [ 1, 1 ]

View File

@@ -1,54 +0,0 @@
- type: gameMap
id: WhiteBox
mapName: 'Box Station'
mapPath: /Maps/White/Whitebox.yml
minPlayers: 0
stations:
Boxstation:
stationProto: StandardNanotrasenStation
components:
- type: StationNameSetup
mapNameTemplate: '{0} Box Station {1}'
nameGenerator:
!type:NanotrasenNameGenerator
prefixCreator: 'TG'
- type: StationEmergencyShuttle
emergencyShuttlePath: /Maps/Shuttles/emergency_box.yml
- type: StationJobs
overflowJobs:
- Passenger
availableJobs:
CargoTechnician: [ 3, 3 ]
Passenger: [ -1, -1 ]
Bartender: [ 2, 2 ]
Botanist: [ 3, 3 ]
Chef: [ 2, 2 ]
Clown: [ 1, 1 ]
Janitor: [ 3, 3 ]
Mime: [ 1, 1 ]
Captain: [ 1, 1 ]
HeadOfPersonnel: [ 1, 1 ]
ChiefEngineer: [ 1, 1 ]
StationEngineer: [ 4, 4 ]
ChiefMedicalOfficer: [ 1, 1 ]
MedicalDoctor: [ 4, 4 ]
Chemist: [ 3, 3 ]
ResearchDirector: [ 1, 1 ]
Scientist: [ 5, 5 ]
HeadOfSecurity: [ 1, 1 ]
SecurityOfficer: [ 6, 6 ]
Chaplain: [ 2, 2 ]
Warden: [ 1, 1 ]
Librarian: [ 2, 2 ]
Lawyer: [ 2, 2 ]
Quartermaster: [ 1, 1 ]
SalvageSpecialist: [ 3, 3 ]
Musician: [ 2, 2 ]
AtmosphericTechnician: [ 3, 3 ]
TechnicalAssistant: [ 4, 4 ]
MedicalIntern: [ 4, 4 ]
ServiceWorker: [ 4, 4 ]
SecurityCadet: [ 4, 4 ]
Detective: [ 1, 1 ]
ResearchAssistant: [ 4, 4 ]
Paramedic: [ 1, 1 ]

View File

@@ -1,55 +0,0 @@
- type: gameMap
id: WhiteKettle
mapName: 'Kettle'
mapPath: /Maps/White/Whitekettle.yml
minPlayers: 0
stations:
Kettle:
stationProto: StandardNanotrasenStation
components:
- type: StationNameSetup
mapNameTemplate: '{0} Kettle {1}'
nameGenerator:
!type:NanotrasenNameGenerator
prefixCreator: '14'
- type: StationEmergencyShuttle
emergencyShuttlePath: /Maps/Shuttles/emergency_courser.yml
- type: StationJobs
overflowJobs:
- Passenger
availableJobs:
CargoTechnician: [ 3, 3 ]
Passenger: [ -1, -1 ]
Bartender: [ 1, 2 ]
Botanist: [ 3, 4 ]
Chef: [ 2, 3 ]
Clown: [ 1, 2 ]
Janitor: [ 4, 4 ]
Mime: [ 1, 2 ]
Captain: [ 1, 1 ]
HeadOfPersonnel: [ 1, 1 ]
ChiefEngineer: [ 1, 1 ]
StationEngineer: [ 4, 6 ]
ChiefMedicalOfficer: [ 1, 1 ]
MedicalDoctor: [ 3, 5 ]
Chemist: [ 2, 3 ]
ResearchDirector: [ 1, 1 ]
Scientist: [ 4, 6 ]
ResearchAssistant: [ 4, 4 ]
HeadOfSecurity: [ 1, 1 ]
SecurityOfficer: [ 4, 6 ]
Chaplain: [ 1, 2 ]
Warden: [ 1, 1 ]
Librarian: [ 1, 2 ]
Lawyer: [ 2, 3 ]
Quartermaster: [ 1, 1 ]
SalvageSpecialist: [ 3, 4 ]
Musician: [ 1, 2 ]
AtmosphericTechnician: [ 3, 3 ]
TechnicalAssistant: [ 4, 4 ]
MedicalIntern: [ 4, 4 ]
ServiceWorker: [ 4, 4 ]
SecurityCadet: [ 4, 4 ]
Detective: [ 1, 1 ]
Zookeeper: [1, 1]
Paramedic: [2, 2]

View File

@@ -1,54 +0,0 @@
- type: gameMap
id: WhiteMeta
mapName: 'Meta Station'
mapPath: /Maps/White/Whitemeta.yml
minPlayers: 0
stations:
Meta:
stationProto: StandardNanotrasenStation
components:
- type: StationNameSetup
mapNameTemplate: '{0} Meta Station {1}'
nameGenerator:
!type:NanotrasenNameGenerator
prefixCreator: 'TG'
- type: StationEmergencyShuttle
emergencyShuttlePath: /Maps/Shuttles/emergency_courser.yml
- type: StationJobs
overflowJobs:
- Passenger
availableJobs:
CargoTechnician: [ 3, 3 ]
Passenger: [ -1, -1 ]
Bartender: [ 2, 2 ]
Botanist: [ 3, 3 ]
Chef: [ 2, 2 ]
Clown: [ 1, 1 ]
Janitor: [ 3, 3 ]
Mime: [ 1, 1 ]
Captain: [ 1, 1 ]
HeadOfPersonnel: [ 1, 1 ]
ChiefEngineer: [ 1, 1 ]
StationEngineer: [ 4, 4 ]
ChiefMedicalOfficer: [ 1, 1 ]
MedicalDoctor: [ 4, 4 ]
Chemist: [ 3, 3 ]
ResearchDirector: [ 1, 1 ]
Scientist: [ 6, 6 ]
HeadOfSecurity: [ 1, 1 ]
SecurityOfficer: [ 6, 6 ]
Chaplain: [ 2, 2 ]
Warden: [ 1, 1 ]
Librarian: [ 2, 2 ]
Lawyer: [ 2, 2 ]
Quartermaster: [ 1, 1 ]
SalvageSpecialist: [ 3, 3 ]
Musician: [ 2, 2 ]
AtmosphericTechnician: [ 3, 3 ]
TechnicalAssistant: [ 4, 4 ]
MedicalIntern: [ 4, 4 ]
ServiceWorker: [ 4, 4 ]
SecurityCadet: [ 4, 4 ]
Detective: [ 1, 1 ]
ResearchAssistant: [ 4, 4 ]
Paramedic: [ 1, 1 ]

View File

@@ -1,62 +0,0 @@
- type: gameMap
id: WonderBox
mapName: 'WonderBox Station'
mapPath: /Maps/White/WonderBox.yml
minPlayers: 20
stations:
WonderBoxStation:
stationProto: StandardNanotrasenStation
components:
- type: StationNameSetup
mapNameTemplate: '{0} WonderBox Station {1}'
nameGenerator:
!type:NanotrasenNameGenerator
prefixCreator: 'TG'
- type: StationEmergencyShuttle
emergencyShuttlePath: /Maps/Shuttles/emergency_box.yml
- type: StationJobs
overflowJobs:
- Passenger
availableJobs:
CargoTechnician: [ 6, 6 ]
Passenger: [ -1, -1 ]
Bartender: [ 2, 2 ]
Botanist: [ 3, 3 ]
Chef: [ 2, 2 ]
Clown: [ 1, 1 ]
Janitor: [ 4, 4 ]
Mime: [ 1, 1 ]
Captain: [ 1, 1 ]
HeadOfPersonnel: [ 1, 1 ]
ChiefEngineer: [ 1, 1 ]
StationEngineer: [ 10, 10 ]
ChiefMedicalOfficer: [ 1, 1 ]
MedicalDoctor: [ 5, 5 ]
Paramedic: [ 4, 4 ]
Musician: [ 1, 1 ]
Chemist: [ 3, 3 ]
ResearchDirector: [ 1, 1 ]
Scientist: [ 8, 8 ]
HeadOfSecurity: [ 1, 1 ]
SecurityOfficer: [ 6, 6 ]
Chaplain: [ 1, 1 ]
Warden: [ 1, 1 ]
Librarian: [ 2, 2 ]
Lawyer: [ 2, 2 ]
Quartermaster: [ 1, 1 ]
SalvageSpecialist: [ 6, 6 ]
AtmosphericTechnician: [ 4, 4 ]
TechnicalAssistant: [ 4, 4 ]
MedicalIntern: [ 3, 3 ]
ServiceWorker: [ 3, 3 ]
SecurityCadet: [ 6, 6 ]
Detective: [ 1, 1 ]
ResearchAssistant: [ 3, 3 ]
MedicalCyborg: [ 2, 0 ]
SecurityCyborg: [ 2, 0 ]
EngineerCyborg: [ 2, 0 ]
NekoCyborg: [ 2, 0 ]
SeniorResearcher: [ 1, 1 ]
SeniorOfficer: [ 1, 1 ]
SeniorPhysician: [ 1, 1 ]
SeniorEngineer: [ 1, 1 ]

View File

@@ -33,7 +33,7 @@
weights: weights:
EscapeShuttleObjective: 1 EscapeShuttleObjective: 1
DieObjective: 0.05 DieObjective: 0.05
#HijackShuttleObjective: 0.02 HijackShuttleObjective: 0.02
- type: weightedRandom - type: weightedRandom
id: TraitorObjectiveGroupSocial id: TraitorObjectiveGroupSocial

View File

@@ -25,6 +25,6 @@
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
underweart: ClothingUnderwearTopBraWhite # White-Underwear underweart: ClothingUnderwearTopBraWhite # White-Underwear
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtCargo innerClothingSkirt: ClothingUniformJumpskirtCargo
satchel: ClothingBackpackSatchelCargoFilled satchel: ClothingBackpackSatchelCargoFilled
duffelbag: ClothingBackpackDuffelCargoFilled duffelbag: ClothingBackpackDuffelCargoFilled

View File

@@ -49,6 +49,6 @@
underwearb: ClothingUnderwearBottomBoxersQM # White-Underwear underwearb: ClothingUnderwearBottomBoxersQM # White-Underwear
underweart: ClothingUnderwearTopBraQM # White-Underwear underweart: ClothingUnderwearTopBraQM # White-Underwear
underwearb: ClothingUnderwearBottomPantiesQM # White-Underwear underwearb: ClothingUnderwearBottomPantiesQM # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtQM innerClothingSkirt: ClothingUniformJumpskirtQM
satchel: ClothingBackpackSatchelQuartermasterFilled satchel: ClothingBackpackSatchelQuartermasterFilled
duffelbag: ClothingBackpackDuffelQuartermasterFilled duffelbag: ClothingBackpackDuffelQuartermasterFilled

View File

@@ -20,6 +20,6 @@
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
underweart: ClothingUnderwearTopBraWhite # White-Underwear underweart: ClothingUnderwearTopBraWhite # White-Underwear
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtColorGrey innerClothingSkirt: ClothingUniformJumpskirtColorGrey
satchel: ClothingBackpackSatchelFilled satchel: ClothingBackpackSatchelFilled
duffelbag: ClothingBackpackDuffelFilled duffelbag: ClothingBackpackDuffelFilled

View File

@@ -31,6 +31,6 @@
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
underweart: ClothingUnderwearTopBraWhite # White-Underwear underweart: ClothingUnderwearTopBraWhite # White-Underwear
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtBartender innerClothingSkirt: ClothingUniformJumpskirtBartender
satchel: ClothingBackpackSatchelFilled satchel: ClothingBackpackSatchelFilled
duffelbag: ClothingBackpackDuffelFilled duffelbag: ClothingBackpackDuffelFilled

View File

@@ -27,6 +27,6 @@
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
underweart: ClothingUnderwearTopBraWhite # White-Underwear underweart: ClothingUnderwearTopBraWhite # White-Underwear
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtHydroponics innerClothingSkirt: ClothingUniformJumpskirtHydroponics
satchel: ClothingBackpackSatchelHydroponicsFilled satchel: ClothingBackpackSatchelHydroponicsFilled
duffelbag: ClothingBackpackDuffelHydroponicsFilled duffelbag: ClothingBackpackDuffelHydroponicsFilled

View File

@@ -25,6 +25,6 @@
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
underweart: ClothingUnderwearTopBraWhite # White-Underwear underweart: ClothingUnderwearTopBraWhite # White-Underwear
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtChaplain innerClothingSkirt: ClothingUniformJumpskirtChaplain
satchel: ClothingBackpackSatchelChaplainFilled satchel: ClothingBackpackSatchelChaplainFilled
duffelbag: ClothingBackpackDuffelChaplainFilled duffelbag: ClothingBackpackDuffelChaplainFilled

View File

@@ -33,6 +33,6 @@
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
underweart: ClothingUnderwearTopBraWhite # White-Underwear underweart: ClothingUnderwearTopBraWhite # White-Underwear
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtChef innerClothingSkirt: ClothingUniformJumpskirtChef
satchel: ClothingBackpackSatchelFilled satchel: ClothingBackpackSatchelFilled
duffelbag: ClothingBackpackDuffelFilled duffelbag: ClothingBackpackDuffelFilled

View File

@@ -29,7 +29,7 @@
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
underweart: ClothingUnderwearTopBraWhite # White-Underwear underweart: ClothingUnderwearTopBraWhite # White-Underwear
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtJanitor innerClothingSkirt: ClothingUniformJumpskirtJanitor
satchel: ClothingBackpackSatchelFilled satchel: ClothingBackpackSatchelFilled
duffelbag: ClothingBackpackDuffelFilled duffelbag: ClothingBackpackDuffelFilled

View File

@@ -25,6 +25,6 @@
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
inhand: inhand:
- BriefcaseBrownFilled - BriefcaseBrownFilled
innerclothingskirt: ClothingUniformJumpskirtColorLightBrown innerClothingSkirt: ClothingUniformJumpskirtColorLightBrown
satchel: ClothingBackpackSatchelLibrarianFilled satchel: ClothingBackpackSatchelLibrarianFilled
duffelbag: ClothingBackpackDuffelLibrarianFilled duffelbag: ClothingBackpackDuffelLibrarianFilled

View File

@@ -34,7 +34,7 @@
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
underweart: ClothingUnderwearTopBraWhite # White-Underwear underweart: ClothingUnderwearTopBraWhite # White-Underwear
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtMime innerClothingSkirt: ClothingUniformJumpskirtMime
satchel: ClothingBackpackSatchelMimeFilled satchel: ClothingBackpackSatchelMimeFilled
duffelbag: ClothingBackpackDuffelMimeFilled duffelbag: ClothingBackpackDuffelMimeFilled

View File

@@ -1,4 +1,4 @@
- type: job - type: job
id: ServiceWorker id: ServiceWorker
name: job-name-serviceworker name: job-name-serviceworker
description: job-description-serviceworker description: job-description-serviceworker
@@ -25,6 +25,6 @@
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
underweart: ClothingUnderwearTopBraWhite # White-Underwear underweart: ClothingUnderwearTopBraWhite # White-Underwear
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtBartender innerClothingSkirt: ClothingUniformJumpskirtBartender
satchel: ClothingBackpackSatchelFilled satchel: ClothingBackpackSatchelFilled
duffelbag: ClothingBackpackDuffelFilled duffelbag: ClothingBackpackDuffelFilled

View File

@@ -49,6 +49,6 @@
underwearb: ClothingUnderwearBottomBoxersCap # White-Underwear underwearb: ClothingUnderwearBottomBoxersCap # White-Underwear
underweart: ClothingUnderwearTopBraCap # White-Underwear underweart: ClothingUnderwearTopBraCap # White-Underwear
underwearb: ClothingUnderwearBottomPantiesCap # White-Underwear underwearb: ClothingUnderwearBottomPantiesCap # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtCaptain innerClothingSkirt: ClothingUniformJumpskirtCaptain
satchel: ClothingBackpackSatchelCaptainFilled satchel: ClothingBackpackSatchelCaptainFilled
duffelbag: ClothingBackpackDuffelCaptainFilled duffelbag: ClothingBackpackDuffelCaptainFilled

View File

@@ -71,6 +71,6 @@
underwearb: ClothingUnderwearBottomBoxersHOP # White-Underwear underwearb: ClothingUnderwearBottomBoxersHOP # White-Underwear
underweart: ClothingUnderwearTopBraHOP # White-Underwear underweart: ClothingUnderwearTopBraHOP # White-Underwear
underwearb: ClothingUnderwearBottomPantiesHOP # White-Underwear underwearb: ClothingUnderwearBottomPantiesHOP # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtHoP innerClothingSkirt: ClothingUniformJumpskirtHoP
satchel: ClothingBackpackSatchelHOPFilled satchel: ClothingBackpackSatchelHOPFilled
duffelbag: ClothingBackpackDuffelHOPFilled duffelbag: ClothingBackpackDuffelHOPFilled

View File

@@ -30,6 +30,6 @@
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
underweart: ClothingUnderwearTopBraWhite # White-Underwear underweart: ClothingUnderwearTopBraWhite # White-Underwear
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtAtmos innerClothingSkirt: ClothingUniformJumpskirtAtmos
satchel: ClothingBackpackSatchelAtmosphericsFilled satchel: ClothingBackpackSatchelAtmosphericsFilled
duffelbag: ClothingBackpackDuffelAtmosphericsFilled duffelbag: ClothingBackpackDuffelAtmosphericsFilled

View File

@@ -51,6 +51,6 @@
underwearb: ClothingUnderwearBottomBoxersCE # White-Underwear underwearb: ClothingUnderwearBottomBoxersCE # White-Underwear
underweart: ClothingUnderwearTopBraCE # White-Underwear underweart: ClothingUnderwearTopBraCE # White-Underwear
underwearb: ClothingUnderwearBottomPantiesCE # White-Underwear underwearb: ClothingUnderwearBottomPantiesCE # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtChiefEngineer innerClothingSkirt: ClothingUniformJumpskirtChiefEngineer
satchel: ClothingBackpackSatchelChiefEngineerFilled satchel: ClothingBackpackSatchelChiefEngineerFilled
duffelbag: ClothingBackpackDuffelChiefEngineerFilled duffelbag: ClothingBackpackDuffelChiefEngineerFilled

View File

@@ -32,6 +32,6 @@
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
underweart: ClothingUnderwearTopBraWhite # White-Underwear underweart: ClothingUnderwearTopBraWhite # White-Underwear
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtEngineering innerClothingSkirt: ClothingUniformJumpskirtEngineering
satchel: ClothingBackpackSatchelEngineeringFilled satchel: ClothingBackpackSatchelEngineeringFilled
duffelbag: ClothingBackpackDuffelEngineeringFilled duffelbag: ClothingBackpackDuffelEngineeringFilled

View File

@@ -29,6 +29,6 @@
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
underweart: ClothingUnderwearTopBraWhite # White-Underwear underweart: ClothingUnderwearTopBraWhite # White-Underwear
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtColorYellow innerClothingSkirt: ClothingUniformJumpskirtColorYellow
satchel: ClothingBackpackSatchelEngineeringFilled satchel: ClothingBackpackSatchelEngineeringFilled
duffelbag: ClothingBackpackDuffelEngineeringFilled duffelbag: ClothingBackpackDuffelEngineeringFilled

View File

@@ -13,7 +13,7 @@
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
underweart: ClothingUnderwearTopBraWhite # White-Underwear underweart: ClothingUnderwearTopBraWhite # White-Underwear
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtColorBlack innerClothingSkirt: ClothingUniformJumpskirtColorBlack
satchel: ClothingBackpackSatchelFilled satchel: ClothingBackpackSatchelFilled
duffelbag: ClothingBackpackDuffelFilled duffelbag: ClothingBackpackDuffelFilled
@@ -30,6 +30,6 @@
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
underweart: ClothingUnderwearTopBraWhite # White-Underwear underweart: ClothingUnderwearTopBraWhite # White-Underwear
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtColorBlack innerClothingSkirt: ClothingUniformJumpskirtColorBlack
satchel: ClothingBackpackSatchelFilled satchel: ClothingBackpackSatchelFilled
duffelbag: ClothingBackpackDuffelFilled duffelbag: ClothingBackpackDuffelFilled

View File

@@ -267,7 +267,7 @@
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
underweart: ClothingUnderwearTopBraWhite # White-Underwear underweart: ClothingUnderwearTopBraWhite # White-Underwear
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
innerclothingskirt: ClothingUniformJumpsuitColorBrown innerClothingSkirt: ClothingUniformJumpsuitColorBrown
satchel: ClothingBackpackDuffelCBURNFilled satchel: ClothingBackpackDuffelCBURNFilled
duffelbag: ClothingBackpackDuffelCBURNFilled duffelbag: ClothingBackpackDuffelCBURNFilled

View File

@@ -34,6 +34,6 @@
underwearb: ClothingUnderwearBottomPantiesInspector # White-Underwear underwearb: ClothingUnderwearBottomPantiesInspector # White-Underwear
inhand: inhand:
- BriefcaseBrownFilled - BriefcaseBrownFilled
innerclothingskirt: ClothingUniformJumpskirtInspector innerClothingSkirt: ClothingUniformJumpskirtInspector
satchel: ClothingBackpackSatchelFilled satchel: ClothingBackpackSatchelFilled
duffelbag: ClothingBackpackDuffelFilled duffelbag: ClothingBackpackDuffelFilled

View File

@@ -30,6 +30,6 @@
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
underweart: ClothingUnderwearTopBraWhite # White-Underwear underweart: ClothingUnderwearTopBraWhite # White-Underwear
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtChemistry innerClothingSkirt: ClothingUniformJumpskirtChemistry
satchel: ClothingBackpackSatchelChemistryFilled satchel: ClothingBackpackSatchelChemistryFilled
duffelbag: ClothingBackpackDuffelChemistryFilled duffelbag: ClothingBackpackDuffelChemistryFilled

View File

@@ -47,6 +47,6 @@
underwearb: ClothingUnderwearBottomBoxersCMO # White-Underwear underwearb: ClothingUnderwearBottomBoxersCMO # White-Underwear
underweart: ClothingUnderwearTopBraCMO # White-Underwear underweart: ClothingUnderwearTopBraCMO # White-Underwear
underwearb: ClothingUnderwearBottomPantiesCMO # White-Underwear underwearb: ClothingUnderwearBottomPantiesCMO # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtCMO innerClothingSkirt: ClothingUniformJumpskirtCMO
satchel: ClothingBackpackSatchelCMOFilled satchel: ClothingBackpackSatchelCMOFilled
duffelbag: ClothingBackpackDuffelCMOFilled duffelbag: ClothingBackpackDuffelCMOFilled

View File

@@ -29,6 +29,6 @@
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
underweart: ClothingUnderwearTopBraWhite # White-Underwear underweart: ClothingUnderwearTopBraWhite # White-Underwear
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtMedicalDoctor innerClothingSkirt: ClothingUniformJumpskirtMedicalDoctor
satchel: ClothingBackpackSatchelMedicalFilled satchel: ClothingBackpackSatchelMedicalFilled
duffelbag: ClothingBackpackDuffelMedicalFilled duffelbag: ClothingBackpackDuffelMedicalFilled

View File

@@ -28,6 +28,6 @@
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
underweart: ClothingUnderwearTopBraWhite # White-Underwear underweart: ClothingUnderwearTopBraWhite # White-Underwear
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtColorWhite innerClothingSkirt: ClothingUniformJumpskirtColorWhite
satchel: ClothingBackpackSatchelMedicalFilled satchel: ClothingBackpackSatchelMedicalFilled
duffelbag: ClothingBackpackDuffelMedicalFilled duffelbag: ClothingBackpackDuffelMedicalFilled

View File

@@ -27,6 +27,6 @@
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
underweart: ClothingUnderwearTopBraWhite # White-Underwear underweart: ClothingUnderwearTopBraWhite # White-Underwear
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtColorWhite innerClothingSkirt: ClothingUniformJumpskirtColorWhite
satchel: ClothingBackpackSatchelScienceFilled satchel: ClothingBackpackSatchelScienceFilled
duffelbag: ClothingBackpackDuffelScienceFilled duffelbag: ClothingBackpackDuffelScienceFilled

View File

@@ -43,6 +43,6 @@
underwearb: ClothingUnderwearBottomBoxersRD # White-Underwear underwearb: ClothingUnderwearBottomBoxersRD # White-Underwear
underweart: ClothingUnderwearTopBraRD # White-Underwear underweart: ClothingUnderwearTopBraRD # White-Underwear
underwearb: ClothingUnderwearBottomPantiesRD # White-Underwear underwearb: ClothingUnderwearBottomPantiesRD # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtResearchDirector innerClothingSkirt: ClothingUniformJumpskirtResearchDirector
satchel: ClothingBackpackSatchelResearchDirectorFilled satchel: ClothingBackpackSatchelResearchDirectorFilled
duffelbag: ClothingBackpackDuffelResearchDirectorFilled duffelbag: ClothingBackpackDuffelResearchDirectorFilled

View File

@@ -26,6 +26,6 @@
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
underweart: ClothingUnderwearTopBraWhite # White-Underwear underweart: ClothingUnderwearTopBraWhite # White-Underwear
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtScientist innerClothingSkirt: ClothingUniformJumpskirtScientist
satchel: ClothingBackpackSatchelScienceFilled satchel: ClothingBackpackSatchelScienceFilled
duffelbag: ClothingBackpackDuffelScienceFilled duffelbag: ClothingBackpackDuffelScienceFilled

View File

@@ -40,6 +40,6 @@
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
underweart: ClothingUnderwearTopBraSportsAlternative # White-Underwear underweart: ClothingUnderwearTopBraSportsAlternative # White-Underwear
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtDetective innerClothingSkirt: ClothingUniformJumpskirtDetective
satchel: ClothingBackpackSatchelSecurityFilledDetective satchel: ClothingBackpackSatchelSecurityFilledDetective
duffelbag: ClothingBackpackDuffelSecurityFilledDetective duffelbag: ClothingBackpackDuffelSecurityFilledDetective

View File

@@ -54,6 +54,6 @@
underwearb: ClothingUnderwearBottomBoxersHOS # White-Underwear underwearb: ClothingUnderwearBottomBoxersHOS # White-Underwear
underweart: ClothingUnderwearTopBraHOS # White-Underwear underweart: ClothingUnderwearTopBraHOS # White-Underwear
underwearb: ClothingUnderwearBottomPantiesHOS # White-Underwear underwearb: ClothingUnderwearBottomPantiesHOS # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtHoS innerClothingSkirt: ClothingUniformJumpskirtHoS
satchel: ClothingBackpackSatchelHOSFilled satchel: ClothingBackpackSatchelHOSFilled
duffelbag: ClothingBackpackDuffelHOSFilled duffelbag: ClothingBackpackDuffelHOSFilled

View File

@@ -37,6 +37,6 @@
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
underweart: ClothingUnderwearTopBraSportsAlternative # White-Underwear underweart: ClothingUnderwearTopBraSportsAlternative # White-Underwear
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtColorRed innerClothingSkirt: ClothingUniformJumpskirtColorRed
satchel: ClothingBackpackSatchelSecurityFilled satchel: ClothingBackpackSatchelSecurityFilled
duffelbag: ClothingBackpackDuffelSecurityFilled duffelbag: ClothingBackpackDuffelSecurityFilled

View File

@@ -39,6 +39,6 @@
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
underweart: ClothingUnderwearTopBraSportsAlternative # White-Underwear underweart: ClothingUnderwearTopBraSportsAlternative # White-Underwear
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtSec innerClothingSkirt: ClothingUniformJumpskirtSec
satchel: ClothingBackpackSatchelSecurityFilled satchel: ClothingBackpackSatchelSecurityFilled
duffelbag: ClothingBackpackDuffelSecurityFilled duffelbag: ClothingBackpackDuffelSecurityFilled

View File

@@ -41,6 +41,6 @@
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
underweart: ClothingUnderwearTopBraSportsAlternative # White-Underwear underweart: ClothingUnderwearTopBraSportsAlternative # White-Underwear
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
innerclothingskirt: ClothingUniformJumpskirtWarden innerClothingSkirt: ClothingUniformJumpskirtWarden
satchel: ClothingBackpackSatchelSecurityFilled satchel: ClothingBackpackSatchelSecurityFilled
duffelbag: ClothingBackpackDuffelSecurityFilled duffelbag: ClothingBackpackDuffelSecurityFilled

View File

@@ -23,6 +23,6 @@
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
underweart: ClothingUnderwearTopBraSports # White-Underwear underweart: ClothingUnderwearTopBraSports # White-Underwear
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
innerclothingskirt: UniformShortsRedWithTop innerClothingSkirt: UniformShortsRedWithTop
satchel: ClothingBackpackSatchelFilled satchel: ClothingBackpackSatchelFilled
duffelbag: ClothingBackpackDuffelFilled duffelbag: ClothingBackpackDuffelFilled

View File

@@ -23,6 +23,6 @@
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
underweart: ClothingUnderwearTopBraSports # White-Underwear underweart: ClothingUnderwearTopBraSports # White-Underwear
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
innerclothingskirt: ClothingUniformJumpsuitPsychologist innerClothingSkirt: ClothingUniformJumpsuitPsychologist
satchel: ClothingBackpackSatchelMedicalFilled satchel: ClothingBackpackSatchelMedicalFilled
duffelbag: ClothingBackpackDuffelMedicalFilled duffelbag: ClothingBackpackDuffelMedicalFilled

View File

@@ -21,6 +21,6 @@
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
underweart: ClothingUnderwearTopBraSports # White-Underwear underweart: ClothingUnderwearTopBraSports # White-Underwear
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
innerclothingskirt: ClothingUniformJumpsuitJournalist innerClothingSkirt: ClothingUniformJumpsuitJournalist
satchel: ClothingBackpackSatchelFilled satchel: ClothingBackpackSatchelFilled
duffelbag: ClothingBackpackDuffelFilled duffelbag: ClothingBackpackDuffelFilled

View File

@@ -22,6 +22,6 @@
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
underweart: ClothingUnderwearTopBraSports # White-Underwear underweart: ClothingUnderwearTopBraSports # White-Underwear
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
innerclothingskirt: ClothingUniformJumpsuitSafari innerClothingSkirt: ClothingUniformJumpsuitSafari
satchel: ClothingBackpackSatchelFilled satchel: ClothingBackpackSatchelFilled
duffelbag: ClothingBackpackDuffelFilled duffelbag: ClothingBackpackDuffelFilled

View File

@@ -73,6 +73,9 @@
Telecrystal: 2 Telecrystal: 2
categories: categories:
- UplinkImplants - UplinkImplants
conditions:
- !type:ListingLimitedStockCondition # To prevent infinitely cheinsmoking using multiple implants
stock: 1
- type: listing - type: listing
id: UplinkHardlightSpearImplanter id: UplinkHardlightSpearImplanter

View File

@@ -53,7 +53,7 @@
chatMessages: [пиукает] chatMessages: [пиукает]
chatTriggers: chatTriggers:
- пиу - пиу
- пиу-пиу - пеу-пиу
- пиукает. - пиукает.
- пиукает - пиукает
- pew. - pew.
@@ -92,10 +92,9 @@
category: Vocal category: Vocal
chatMessages: [щёлкает] chatMessages: [щёлкает]
chatTriggers: chatTriggers:
- щелкает клювом
- щелк - щелк
- щёлкает - щёлкает
- щёлкает клювом - щелкает
- щёлк - щёлк
- clicks. - clicks.
- click. - click.
@@ -152,8 +151,12 @@
category: Vocal category: Vocal
chatMessages: [тарахтит] chatMessages: [тарахтит]
chatTriggers: chatTriggers:
- щебечет
- щебечет.
- щебечет!
- тарахтит - тарахтит
- тараътит. - тарахтит.
- тарахтит!
- chitter - chitter
- chitter. - chitter.
- chitter! - chitter!

View File

@@ -12,6 +12,7 @@
- Если вы при смерти и можете упасть бес сознания в любую секунду, воспользуйтесь экстренным или космическим медипеном из вашего аварийного набора. Изначально он находится в рюкзаке. Применение гарантирует, что в течении некоторого времени вы будете способны бороться за свою жизнь, и возможно, в итоге спастись. Экстренный медипен также может быть использовано для поднятия людей, находящихся в данный момент бес сознания. - Если вы при смерти и можете упасть бес сознания в любую секунду, воспользуйтесь экстренным или космическим медипеном из вашего аварийного набора. Изначально он находится в рюкзаке. Применение гарантирует, что в течении некоторого времени вы будете способны бороться за свою жизнь, и возможно, в итоге спастись. Экстренный медипен также может быть использовано для поднятия людей, находящихся в данный момент бес сознания.
<Box> <Box>
<GuideEntityEmbed Entity="EmergencyMedipen"/> <GuideEntityEmbed Entity="EmergencyMedipen"/>
<GuideEntityEmbed Entity="SpaceMedipen"/>
</Box> </Box>
- В вашем наборе есть дыхательная маска и малый кислородный баллон, которые помогут вам дольше продержаться в аварийной ситуации. - В вашем наборе есть дыхательная маска и малый кислородный баллон, которые помогут вам дольше продержаться в аварийной ситуации.
<Box> <Box>

View File

@@ -157,9 +157,6 @@ TransmitterSubspaceStockPart: null
# 2024-01-10 # 2024-01-10
ClothingHeadHatHoodRad: null ClothingHeadHatHoodRad: null
# 2024-01-12
SpaceMedipen: null
# 2024-01-18 # 2024-01-18
ClothingHeadHelmetVoidParamed: null ClothingHeadHelmetVoidParamed: null