Merge branch 'master' into Stuff
This commit is contained in:
@@ -18,6 +18,7 @@ public sealed class BattledAspect : AspectSystem<BattledAspectComponent>
|
|||||||
[Dependency] private readonly IPrototypeManager _prototypeManager = default!;
|
[Dependency] private readonly IPrototypeManager _prototypeManager = default!;
|
||||||
[Dependency] private readonly SharedHandsSystem _handsSystem = default!;
|
[Dependency] private readonly SharedHandsSystem _handsSystem = default!;
|
||||||
[Dependency] private readonly IRobustRandom _robustRandom = default!;
|
[Dependency] private readonly IRobustRandom _robustRandom = default!;
|
||||||
|
[Dependency] private readonly ChatHelper _chatHelper = default!;
|
||||||
|
|
||||||
private NonPeacefulRoundItemsPrototype _nonPeacefulRoundItemsPrototype = default!;
|
private NonPeacefulRoundItemsPrototype _nonPeacefulRoundItemsPrototype = default!;
|
||||||
|
|
||||||
@@ -32,7 +33,7 @@ public sealed class BattledAspect : AspectSystem<BattledAspectComponent>
|
|||||||
{
|
{
|
||||||
base.Started(uid, component, gameRule, args);
|
base.Started(uid, component, gameRule, args);
|
||||||
|
|
||||||
var prototypes = _prototypeManager.EnumeratePrototypes<NonPeacefulRoundItemsPrototype>().ToList();
|
var prototypes = _prototypeManager.EnumeratePrototypes<NonPeacefulRoundItemsPrototype>().ToList();
|
||||||
|
|
||||||
if (prototypes.Count == 0)
|
if (prototypes.Count == 0)
|
||||||
ForceEndSelf(uid, gameRule);
|
ForceEndSelf(uid, gameRule);
|
||||||
@@ -61,6 +62,7 @@ public sealed class BattledAspect : AspectSystem<BattledAspectComponent>
|
|||||||
var mob = ev.Mob;
|
var mob = ev.Mob;
|
||||||
|
|
||||||
GiveItem(mob);
|
GiveItem(mob);
|
||||||
|
_chatHelper.SendAspectDescription(mob, Loc.GetString("battled-aspect-desc"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -72,10 +74,10 @@ public sealed class BattledAspect : AspectSystem<BattledAspectComponent>
|
|||||||
|
|
||||||
var transform = CompOrNull<TransformComponent>(player);
|
var transform = CompOrNull<TransformComponent>(player);
|
||||||
|
|
||||||
if(transform == null)
|
if (transform == null)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if(!HasComp<HandsComponent>(player))
|
if (!HasComp<HandsComponent>(player))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
var weaponEntity = EntityManager.SpawnEntity(item, transform.Coordinates);
|
var weaponEntity = EntityManager.SpawnEntity(item, transform.Coordinates);
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ public sealed class CatEarsAspect : AspectSystem<CatEarsAspectComponent>
|
|||||||
[Dependency] private readonly IPrototypeManager _protoMan = default!;
|
[Dependency] private readonly IPrototypeManager _protoMan = default!;
|
||||||
[Dependency] private readonly IRobustRandom _random = default!;
|
[Dependency] private readonly IRobustRandom _random = default!;
|
||||||
[Dependency] private readonly ChatSystem _chat = default!;
|
[Dependency] private readonly ChatSystem _chat = default!;
|
||||||
|
[Dependency] private readonly ChatHelper _chatHelper = default!;
|
||||||
|
|
||||||
private MarkingPrototype _ears = default!;
|
private MarkingPrototype _ears = default!;
|
||||||
private MarkingPrototype _tail = default!;
|
private MarkingPrototype _tail = default!;
|
||||||
@@ -81,6 +82,7 @@ public sealed class CatEarsAspect : AspectSystem<CatEarsAspectComponent>
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
AddMarkings(ev.Mob);
|
AddMarkings(ev.Mob);
|
||||||
|
_chatHelper.SendAspectDescription(ev.Mob, Loc.GetString("cat-ears-aspect-desc"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -94,18 +96,18 @@ public sealed class CatEarsAspect : AspectSystem<CatEarsAspectComponent>
|
|||||||
case "Felinid":
|
case "Felinid":
|
||||||
return;
|
return;
|
||||||
case "Human":
|
case "Human":
|
||||||
{
|
{
|
||||||
if (!appearance.MarkingSet.TryGetCategory(MarkingCategories.HeadTop, out var markings) ||
|
if (!appearance.MarkingSet.TryGetCategory(MarkingCategories.HeadTop, out var markings) ||
|
||||||
markings.Count == 0)
|
markings.Count == 0)
|
||||||
AddEars(appearance);
|
AddEars(appearance);
|
||||||
|
|
||||||
if (!appearance.MarkingSet.TryGetCategory(MarkingCategories.Tail, out markings) || markings.Count == 0)
|
if (!appearance.MarkingSet.TryGetCategory(MarkingCategories.Tail, out markings) || markings.Count == 0)
|
||||||
AddTail(appearance);
|
AddTail(appearance);
|
||||||
|
|
||||||
Dirty(uid, appearance);
|
Dirty(uid, appearance);
|
||||||
ChangeEmotesVoice(uid, appearance);
|
ChangeEmotesVoice(uid, appearance);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
AddEars(appearance);
|
AddEars(appearance);
|
||||||
AddTail(appearance);
|
AddTail(appearance);
|
||||||
|
|||||||
@@ -11,6 +11,8 @@ namespace Content.Server._White.AspectsSystem.Aspects;
|
|||||||
|
|
||||||
public sealed class DancingAspect : AspectSystem<DancingAspectComponent>
|
public sealed class DancingAspect : AspectSystem<DancingAspectComponent>
|
||||||
{
|
{
|
||||||
|
[Dependency] private readonly ChatHelper _chatHelper = default!;
|
||||||
|
|
||||||
public override void Initialize()
|
public override void Initialize()
|
||||||
{
|
{
|
||||||
base.Initialize();
|
base.Initialize();
|
||||||
@@ -45,6 +47,7 @@ public sealed class DancingAspect : AspectSystem<DancingAspectComponent>
|
|||||||
var mob = ev.Mob;
|
var mob = ev.Mob;
|
||||||
|
|
||||||
EnsureComp<DancingComponent>(mob);
|
EnsureComp<DancingComponent>(mob);
|
||||||
|
_chatHelper.SendAspectDescription(mob, Loc.GetString("dancing-aspect-desc"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ namespace Content.Server._White.AspectsSystem.Aspects;
|
|||||||
public sealed class DrunkAspect : AspectSystem<DrunkAspectComponent>
|
public sealed class DrunkAspect : AspectSystem<DrunkAspectComponent>
|
||||||
{
|
{
|
||||||
[Dependency] private readonly SharedDrunkSystem _drunkSystem = default!;
|
[Dependency] private readonly SharedDrunkSystem _drunkSystem = default!;
|
||||||
|
[Dependency] private readonly ChatHelper _chatHelper = default!;
|
||||||
|
|
||||||
public override void Initialize()
|
public override void Initialize()
|
||||||
{
|
{
|
||||||
@@ -44,6 +45,8 @@ public sealed class DrunkAspect : AspectSystem<DrunkAspectComponent>
|
|||||||
var mob = ev.Mob;
|
var mob = ev.Mob;
|
||||||
|
|
||||||
_drunkSystem.TryApplyDrunkenness(mob, 50);
|
_drunkSystem.TryApplyDrunkenness(mob, 50);
|
||||||
|
|
||||||
|
_chatHelper.SendAspectDescription(mob, Loc.GetString("drunk-aspect-desc"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ namespace Content.Server._White.AspectsSystem.Aspects;
|
|||||||
|
|
||||||
public sealed class FastAndFuriousAspect : AspectSystem<FastAndFuriousAspectComponent>
|
public sealed class FastAndFuriousAspect : AspectSystem<FastAndFuriousAspectComponent>
|
||||||
{
|
{
|
||||||
|
[Dependency] private readonly ChatHelper _chatHelper = default!;
|
||||||
public override void Initialize()
|
public override void Initialize()
|
||||||
{
|
{
|
||||||
base.Initialize();
|
base.Initialize();
|
||||||
@@ -49,10 +50,18 @@ public sealed class FastAndFuriousAspect : AspectSystem<FastAndFuriousAspectComp
|
|||||||
|
|
||||||
private void HandleLateJoin(PlayerSpawnCompleteEvent ev)
|
private void HandleLateJoin(PlayerSpawnCompleteEvent ev)
|
||||||
{
|
{
|
||||||
if (!ev.LateJoin)
|
var query = EntityQueryEnumerator<FastAndFuriousAspectComponent, GameRuleComponent>();
|
||||||
return;
|
while (query.MoveNext(out var ruleEntity, out _, out var gameRule))
|
||||||
|
{
|
||||||
|
if (!GameTicker.IsGameRuleAdded(ruleEntity, gameRule))
|
||||||
|
continue;
|
||||||
|
|
||||||
ModifySpeedIfActive(ev.Mob);
|
if (!ev.LateJoin)
|
||||||
|
return;
|
||||||
|
|
||||||
|
ModifySpeedIfActive(ev.Mob);
|
||||||
|
_chatHelper.SendAspectDescription(ev.Mob, Loc.GetString("fast-and-furious-aspect-desc"));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ModifySpeedIfActive(EntityUid mob)
|
private void ModifySpeedIfActive(EntityUid mob)
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
using System.Numerics;
|
using System.Numerics;
|
||||||
using Content.Server.GameTicking.Rules.Components;
|
|
||||||
using Content.Server._White.AspectsSystem.Aspects.Components;
|
using Content.Server._White.AspectsSystem.Aspects.Components;
|
||||||
using Content.Server._White.AspectsSystem.Base;
|
using Content.Server._White.AspectsSystem.Base;
|
||||||
using Content.Server.GameTicking;
|
using Content.Server.GameTicking;
|
||||||
@@ -8,18 +7,14 @@ using Content.Shared._White.Telescope;
|
|||||||
using Content.Shared.Humanoid;
|
using Content.Shared.Humanoid;
|
||||||
using Content.Shared.Movement.Components;
|
using Content.Shared.Movement.Components;
|
||||||
using Content.Shared.Movement.Systems;
|
using Content.Shared.Movement.Systems;
|
||||||
using Content.Server.Chat.Managers;
|
|
||||||
using Robust.Shared.Player;
|
|
||||||
|
|
||||||
namespace Content.Server._White.AspectsSystem.Aspects;
|
namespace Content.Server._White.AspectsSystem.Aspects;
|
||||||
|
|
||||||
public sealed class ImmersiveAspect : AspectSystem<ImmersiveAspectComponent>
|
public sealed class ImmersiveAspect : AspectSystem<ImmersiveAspectComponent>
|
||||||
{
|
{
|
||||||
|
|
||||||
[Dependency] private readonly SharedContentEyeSystem _eye = default!;
|
[Dependency] private readonly SharedContentEyeSystem _eye = default!;
|
||||||
[Dependency] private readonly SharedTelescopeSystem _telescope = default!;
|
[Dependency] private readonly SharedTelescopeSystem _telescope = default!;
|
||||||
[Dependency] private readonly IChatManager _chatManager = default!;
|
[Dependency] private readonly ChatHelper _chatHelper = default!;
|
||||||
[Dependency] private readonly ISharedPlayerManager _playerManager = default!;
|
|
||||||
|
|
||||||
public override void Initialize()
|
public override void Initialize()
|
||||||
{
|
{
|
||||||
@@ -48,9 +43,7 @@ public sealed class ImmersiveAspect : AspectSystem<ImmersiveAspectComponent>
|
|||||||
|
|
||||||
FuckUpEye(entity, 0.6f);
|
FuckUpEye(entity, 0.6f);
|
||||||
AddTelescope(entity);
|
AddTelescope(entity);
|
||||||
_playerManager.TryGetSessionByEntity(entity, out var session);
|
_chatHelper.SendAspectDescription(entity, Loc.GetString("immersive-aspect-desc"));
|
||||||
if (session != null)
|
|
||||||
_chatManager.DispatchServerMessage(session, Loc.GetString("immersive-aspect-desc"));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -83,9 +76,7 @@ public sealed class ImmersiveAspect : AspectSystem<ImmersiveAspectComponent>
|
|||||||
|
|
||||||
FuckUpEye(ev.Mob, 0.6f);
|
FuckUpEye(ev.Mob, 0.6f);
|
||||||
AddTelescope(ev.Mob);
|
AddTelescope(ev.Mob);
|
||||||
_playerManager.TryGetSessionByEntity(ev.Mob, out var session);
|
_chatHelper.SendAspectDescription(ev.Mob, Loc.GetString("immersive-aspect-desc"));
|
||||||
if (session != null)
|
|
||||||
_chatManager.DispatchServerMessage(session, Loc.GetString("immersive-aspect-desc"));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ namespace Content.Server._White.AspectsSystem.Aspects;
|
|||||||
public sealed class RandomAccentAspect : AspectSystem<RandomAccentAspectComponent>
|
public sealed class RandomAccentAspect : AspectSystem<RandomAccentAspectComponent>
|
||||||
{
|
{
|
||||||
[Dependency] private readonly IRobustRandom _random = default!;
|
[Dependency] private readonly IRobustRandom _random = default!;
|
||||||
|
[Dependency] private readonly ChatHelper _chatHelper = default!;
|
||||||
|
|
||||||
public override void Initialize()
|
public override void Initialize()
|
||||||
{
|
{
|
||||||
@@ -43,8 +44,8 @@ public sealed class RandomAccentAspect : AspectSystem<RandomAccentAspectComponen
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
var mob = ev.Mob;
|
var mob = ev.Mob;
|
||||||
|
|
||||||
ApplyRandomAccent(mob);
|
ApplyRandomAccent(mob);
|
||||||
|
_chatHelper.SendAspectDescription(mob, Loc.GetString("random-accent-aspect-desc"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -11,10 +11,11 @@ namespace Content.Server._White.AspectsSystem.Aspects;
|
|||||||
|
|
||||||
public sealed class RandomAppearanceAspect : AspectSystem<RandomAppearanceAspectComponent>
|
public sealed class RandomAppearanceAspect : AspectSystem<RandomAppearanceAspectComponent>
|
||||||
{
|
{
|
||||||
|
[Dependency] private readonly ChatHelper _chatHelper = default!;
|
||||||
public override void Initialize()
|
public override void Initialize()
|
||||||
{
|
{
|
||||||
base.Initialize();
|
base.Initialize();
|
||||||
SubscribeLocalEvent<PlayerSpawnCompleteEvent>(HandleLateJoin, after: new [] {typeof(StationRecordsSystem)});
|
SubscribeLocalEvent<PlayerSpawnCompleteEvent>(HandleLateJoin, after: new[] { typeof(StationRecordsSystem) });
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void Started(EntityUid uid, RandomAppearanceAspectComponent component, GameRuleComponent gameRule, GameRuleStartedEvent args)
|
protected override void Started(EntityUid uid, RandomAppearanceAspectComponent component, GameRuleComponent gameRule, GameRuleStartedEvent args)
|
||||||
@@ -41,6 +42,7 @@ public sealed class RandomAppearanceAspect : AspectSystem<RandomAppearanceAspect
|
|||||||
var mob = ev.Mob;
|
var mob = ev.Mob;
|
||||||
|
|
||||||
EnsureComp<RandomHumanComponent>(mob);
|
EnsureComp<RandomHumanComponent>(mob);
|
||||||
|
_chatHelper.SendAspectDescription(mob, Loc.GetString("random-appearance-aspect-desc"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ public sealed class RandomItemAspect : AspectSystem<RandomItemAspectComponent>
|
|||||||
{
|
{
|
||||||
[Dependency] private readonly SharedHandsSystem _handsSystem = default!;
|
[Dependency] private readonly SharedHandsSystem _handsSystem = default!;
|
||||||
[Dependency] private readonly RandomGiftSystem _giftSystem = default!;
|
[Dependency] private readonly RandomGiftSystem _giftSystem = default!;
|
||||||
|
[Dependency] private readonly ChatHelper _chatHelper = default!;
|
||||||
|
|
||||||
public override void Initialize()
|
public override void Initialize()
|
||||||
{
|
{
|
||||||
@@ -48,6 +49,7 @@ public sealed class RandomItemAspect : AspectSystem<RandomItemAspectComponent>
|
|||||||
var mob = ev.Mob;
|
var mob = ev.Mob;
|
||||||
|
|
||||||
GiveItem(mob, component);
|
GiveItem(mob, component);
|
||||||
|
_chatHelper.SendAspectDescription(mob, Loc.GetString("random-item-aspect-desc"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -62,10 +64,10 @@ public sealed class RandomItemAspect : AspectSystem<RandomItemAspectComponent>
|
|||||||
|
|
||||||
var transform = CompOrNull<TransformComponent>(player);
|
var transform = CompOrNull<TransformComponent>(player);
|
||||||
|
|
||||||
if(transform == null)
|
if (transform == null)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if(!HasComp<HandsComponent>(player))
|
if (!HasComp<HandsComponent>(player))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
var weaponEntity = EntityManager.SpawnEntity(component.Item, transform.Coordinates);
|
var weaponEntity = EntityManager.SpawnEntity(component.Item, transform.Coordinates);
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ namespace Content.Server._White.AspectsSystem.Aspects;
|
|||||||
|
|
||||||
public sealed class SkeletonAspect : AspectSystem<SkeletonAspectComponent>
|
public sealed class SkeletonAspect : AspectSystem<SkeletonAspectComponent>
|
||||||
{
|
{
|
||||||
|
[Dependency] private readonly ChatHelper _chatHelper = default!;
|
||||||
// [Dependency] private readonly IPrototypeManager _protoMan = default!;
|
// [Dependency] private readonly IPrototypeManager _protoMan = default!;
|
||||||
// [Dependency] private readonly PolymorphSystem _polymorph = default!;
|
// [Dependency] private readonly PolymorphSystem _polymorph = default!;
|
||||||
// [Dependency] private readonly HumanoidAppearanceSystem _humanoidAppearance = default!;
|
// [Dependency] private readonly HumanoidAppearanceSystem _humanoidAppearance = default!;
|
||||||
@@ -43,6 +44,7 @@ public sealed class SkeletonAspect : AspectSystem<SkeletonAspectComponent>
|
|||||||
{
|
{
|
||||||
PolymorphEntity(ent.Key, ent.Value);
|
PolymorphEntity(ent.Key, ent.Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void HandleLateJoin(PlayerSpawnCompleteEvent ev)
|
private void HandleLateJoin(PlayerSpawnCompleteEvent ev)
|
||||||
@@ -57,6 +59,8 @@ public sealed class SkeletonAspect : AspectSystem<SkeletonAspectComponent>
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
PolymorphEntity(ev.Mob);
|
PolymorphEntity(ev.Mob);
|
||||||
|
|
||||||
|
_chatHelper.SendAspectDescription(ev.Mob, Loc.GetString("skeleton-aspect-desc"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -12,6 +12,8 @@ public sealed partial class AspectComponent : Component
|
|||||||
|
|
||||||
[DataField] public string? Requires;
|
[DataField] public string? Requires;
|
||||||
|
|
||||||
|
[DataField] public string? Sender;
|
||||||
|
|
||||||
[DataField] public float Weight = 1.0f;
|
[DataField] public float Weight = 1.0f;
|
||||||
|
|
||||||
[DataField] public bool IsForbidden;
|
[DataField] public bool IsForbidden;
|
||||||
|
|||||||
@@ -66,8 +66,10 @@ public abstract class AspectSystem<T> : GameRuleSystem<T> where T : Component
|
|||||||
|
|
||||||
if (aspect is { Description: not null, IsHidden: false })
|
if (aspect is { Description: not null, IsHidden: false })
|
||||||
{
|
{
|
||||||
_chatSystem.DispatchGlobalAnnouncement(aspect.Description, playSound: false,
|
_chatSystem.DispatchGlobalAnnouncement(aspect.Description,
|
||||||
colorOverride: Color.Aquamarine);
|
sender: aspect.Sender ??= "Центральное Командование",
|
||||||
|
playSound: false,
|
||||||
|
colorOverride: Color.Aquamarine);
|
||||||
}
|
}
|
||||||
|
|
||||||
_audio.PlayGlobal(aspect.StartAudio, Filter.Broadcast(), true);
|
_audio.PlayGlobal(aspect.StartAudio, Filter.Broadcast(), true);
|
||||||
@@ -105,14 +107,17 @@ public abstract class AspectSystem<T> : GameRuleSystem<T> where T : Component
|
|||||||
|
|
||||||
if (aspect is { Name: not null, IsHidden: false })
|
if (aspect is { Name: not null, IsHidden: false })
|
||||||
{
|
{
|
||||||
_chatSystem.DispatchGlobalAnnouncement($"Именем аспекта являлось: {aspect.Name}", playSound: false,
|
|
||||||
colorOverride: Color.Aquamarine);
|
_chatSystem.DispatchGlobalAnnouncement($"Именем аспекта являлось: {aspect.Name}",
|
||||||
|
sender: aspect.Sender ??= "Центральное Командование",
|
||||||
|
playSound: false,
|
||||||
|
colorOverride: Color.Aquamarine);
|
||||||
}
|
}
|
||||||
|
|
||||||
_audio.PlayGlobal(aspect.EndAudio, Filter.Broadcast(), true);
|
_audio.PlayGlobal(aspect.EndAudio, Filter.Broadcast(), true);
|
||||||
}
|
}
|
||||||
|
|
||||||
#region Helpers
|
#region Helpers
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Forces this aspect to end prematurely.
|
/// Forces this aspect to end prematurely.
|
||||||
@@ -140,5 +145,5 @@ public abstract class AspectSystem<T> : GameRuleSystem<T> where T : Component
|
|||||||
return grids.Count > 0;
|
return grids.Count > 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
|
|||||||
19
Content.Server/_White/AspectsSystem/Base/ChatHelper.cs
Normal file
19
Content.Server/_White/AspectsSystem/Base/ChatHelper.cs
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
using Content.Server.Chat.Managers;
|
||||||
|
using Robust.Shared.Player;
|
||||||
|
|
||||||
|
namespace Content.Server._White.AspectsSystem.Base;
|
||||||
|
|
||||||
|
public sealed class ChatHelper : EntitySystem
|
||||||
|
{
|
||||||
|
[Dependency] private readonly ISharedPlayerManager _playerManager = default!;
|
||||||
|
[Dependency] private readonly IChatManager _chatManager = default!;
|
||||||
|
|
||||||
|
public void SendAspectDescription(EntityUid mob, string messageKey)
|
||||||
|
{
|
||||||
|
_playerManager.TryGetSessionByEntity(mob, out var session);
|
||||||
|
if (session != null)
|
||||||
|
{
|
||||||
|
_chatManager.DispatchServerMessage(session, Loc.GetString(messageKey));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,4 +1,7 @@
|
|||||||
using Robust.Shared.Configuration;
|
using Content.Server._White.AspectsSystem.Base;
|
||||||
|
using Content.Server.Chat.Managers;
|
||||||
|
using Robust.Shared.Configuration;
|
||||||
|
using Robust.Shared.Player;
|
||||||
|
|
||||||
namespace Content.Server._White;
|
namespace Content.Server._White;
|
||||||
|
|
||||||
|
|||||||
@@ -1,32 +1,4 @@
|
|||||||
Entries:
|
Entries:
|
||||||
- author: Valtos
|
|
||||||
changes:
|
|
||||||
- message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D \u043F\u0440\u0438\u0437\
|
|
||||||
\u0440\u0430\u043A Krokozyabra."
|
|
||||||
type: Add
|
|
||||||
id: 151
|
|
||||||
time: '2024-02-21T10:30:04.0000000+00:00'
|
|
||||||
url: https://api.github.com/repos/frosty-dev/ss14-core/pulls/106
|
|
||||||
- author: Valtos
|
|
||||||
changes:
|
|
||||||
- message: "\u0422\u0435\u043F\u0435\u0440\u044C \u043F\u0435\u0440\u0435\u0437\u0430\
|
|
||||||
\u043F\u0443\u0441\u043A\u0438 \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0434\
|
|
||||||
\u043E\u043B\u0436\u043D\u044B \u0431\u044B\u0442\u044C \u043F\u043B\u0430\u0432\
|
|
||||||
\u043D\u044B\u043C\u0438 \u0438 \u0431\u0435\u0437 \u0432\u044B\u043B\u0435\u0442\
|
|
||||||
\u043E\u0432."
|
|
||||||
type: Add
|
|
||||||
id: 152
|
|
||||||
time: '2024-02-21T11:07:26.0000000+00:00'
|
|
||||||
url: https://api.github.com/repos/frosty-dev/ss14-core/pulls/107
|
|
||||||
- author: Aviu
|
|
||||||
changes:
|
|
||||||
- message: "\u041F\u0440\u0435\u0434\u0430\u0442\u0435\u043B\u044C\u0441\u043A\u0438\
|
|
||||||
\u0439 \u043D\u043E\u0436 \u0434\u043E\u0431\u0430\u0432\u043B\u0435\u043D \u0432\
|
|
||||||
\ \u0430\u043F\u043B\u0438\u043D\u043A."
|
|
||||||
type: Add
|
|
||||||
id: 153
|
|
||||||
time: '2024-02-23T22:59:03.0000000+00:00'
|
|
||||||
url: https://api.github.com/repos/frosty-dev/ss14-core/pulls/112
|
|
||||||
- author: Aviu
|
- author: Aviu
|
||||||
changes:
|
changes:
|
||||||
- message: "\u0422\u0435\u043F\u0435\u0440\u044C \u043C\u043E\u0436\u043D\u043E\
|
- message: "\u0422\u0435\u043F\u0435\u0440\u044C \u043C\u043E\u0436\u043D\u043E\
|
||||||
@@ -8878,3 +8850,65 @@
|
|||||||
id: 650
|
id: 650
|
||||||
time: '2025-01-04T21:01:53.0000000+00:00'
|
time: '2025-01-04T21:01:53.0000000+00:00'
|
||||||
url: https://api.github.com/repos/frosty-dev/ss14-core/pulls/871
|
url: https://api.github.com/repos/frosty-dev/ss14-core/pulls/871
|
||||||
|
- author: Ivangelion
|
||||||
|
changes:
|
||||||
|
- message: "\u041F\u0435\u0440\u0435\u0440\u0430\u0431\u043E\u0442\u0430\u043D\u044B\
|
||||||
|
\ \u043E\u043F\u0438\u0441\u0430\u043D\u0438\u044F \u0430\u0441\u043F\u0435\u043A\
|
||||||
|
\u0442\u043E\u0432."
|
||||||
|
type: Tweak
|
||||||
|
id: 651
|
||||||
|
time: '2025-01-05T16:13:49.0000000+00:00'
|
||||||
|
url: https://api.github.com/repos/frosty-dev/ss14-core/pulls/860
|
||||||
|
- author: BIG_ZI_348
|
||||||
|
changes:
|
||||||
|
- message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u0430 \u043D\u043E\u0432\
|
||||||
|
\u0430\u044F \u0447\u0435\u0440\u0442\u0430: \u0445\u0440\u043E\u043C\u043E\u0442\
|
||||||
|
\u0430 (\u0438\u0434\u0451\u0442 \u0432 \u043A\u043E\u043C\u043F\u043B\u0435\
|
||||||
|
\u043A\u0442\u0435 \u0441 \u0442\u0440\u043E\u0441\u0442\u044C\u044E)."
|
||||||
|
type: Add
|
||||||
|
- message: "\u0418\u0441\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u043E \u043F\u043E\
|
||||||
|
\u0432\u0435\u0434\u0435\u043D\u0438\u0435 \u043F\u0440\u0438 \u043F\u043E\u043F\
|
||||||
|
\u044B\u0442\u043A\u0435 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\
|
||||||
|
\u0435\u0441\u043A\u0438 \u0432\u0441\u0442\u0430\u0442\u044C \u0431\u0443\u0434\
|
||||||
|
\u0443\u0447\u0438 \u043C\u0451\u0440\u0442\u0432\u044B\u043C."
|
||||||
|
type: Fix
|
||||||
|
- message: "\u0418\u0441\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u043E \u043E\u0442\
|
||||||
|
\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u0435 \u0443\u0432\u0435\u0434\
|
||||||
|
\u043E\u043C\u043B\u0435\u043D\u0438\u044F \u043F\u0440\u0438 \u043F\u043E\u043F\
|
||||||
|
\u044B\u0442\u043A\u0435 \u043E\u0431\u043D\u0430\u0440\u0443\u0436\u0438\u0442\
|
||||||
|
\u044C \u0433\u0435\u043D\u043E\u043A\u0440\u0430\u0434\u0430 \u0438\u043C\u043F\
|
||||||
|
\u043B\u0430\u043D\u0442\u0435\u0440\u043E\u043C."
|
||||||
|
type: Fix
|
||||||
|
- message: "\u0418\u043D\u0441\u043F\u0435\u043A\u0442\u043E\u0440 \u0442\u0435\u043F\
|
||||||
|
\u0435\u0440\u044C \u044F\u0432\u043B\u044F\u0435\u0442\u0441\u044F \u0447\u0430\
|
||||||
|
\u0441\u0442\u044C\u044E \u043A\u043E\u043C\u0430\u043D\u0434\u043E\u0432\u0430\
|
||||||
|
\u043D\u0438\u044F."
|
||||||
|
type: Fix
|
||||||
|
- message: "\u041F\u0440\u0430\u0432\u043A\u0438 \u043F\u0435\u0440\u0435\u0432\u043E\
|
||||||
|
\u0434\u043E\u0432 \u043C\u0435\u043B\u043E\u0447\u0435\u0439."
|
||||||
|
type: Fix
|
||||||
|
id: 652
|
||||||
|
time: '2025-01-05T20:40:31.0000000+00:00'
|
||||||
|
url: https://api.github.com/repos/frosty-dev/ss14-core/pulls/872
|
||||||
|
- author: BIG_Zi_348
|
||||||
|
changes:
|
||||||
|
- message: "\u0418\u0441\u043F\u0440\u0430\u0432\u043B\u0435\u043D \u0441\u043F\u0440\
|
||||||
|
\u0430\u0439\u0442 \u043A\u0435\u043F\u043A\u0438 \u0433\u0440\u0443\u0437\u0447\
|
||||||
|
\u0438\u043A\u0430."
|
||||||
|
type: Fix
|
||||||
|
- message: "\u0418\u0441\u043F\u0440\u0430\u0432\u043B\u0435\u043D \u0431\u0430\u0433\
|
||||||
|
\ \u0432 \u043E\u0431\u0440\u0430\u0431\u043E\u0442\u043A\u0435 \u043B\u043E\
|
||||||
|
\u0433\u0438\u043A\u0438 \u043D\u0430\u0441\u0442\u0440\u043E\u0435\u043D\u0438\
|
||||||
|
\u044F \u043E\u0442 \u0433\u043E\u043B\u043E\u0434\u0430 \u0438 \u0436\u0430\
|
||||||
|
\u0436\u0434\u044B."
|
||||||
|
type: Fix
|
||||||
|
- message: "\u0418\u0441\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0430 \u0446\u0435\
|
||||||
|
\u043D\u0430 \u0445\u0438\u043C\u0438\u0447\u0435\u0441\u043A\u0438\u0445 \u043A\
|
||||||
|
\u0430\u0440\u0442\u0440\u0438\u0434\u0436\u0435\u0439."
|
||||||
|
type: Fix
|
||||||
|
- message: "\u0418\u0441\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u044B \u043C\u0435\
|
||||||
|
\u043B\u043E\u0447\u0438."
|
||||||
|
type: Fix
|
||||||
|
id: 653
|
||||||
|
time: '2025-01-06T21:03:52.0000000+00:00'
|
||||||
|
url: https://api.github.com/repos/frosty-dev/ss14-core/pulls/874
|
||||||
|
|||||||
@@ -1 +1,10 @@
|
|||||||
immersive-aspect-desc = Для осмотра своего окружение, нажмите клавишу присмотреться/прицелиться (по умолчанию - Пробел).
|
immersive-aspect-desc = Для осмотра своего окружение, нажмите клавишу присмотреться/прицелиться (по умолчанию - Пробел).
|
||||||
|
skeleton-aspect-desc = Из-за обстоятельств на станции - все персонажи стали скелетами.
|
||||||
|
battled-aspect-desc = Чтобы то ни было ранее, но у вас с собой оказалось случайное оружие.
|
||||||
|
cat-ears-aspect-desc = Из-за ошибки в системе клонирования на ЦК все члены экипажа стали походить на фелинидов.
|
||||||
|
dancing-aspect-desc = Федерация Волшебников прокляла всех работников этой станции на танец до смерти.
|
||||||
|
drunk-aspect-desc = Ваш персонаж слишком хорошо отгулял в своё свободное время.
|
||||||
|
fast-and-furious-aspect-desc = Из-за обстоятельств на станции - все персонажи передвигаются быстрее обычного.
|
||||||
|
random-accent-aspect-desc = Из-за обстоятельств на станции - все персонажи получили случайный акцент.
|
||||||
|
random-appearance-aspect-desc = Все персонажи получили случайную внешность.
|
||||||
|
random-item-aspect-desc = НаноТрейзен выдало всем случайный предмет.
|
||||||
|
|||||||
@@ -5,7 +5,8 @@
|
|||||||
components:
|
components:
|
||||||
- type: Aspect
|
- type: Aspect
|
||||||
name: Акценты вне контроля
|
name: Акценты вне контроля
|
||||||
description: Всегда интересно, какой акцент вы услышите следующим
|
sender: Федерация Космических Волшебников
|
||||||
|
description: Всегда интересно, какой акцент вы услышите следующим.
|
||||||
weight: 3
|
weight: 3
|
||||||
startAudio:
|
startAudio:
|
||||||
path: /Audio/White/Aspects/accent.ogg
|
path: /Audio/White/Aspects/accent.ogg
|
||||||
@@ -18,7 +19,7 @@
|
|||||||
components:
|
components:
|
||||||
- type: Aspect
|
- type: Aspect
|
||||||
name: Fast and Furious
|
name: Fast and Furious
|
||||||
description: Люди спешат и не важно куда
|
description: Новейшие разработки в области фильтрации питьевой воды привели к непредвиденным результатам. КПД двигательных систем большинства органических и неорганических существ возрос на 60%!
|
||||||
weight: 3
|
weight: 3
|
||||||
startAudio:
|
startAudio:
|
||||||
path: /Audio/White/Aspects/accent.ogg
|
path: /Audio/White/Aspects/accent.ogg
|
||||||
@@ -58,7 +59,7 @@
|
|||||||
components:
|
components:
|
||||||
- type: Aspect
|
- type: Aspect
|
||||||
name: Drunk
|
name: Drunk
|
||||||
description: На станции стоит явный запах вчерашнего веселья... и кажется оно только начинается
|
description: На станции стоит явный запах вчерашнего веселья... и кажется оно только начинается.
|
||||||
weight: 3
|
weight: 3
|
||||||
startAudio:
|
startAudio:
|
||||||
path: /Audio/White/Aspects/accent.ogg
|
path: /Audio/White/Aspects/accent.ogg
|
||||||
@@ -71,7 +72,7 @@
|
|||||||
components:
|
components:
|
||||||
- type: Aspect
|
- type: Aspect
|
||||||
name: Cargo Rich
|
name: Cargo Rich
|
||||||
description: Карго работало усердно в прошлую смену, за что они и были награждены премией в размере 100000 кредитов
|
description: Карго работало усердно в прошлую смену, за что они и были награждены премией в размере 100000 кредитов.
|
||||||
weight: 2
|
weight: 2
|
||||||
startAudio:
|
startAudio:
|
||||||
path: /Audio/White/Aspects/accent.ogg
|
path: /Audio/White/Aspects/accent.ogg
|
||||||
@@ -97,7 +98,7 @@
|
|||||||
components:
|
components:
|
||||||
- type: Aspect
|
- type: Aspect
|
||||||
name: Weak Walls
|
name: Weak Walls
|
||||||
description: На стенах явно экономили
|
description: В связи с невыполнением экономических показателей за предыдущий финансовый период - было принято решение на экономии строительных материалов для стен.
|
||||||
weight: 2
|
weight: 2
|
||||||
startAudio:
|
startAudio:
|
||||||
path: /Audio/White/Aspects/accent.ogg
|
path: /Audio/White/Aspects/accent.ogg
|
||||||
@@ -110,7 +111,7 @@
|
|||||||
components:
|
components:
|
||||||
- type: Aspect
|
- type: Aspect
|
||||||
name: No engine
|
name: No engine
|
||||||
description: Какой-то смышлённый агент синдиката решил украсть все ваши генераторы энергии целиком
|
description: Какой-то смышлённый агент синдиката решил украсть все ваши генераторы энергии целиком.
|
||||||
weight: 2
|
weight: 2
|
||||||
startAudio:
|
startAudio:
|
||||||
path: /Audio/White/Aspects/accent.ogg
|
path: /Audio/White/Aspects/accent.ogg
|
||||||
@@ -123,7 +124,8 @@
|
|||||||
components:
|
components:
|
||||||
- type: Aspect
|
- type: Aspect
|
||||||
name: Airunlock
|
name: Airunlock
|
||||||
description: Кого волнует безопасность? Экипаж свободно может ходить по всем отсекам, ведь все шлюзы теперь для них доступны
|
sender: Федерация Космических Волшебников
|
||||||
|
description: Кого волнует безопасность? Экипаж свободно может ходить по всем отсекам, ведь все шлюзы теперь для них доступны.
|
||||||
weight: 2
|
weight: 2
|
||||||
startAudio:
|
startAudio:
|
||||||
path: /Audio/White/Aspects/accent.ogg
|
path: /Audio/White/Aspects/accent.ogg
|
||||||
@@ -137,7 +139,8 @@
|
|||||||
components:
|
components:
|
||||||
- type: Aspect
|
- type: Aspect
|
||||||
name: Bloody
|
name: Bloody
|
||||||
description: В эту смену любая незначительная травма может оказаться летальной
|
sender: Федерация Космических Волшебников
|
||||||
|
description: В эту смену любая незначительная травма может оказаться летальной.
|
||||||
weight: 2
|
weight: 2
|
||||||
startAudio:
|
startAudio:
|
||||||
path: /Audio/White/Aspects/accent.ogg
|
path: /Audio/White/Aspects/accent.ogg
|
||||||
@@ -150,6 +153,7 @@
|
|||||||
components:
|
components:
|
||||||
- type: Aspect
|
- type: Aspect
|
||||||
name: Weak
|
name: Weak
|
||||||
|
sender: Федерация Космических Волшебников
|
||||||
description: Удары стали слабее. Пули мягче. К чему это приведёт?
|
description: Удары стали слабее. Пули мягче. К чему это приведёт?
|
||||||
weight: 1
|
weight: 1
|
||||||
startAudio:
|
startAudio:
|
||||||
@@ -163,7 +167,7 @@
|
|||||||
components:
|
components:
|
||||||
- type: Aspect
|
- type: Aspect
|
||||||
name: Battled
|
name: Battled
|
||||||
description: Люди очень насторожены и готовы дать отпор в любую секунду
|
description: Люди очень насторожены и готовы дать отпор в любую секунду.
|
||||||
weight: 1
|
weight: 1
|
||||||
startAudio:
|
startAudio:
|
||||||
path: /Audio/White/Aspects/accent.ogg
|
path: /Audio/White/Aspects/accent.ogg
|
||||||
@@ -189,6 +193,7 @@
|
|||||||
components:
|
components:
|
||||||
- type: Aspect
|
- type: Aspect
|
||||||
name: Presents
|
name: Presents
|
||||||
|
sender: Федерация Космических Волшебников
|
||||||
description: А вы верите в Деда Мороза?
|
description: А вы верите в Деда Мороза?
|
||||||
weight: 3
|
weight: 3
|
||||||
startAudio:
|
startAudio:
|
||||||
@@ -202,6 +207,7 @@
|
|||||||
components:
|
components:
|
||||||
- type: Aspect
|
- type: Aspect
|
||||||
name: Dance
|
name: Dance
|
||||||
|
sender: Федерация Космических Волшебников
|
||||||
description: Танцуют все!
|
description: Танцуют все!
|
||||||
weight: 3
|
weight: 3
|
||||||
startAudio:
|
startAudio:
|
||||||
@@ -215,7 +221,8 @@
|
|||||||
components:
|
components:
|
||||||
- type: Aspect
|
- type: Aspect
|
||||||
name: Reflect
|
name: Reflect
|
||||||
description: Ваше отражение повсюду
|
sender: Федерация Космических Волшебников
|
||||||
|
description: Ваше отражение повсюду.
|
||||||
weight: 2
|
weight: 2
|
||||||
startAudio:
|
startAudio:
|
||||||
path: /Audio/White/Aspects/accent.ogg
|
path: /Audio/White/Aspects/accent.ogg
|
||||||
@@ -228,7 +235,8 @@
|
|||||||
components:
|
components:
|
||||||
- type: Aspect
|
- type: Aspect
|
||||||
name: Slippery
|
name: Slippery
|
||||||
description: Постарайтесь не поскальзываться!
|
sender: Федерация Космических Волшебников
|
||||||
|
description: Постарайтесь не подскальзываться!
|
||||||
weight: 2
|
weight: 2
|
||||||
startAudio:
|
startAudio:
|
||||||
path: /Audio/White/Aspects/accent.ogg
|
path: /Audio/White/Aspects/accent.ogg
|
||||||
@@ -241,7 +249,7 @@
|
|||||||
components:
|
components:
|
||||||
- type: Aspect
|
- type: Aspect
|
||||||
name: Extra TC
|
name: Extra TC
|
||||||
description: Синдикат выделил 10 дополнительных телекристаллов для предателей
|
description: Синдикат выделил 10 дополнительных телекристаллов для предателей.
|
||||||
requires: Traitors
|
requires: Traitors
|
||||||
weight: 3
|
weight: 3
|
||||||
isHidden: true
|
isHidden: true
|
||||||
@@ -254,7 +262,8 @@
|
|||||||
components:
|
components:
|
||||||
- type: Aspect
|
- type: Aspect
|
||||||
name: Whisper
|
name: Whisper
|
||||||
description: Из-за боли в горле речь дается вам с трудом
|
sender: Федерация Космических Волшебников
|
||||||
|
description: Вы слишком шумные, мы запрещаем вам повышать голос!
|
||||||
weight: 3
|
weight: 3
|
||||||
startAudio:
|
startAudio:
|
||||||
path: /Audio/White/Aspects/accent.ogg
|
path: /Audio/White/Aspects/accent.ogg
|
||||||
@@ -268,6 +277,7 @@
|
|||||||
components:
|
components:
|
||||||
- type: Aspect
|
- type: Aspect
|
||||||
name: Darkness
|
name: Darkness
|
||||||
|
sender: Федерация Космических Волшебников
|
||||||
description: Почему все так темно?
|
description: Почему все так темно?
|
||||||
weight: 2
|
weight: 2
|
||||||
startAudio:
|
startAudio:
|
||||||
@@ -281,7 +291,7 @@
|
|||||||
components:
|
components:
|
||||||
- type: Aspect
|
- type: Aspect
|
||||||
name: Stolen Floor
|
name: Stolen Floor
|
||||||
description: Рабочие забыли положить плитку при строительстве станции
|
description: Рабочие забыли положить плитку при строительстве станции.
|
||||||
weight: 3
|
weight: 3
|
||||||
startAudio:
|
startAudio:
|
||||||
path: /Audio/White/Aspects/accent.ogg
|
path: /Audio/White/Aspects/accent.ogg
|
||||||
@@ -294,7 +304,7 @@
|
|||||||
components:
|
components:
|
||||||
- type: Aspect
|
- type: Aspect
|
||||||
name: Are We In Dungeon
|
name: Are We In Dungeon
|
||||||
description: В связи с невероятной хрупкостью окон было решено заменить их на стены
|
description: В связи с невероятной хрупкостью окон было решено заменить их на стены.
|
||||||
weight: 3
|
weight: 3
|
||||||
startAudio:
|
startAudio:
|
||||||
path: /Audio/White/Aspects/accent.ogg
|
path: /Audio/White/Aspects/accent.ogg
|
||||||
@@ -307,7 +317,7 @@
|
|||||||
components:
|
components:
|
||||||
- type: Aspect
|
- type: Aspect
|
||||||
name: Cat Ears And Tail
|
name: Cat Ears And Tail
|
||||||
description: Из-за ошибки в системе клонирования на ЦК все члены экипажа стали походить на фелинидов
|
description: Из-за ошибки в системе клонирования на ЦК все члены экипажа стали походить на фелинидов.
|
||||||
weight: 3
|
weight: 3
|
||||||
startAudio:
|
startAudio:
|
||||||
path: /Audio/White/Aspects/accent.ogg
|
path: /Audio/White/Aspects/accent.ogg
|
||||||
@@ -333,7 +343,7 @@
|
|||||||
components:
|
components:
|
||||||
- type: Aspect
|
- type: Aspect
|
||||||
name: Random item
|
name: Random item
|
||||||
description: ЦК выдало каждому члену экипажа определённый предмет
|
description: ЦК выдало каждому члену экипажа определённый предмет.
|
||||||
weight: 3
|
weight: 3
|
||||||
startAudio:
|
startAudio:
|
||||||
path: /Audio/White/Aspects/accent.ogg
|
path: /Audio/White/Aspects/accent.ogg
|
||||||
@@ -346,7 +356,7 @@
|
|||||||
components:
|
components:
|
||||||
- type: Aspect
|
- type: Aspect
|
||||||
name: Immersive
|
name: Immersive
|
||||||
description: В связи с недавними трагичными событиями экипаж станции погрузился в себя
|
description: В связи с недавними трагичными событиями экипаж станции погрузился в себя.
|
||||||
weight: 3
|
weight: 3
|
||||||
startAudio:
|
startAudio:
|
||||||
path: /Audio/White/Aspects/accent.ogg
|
path: /Audio/White/Aspects/accent.ogg
|
||||||
|
|||||||
@@ -492,3 +492,13 @@
|
|||||||
alpha: 0.9
|
alpha: 0.9
|
||||||
ghostName: nekovich
|
ghostName: nekovich
|
||||||
ghostDescription: Law's Left Hand.
|
ghostDescription: Law's Left Hand.
|
||||||
|
|
||||||
|
#Feda_Plevajecki
|
||||||
|
- type: customGhost
|
||||||
|
id: Feda_Plevajecki-ghost
|
||||||
|
ckey: Feda_Plevajecki
|
||||||
|
sprite: White/Ghosts/Feda_Plevajecki-ghost.rsi
|
||||||
|
alpha: 0.9
|
||||||
|
ghostName: Шарки
|
||||||
|
ghostDescription: Буль-буль.
|
||||||
|
size: 0.7, 0.7
|
||||||
|
|||||||
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"license": "CC-BY-SA-3.0",
|
||||||
|
"copyright": "Made by Dosharus",
|
||||||
|
"size": {
|
||||||
|
"x": 64,
|
||||||
|
"y": 64
|
||||||
|
},
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "animated",
|
||||||
|
"directions": 4
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user