diff --git a/EXILED/Exiled.API/Enums/EffectType.cs b/EXILED/Exiled.API/Enums/EffectType.cs index 734fdb8ce..61b4a43d7 100644 --- a/EXILED/Exiled.API/Enums/EffectType.cs +++ b/EXILED/Exiled.API/Enums/EffectType.cs @@ -239,5 +239,50 @@ public enum EffectType /// . /// Slowness, + + /// + /// + /// + OrangeCandy, + + /// + /// + /// + Prismatic, + + /// + /// + /// + SlowMetabolism, + + /// + /// + /// + Spicy, + + /// + /// + /// + SugarCrave, + + /// + /// + /// + SugarHigh, + + /// + /// + /// + SugarRush, + + /// + /// + /// + TemporaryBypass, + + /// + /// + /// + TraumatizedByEvil, } } diff --git a/EXILED/Exiled.API/Extensions/EffectTypeExtension.cs b/EXILED/Exiled.API/Extensions/EffectTypeExtension.cs index 126b5eae4..209515d9c 100644 --- a/EXILED/Exiled.API/Extensions/EffectTypeExtension.cs +++ b/EXILED/Exiled.API/Extensions/EffectTypeExtension.cs @@ -74,6 +74,15 @@ public static class EffectTypeExtension { EffectType.Ghostly, typeof(Ghostly) }, { EffectType.FogControl, typeof(FogControl) }, { EffectType.Slowness, typeof(Slowness) }, + { EffectType.OrangeCandy, typeof(OrangeCandy) }, + { EffectType.Prismatic, typeof(Prismatic) }, + { EffectType.SlowMetabolism, typeof(SlowMetabolism) }, + { EffectType.Spicy, typeof(Spicy) }, + { EffectType.SugarCrave, typeof(SugarCrave) }, + { EffectType.SugarHigh, typeof(SugarHigh) }, + { EffectType.SugarRush, typeof(SugarRush) }, + { EffectType.TemporaryBypass, typeof(TemporaryBypass) }, + { EffectType.TraumatizedByEvil, typeof(TraumatizedByEvil) }, }); ///