ninja 2 electric boogaloo (#15534)
Co-authored-by: deltanedas <@deltanedas:kde.org>
This commit is contained in:
10
Content.Client/Communications/CommsHackerSystem.cs
Normal file
10
Content.Client/Communications/CommsHackerSystem.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using Content.Shared.Communications;
|
||||
|
||||
namespace Content.Client.Communications;
|
||||
|
||||
/// <summary>
|
||||
/// Does nothing special, only exists to provide a client implementation.
|
||||
/// </summary>
|
||||
public sealed class CommsHackerSystem : SharedCommsHackerSystem
|
||||
{
|
||||
}
|
||||
10
Content.Client/Ninja/Systems/NinjaGlovesSystem.cs
Normal file
10
Content.Client/Ninja/Systems/NinjaGlovesSystem.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using Content.Shared.Ninja.Systems;
|
||||
|
||||
namespace Content.Client.Ninja.Systems;
|
||||
|
||||
/// <summary>
|
||||
/// Does nothing special, only exists to provide a client implementation.
|
||||
/// </summary>
|
||||
public sealed class NinjaGlovesSystem : SharedNinjaGlovesSystem
|
||||
{
|
||||
}
|
||||
24
Content.Client/Ninja/Systems/NinjaSuitSystem.cs
Normal file
24
Content.Client/Ninja/Systems/NinjaSuitSystem.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using Content.Shared.Clothing.EntitySystems;
|
||||
using Content.Shared.Ninja.Components;
|
||||
using Content.Shared.Ninja.Systems;
|
||||
|
||||
namespace Content.Client.Ninja.Systems;
|
||||
|
||||
/// <summary>
|
||||
/// Disables cloak prediction since client has no knowledge of battery power.
|
||||
/// Cloak will still be enabled after server tells it.
|
||||
/// </summary>
|
||||
public sealed class NinjaSuitSystem : SharedNinjaSuitSystem
|
||||
{
|
||||
public override void Initialize()
|
||||
{
|
||||
base.Initialize();
|
||||
|
||||
SubscribeLocalEvent<NinjaSuitComponent, AttemptStealthEvent>(OnAttemptStealth);
|
||||
}
|
||||
|
||||
private void OnAttemptStealth(EntityUid uid, NinjaSuitComponent comp, AttemptStealthEvent args)
|
||||
{
|
||||
args.Cancel();
|
||||
}
|
||||
}
|
||||
12
Content.Client/Ninja/Systems/NinjaSystem.cs
Normal file
12
Content.Client/Ninja/Systems/NinjaSystem.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using Content.Shared.Ninja.Systems;
|
||||
|
||||
namespace Content.Client.Ninja.Systems;
|
||||
|
||||
/// <summary>
|
||||
/// Currently does nothing special clientside.
|
||||
/// All functionality is in shared and server.
|
||||
/// Only exists to prevent crashing.
|
||||
/// </summary>
|
||||
public sealed class SpaceNinjaSystem : SharedSpaceNinjaSystem
|
||||
{
|
||||
}
|
||||
10
Content.Client/Research/ResearchStealerSystem.cs
Normal file
10
Content.Client/Research/ResearchStealerSystem.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using Content.Shared.Research.Systems;
|
||||
|
||||
namespace Content.Client.Research;
|
||||
|
||||
/// <summary>
|
||||
/// Does nothing special, only exists to provide a client implementation.
|
||||
/// </summary>
|
||||
public sealed class ResearchStealerSystem : EntitySystem
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user