Merge remote-tracking branch 'WD-core/master' into upstream-core
@@ -9,10 +9,10 @@ public sealed partial class DirectBallsHitComponent : Component
|
|||||||
public TimeSpan KnockdownTime = TimeSpan.FromSeconds(2.0f);
|
public TimeSpan KnockdownTime = TimeSpan.FromSeconds(2.0f);
|
||||||
|
|
||||||
[DataField]
|
[DataField]
|
||||||
public TimeSpan JitterTime = TimeSpan.FromSeconds(2.0f);
|
public TimeSpan JitterTime = TimeSpan.FromSeconds(4.0f);
|
||||||
|
|
||||||
[DataField]
|
[DataField]
|
||||||
public TimeSpan StutterTime = TimeSpan.FromSeconds(2.0f);
|
public TimeSpan StutterTime = TimeSpan.FromSeconds(4.0f);
|
||||||
|
|
||||||
[DataField]
|
[DataField]
|
||||||
public SharedStandingStateSystem.DropHeldItemsBehavior KnockDownBehavior = SharedStandingStateSystem.DropHeldItemsBehavior.AlwaysDrop;
|
public SharedStandingStateSystem.DropHeldItemsBehavior KnockDownBehavior = SharedStandingStateSystem.DropHeldItemsBehavior.AlwaysDrop;
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ using Content.Shared.Popups;
|
|||||||
using Content.Shared._White.Implants.NeuroControl;
|
using Content.Shared._White.Implants.NeuroControl;
|
||||||
using Robust.Shared.Timing;
|
using Robust.Shared.Timing;
|
||||||
using Content.Server.Chat.Systems;
|
using Content.Server.Chat.Systems;
|
||||||
|
using Content.Server._White.Mood;
|
||||||
|
|
||||||
namespace Content.Server._White._Engi.DirectBallsHit;
|
namespace Content.Server._White._Engi.DirectBallsHit;
|
||||||
|
|
||||||
@@ -21,6 +22,7 @@ public sealed class DirectBallsHitSystem : EntitySystem
|
|||||||
[Dependency] private readonly SharedElectrocutionSystem _electrocution = default!;
|
[Dependency] private readonly SharedElectrocutionSystem _electrocution = default!;
|
||||||
[Dependency] private readonly SharedPopupSystem _popupSystem = default!;
|
[Dependency] private readonly SharedPopupSystem _popupSystem = default!;
|
||||||
[Dependency] private readonly ChatSystem _chat = default!;
|
[Dependency] private readonly ChatSystem _chat = default!;
|
||||||
|
[Dependency] private readonly MoodSystem _mood = default!;
|
||||||
|
|
||||||
public override void Initialize()
|
public override void Initialize()
|
||||||
{
|
{
|
||||||
@@ -42,10 +44,15 @@ public sealed class DirectBallsHitSystem : EntitySystem
|
|||||||
|
|
||||||
foreach (var uid in args.HitEntities)
|
foreach (var uid in args.HitEntities)
|
||||||
{
|
{
|
||||||
_popupSystem.PopupEntity(
|
if (TryComp<MoodComponent>(uid, out var mood))
|
||||||
Loc.GetString("direct-balls-hit", ("uid", uid)),
|
{
|
||||||
uid,
|
_popupSystem.PopupEntity(
|
||||||
PopupType.SmallCaution);
|
Loc.GetString("direct-balls-hit", ("uid", uid)),
|
||||||
|
uid,
|
||||||
|
PopupType.SmallCaution);
|
||||||
|
|
||||||
|
_mood.ApplyEffect(uid, mood, "GotHitInTheBalls");
|
||||||
|
}
|
||||||
|
|
||||||
Timer.Spawn(TimeSpan.FromSeconds(0.5f), () => _chat.TryEmoteWithChat(uid, "Scream"));
|
Timer.Spawn(TimeSpan.FromSeconds(0.5f), () => _chat.TryEmoteWithChat(uid, "Scream"));
|
||||||
|
|
||||||
|
|||||||
@@ -136,7 +136,7 @@ public sealed class HungerSystem : EntitySystem
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
//WD start
|
//WD start
|
||||||
if (_net.IsServer && component.CurrentThreshold != HungerThreshold.Overfed)
|
if (_net.IsServer)
|
||||||
{
|
{
|
||||||
var ev = new MoodEffectEvent("Hunger" + component.CurrentThreshold);
|
var ev = new MoodEffectEvent("Hunger" + component.CurrentThreshold);
|
||||||
RaiseLocalEvent(uid, ev);
|
RaiseLocalEvent(uid, ev);
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ using Robust.Shared.Random;
|
|||||||
using Robust.Shared.Timing;
|
using Robust.Shared.Timing;
|
||||||
using Content.Shared._White.Mood;
|
using Content.Shared._White.Mood;
|
||||||
using Robust.Shared.Utility;
|
using Robust.Shared.Utility;
|
||||||
|
using Robust.Shared.Network;
|
||||||
|
|
||||||
namespace Content.Shared.Nutrition.EntitySystems;
|
namespace Content.Shared.Nutrition.EntitySystems;
|
||||||
|
|
||||||
@@ -22,6 +23,7 @@ public sealed class ThirstSystem : EntitySystem
|
|||||||
[Dependency] private readonly AlertsSystem _alerts = default!;
|
[Dependency] private readonly AlertsSystem _alerts = default!;
|
||||||
[Dependency] private readonly MovementSpeedModifierSystem _movement = default!;
|
[Dependency] private readonly MovementSpeedModifierSystem _movement = default!;
|
||||||
[Dependency] private readonly SharedJetpackSystem _jetpack = default!;
|
[Dependency] private readonly SharedJetpackSystem _jetpack = default!;
|
||||||
|
[Dependency] private readonly INetManager _net = default!; // WD edit
|
||||||
|
|
||||||
[ValidatePrototypeId<StatusIconPrototype>]
|
[ValidatePrototypeId<StatusIconPrototype>]
|
||||||
private const string ThirstIconOverhydratedId = "ThirstIconOverhydrated";
|
private const string ThirstIconOverhydratedId = "ThirstIconOverhydrated";
|
||||||
@@ -65,7 +67,7 @@ public sealed class ThirstSystem : EntitySystem
|
|||||||
UpdateEffects(uid, component);
|
UpdateEffects(uid, component);
|
||||||
|
|
||||||
TryComp(uid, out MovementSpeedModifierComponent? moveMod);
|
TryComp(uid, out MovementSpeedModifierComponent? moveMod);
|
||||||
_movement.RefreshMovementSpeedModifiers(uid, moveMod);
|
_movement.RefreshMovementSpeedModifiers(uid, moveMod);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnRefreshMovespeed(EntityUid uid, ThirstComponent component, RefreshMovementSpeedModifiersEvent args)
|
private void OnRefreshMovespeed(EntityUid uid, ThirstComponent component, RefreshMovementSpeedModifiersEvent args)
|
||||||
@@ -172,7 +174,7 @@ public sealed class ThirstSystem : EntitySystem
|
|||||||
}
|
}
|
||||||
|
|
||||||
// WD start
|
// WD start
|
||||||
if (component.CurrentThirstThreshold != ThirstThreshold.OverHydrated)
|
if (_net.IsServer)
|
||||||
{
|
{
|
||||||
var ev = new MoodEffectEvent("Thirst" + component.CurrentThirstThreshold);
|
var ev = new MoodEffectEvent("Thirst" + component.CurrentThirstThreshold);
|
||||||
RaiseLocalEvent(uid, ev);
|
RaiseLocalEvent(uid, ev);
|
||||||
|
|||||||
@@ -1,13 +1,4 @@
|
|||||||
Entries:
|
Entries:
|
||||||
- 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\
|
||||||
@@ -8899,3 +8890,25 @@
|
|||||||
id: 652
|
id: 652
|
||||||
time: '2025-01-05T20:40:31.0000000+00:00'
|
time: '2025-01-05T20:40:31.0000000+00:00'
|
||||||
url: https://api.github.com/repos/frosty-dev/ss14-core/pulls/872
|
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
|
||||||
|
|||||||
@@ -7,3 +7,5 @@ generic-reagent-effect-tearing-up = Ваши глаза начинают сле
|
|||||||
generic-reagent-effect-nauseous = Вы чувствуете тошноту.
|
generic-reagent-effect-nauseous = Вы чувствуете тошноту.
|
||||||
generic-reagent-effect-parched = У вас першит в горле.
|
generic-reagent-effect-parched = У вас першит в горле.
|
||||||
generic-reagent-effect-thirsty = Вы чувствуете жажду.
|
generic-reagent-effect-thirsty = Вы чувствуете жажду.
|
||||||
|
generic-reagent-effect-sick = Вы чувствуете себя плохо после употребления этого...
|
||||||
|
generic-reagent-effect-slicing-insides = Вы чувствуете невероятно острую боль в животе!
|
||||||
|
|||||||
@@ -17,14 +17,12 @@
|
|||||||
- !type:SpeciesRequirement
|
- !type:SpeciesRequirement
|
||||||
species:
|
species:
|
||||||
- Human
|
- Human
|
||||||
- Felinid
|
|
||||||
weight: 10
|
weight: 10
|
||||||
icon: "JobIconInspector"
|
icon: "JobIconInspector"
|
||||||
arrivalNotificationPrototype: InspectorArrivalNotification
|
arrivalNotificationPrototype: InspectorArrivalNotification
|
||||||
supervisors: job-supervisors-captain
|
supervisors: job-supervisors-captain
|
||||||
whitelistedSpecies:
|
whitelistedSpecies:
|
||||||
- Human
|
- Human
|
||||||
- Felinid
|
|
||||||
canBeAntag: true
|
canBeAntag: true
|
||||||
access:
|
access:
|
||||||
- Service
|
- Service
|
||||||
|
|||||||
@@ -32,7 +32,7 @@
|
|||||||
- type: Spillable
|
- type: Spillable
|
||||||
solution: beaker
|
solution: beaker
|
||||||
- type: StaticPrice
|
- type: StaticPrice
|
||||||
price: 150
|
price: 15
|
||||||
- type: Label
|
- type: Label
|
||||||
originalName: химический картридж
|
originalName: химический картридж
|
||||||
- type: Tag
|
- type: Tag
|
||||||
|
|||||||
@@ -519,3 +519,12 @@
|
|||||||
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: Буль-буль.
|
||||||
|
|||||||
@@ -41,3 +41,9 @@
|
|||||||
id: MobHighPressure
|
id: MobHighPressure
|
||||||
description: "На меня оказывается огромное давление!"
|
description: "На меня оказывается огромное давление!"
|
||||||
moodChange: enum.MoodChangeLevel.Medium
|
moodChange: enum.MoodChangeLevel.Medium
|
||||||
|
|
||||||
|
- type: moodEffect
|
||||||
|
id: GotHitInTheBalls
|
||||||
|
description: "Господи... Как же больно..."
|
||||||
|
moodChange: enum.MoodChangeLevel.Large
|
||||||
|
timeout: 1
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
#Hunger
|
#Hunger
|
||||||
- type: moodEffect
|
- type: moodEffect
|
||||||
id: HungerOverfed
|
id: HungerOverfed
|
||||||
description: "Во мне столько жира..."
|
description: "Мой желудок полон!"
|
||||||
moodChange: enum.MoodChangeLevel.Small
|
moodChange: enum.MoodChangeLevel.Medium
|
||||||
|
positive: true
|
||||||
category: "Hunger"
|
category: "Hunger"
|
||||||
|
|
||||||
- type: moodEffect
|
- type: moodEffect
|
||||||
@@ -24,11 +25,18 @@
|
|||||||
moodChange: enum.MoodChangeLevel.Big
|
moodChange: enum.MoodChangeLevel.Big
|
||||||
category: "Hunger"
|
category: "Hunger"
|
||||||
|
|
||||||
|
- type: moodEffect
|
||||||
|
id: HungerDead
|
||||||
|
description: "Умираю от голода!"
|
||||||
|
moodChange: enum.MoodChangeLevel.Huge
|
||||||
|
category: "Hunger"
|
||||||
|
|
||||||
#Thirst
|
#Thirst
|
||||||
- type: moodEffect
|
- type: moodEffect
|
||||||
id: ThirstOverHydrated
|
id: ThirstOverHydrated
|
||||||
description: "СЛИШКОМ МНОГО ВОДЫ..."
|
description: "Не хочу пить."
|
||||||
moodChange: enum.MoodChangeLevel.Small
|
moodChange: enum.MoodChangeLevel.Medium
|
||||||
|
positive: true
|
||||||
category: "Thirst"
|
category: "Thirst"
|
||||||
|
|
||||||
- type: moodEffect
|
- type: moodEffect
|
||||||
@@ -46,10 +54,16 @@
|
|||||||
|
|
||||||
- type: moodEffect
|
- type: moodEffect
|
||||||
id: ThirstParched
|
id: ThirstParched
|
||||||
description: "ВОДЫ!"
|
description: "Хочу пить!"
|
||||||
moodChange: enum.MoodChangeLevel.Big
|
moodChange: enum.MoodChangeLevel.Big
|
||||||
category: "Thirst"
|
category: "Thirst"
|
||||||
|
|
||||||
|
- type: moodEffect
|
||||||
|
id: ThirstDead
|
||||||
|
description: "Умираю от жажды!"
|
||||||
|
moodChange: enum.MoodChangeLevel.Huge
|
||||||
|
category: "Thirst"
|
||||||
|
|
||||||
#Health
|
#Health
|
||||||
- type: moodEffect
|
- type: moodEffect
|
||||||
id: HealthNoDamage
|
id: HealthNoDamage
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 375 B After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 293 B After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 276 B After Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 277 B After Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 258 B After Width: | Height: | Size: 1.8 KiB |
|
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
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||