[Tweak] Баланс да (#39)
* tweak: hardsuits size ginormous -> huge * tweak: made common hardsuits slow less * tweak: materails&coils are smaller * tweak: AME parts in crate 9 ->18 * tweak: increase ame efficiency 10x * Revert "tweak: increase ame efficiency 10x" This reverts commit add91b3b42db78efd37c9a9099911803c72caf71. * tweak: increased ame injection amount * tweak: static storage disabled by default * tweak: show loco above head disabled by default * tweak: melee attacks system changed * add: removed alt attack from stunbaton * add: stamina damage on heavy attack * tweak: reduced changeling gamerule chance * tweak: reduced total armblade damage 40 -> 34. Added structural damage * tweak: limited tentacle gun range * fix: fixed windoors damagegroups * fix: fix functions localization
This commit is contained in:
@@ -234,7 +234,7 @@ public sealed class AmeControllerSystem : EntitySystem
|
||||
// Admin alert
|
||||
var safeLimit = 0;
|
||||
if (TryGetAMENodeGroup(uid, out var group))
|
||||
safeLimit = group.CoreCount * 2;
|
||||
safeLimit = group.CoreCount * 3;
|
||||
|
||||
if (oldValue <= safeLimit && value > safeLimit)
|
||||
{
|
||||
@@ -340,10 +340,10 @@ public sealed class AmeControllerSystem : EntitySystem
|
||||
ToggleInjecting(uid, user: user, controller: comp);
|
||||
break;
|
||||
case UiButton.IncreaseFuel:
|
||||
AdjustInjectionAmount(uid, +2, user: user, controller: comp);
|
||||
AdjustInjectionAmount(uid, +3, user: user, controller: comp);
|
||||
break;
|
||||
case UiButton.DecreaseFuel:
|
||||
AdjustInjectionAmount(uid, -2, user: user, controller: comp);
|
||||
AdjustInjectionAmount(uid, -3, user: user, controller: comp);
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user