Skip to content

Commit

Permalink
chameleon skin nerf and price reduction
Browse files Browse the repository at this point in the history
  • Loading branch information
Darkmajia committed Dec 9, 2024
1 parent 8829be4 commit 1aaadab
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
using Content.Shared.Stealth.Components;
using Content.Shared.Damage.Components;
using Content.Server.Radio.Components;
using Content.Shared.Stealth;

namespace Content.Server.Changeling;

Expand Down Expand Up @@ -575,10 +576,15 @@ public void OnChameleonSkin(EntityUid uid, ChangelingComponent comp, ref ActionC
_popup.PopupEntity(Loc.GetString("changeling-chameleon-end"), uid, uid);
return;
}
else
{
AddComp<StealthComponent>(uid);

EnsureComp<StealthComponent>(uid);
EnsureComp<StealthOnMoveComponent>(uid);
_popup.PopupEntity(Loc.GetString("changeling-chameleon-start"), uid, uid);
var stealthOnMove = AddComp<StealthOnMoveComponent>(uid);
stealthOnMove.MovementVisibilityRate = 1;

_popup.PopupEntity(Loc.GetString("changeling-chameleon-start"), uid, uid);
}
}
public void OnEphedrineOverdose(EntityUid uid, ChangelingComponent comp, ref ActionEphedrineOverdoseEvent args)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@
icon: { sprite: _Goobstation/Changeling/changeling_abilities.rsi, state: chameleon_skin }
productAction: ActionChameleonSkin
cost:
EvolutionPoint: 4
EvolutionPoint: 2
categories:
- ChangelingAbilityUtility
conditions:
Expand Down

0 comments on commit 1aaadab

Please sign in to comment.