Skip to content

Commit e8e6a1f

Browse files
authored
Merge pull request ExMod-Team#8 from Misaka-SL-Project/halloween-effects
Halloween effects
2 parents 95049de + 55fb04f commit e8e6a1f

File tree

2 files changed

+54
-0
lines changed

2 files changed

+54
-0
lines changed

EXILED/Exiled.API/Enums/EffectType.cs

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,5 +239,50 @@ public enum EffectType
239239
/// <see cref="CustomPlayerEffects.Slowness"/>.
240240
/// </summary>
241241
Slowness,
242+
243+
/// <summary>
244+
/// <see cref="CustomPlayerEffects.OrangeCandy"/>
245+
/// </summary>
246+
OrangeCandy,
247+
248+
/// <summary>
249+
/// <see cref="CustomPlayerEffects.Prismatic"/>
250+
/// </summary>
251+
Prismatic,
252+
253+
/// <summary>
254+
/// <see cref="CustomPlayerEffects.SlowMetabolism"/>
255+
/// </summary>
256+
SlowMetabolism,
257+
258+
/// <summary>
259+
/// <see cref="CustomPlayerEffects.Spicy"/>
260+
/// </summary>
261+
Spicy,
262+
263+
/// <summary>
264+
/// <see cref="CustomPlayerEffects.SugarCrave"/>
265+
/// </summary>
266+
SugarCrave,
267+
268+
/// <summary>
269+
/// <see cref="CustomPlayerEffects.SugarHigh"/>
270+
/// </summary>
271+
SugarHigh,
272+
273+
/// <summary>
274+
/// <see cref="CustomPlayerEffects.SugarRush"/>
275+
/// </summary>
276+
SugarRush,
277+
278+
/// <summary>
279+
/// <see cref="CustomPlayerEffects.TemporaryBypass"/>
280+
/// </summary>
281+
TemporaryBypass,
282+
283+
/// <summary>
284+
/// <see cref="CustomPlayerEffects.TraumatizedByEvil"/>
285+
/// </summary>
286+
TraumatizedByEvil,
242287
}
243288
}

EXILED/Exiled.API/Extensions/EffectTypeExtension.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,15 @@ public static class EffectTypeExtension
7474
{ EffectType.Ghostly, typeof(Ghostly) },
7575
{ EffectType.FogControl, typeof(FogControl) },
7676
{ EffectType.Slowness, typeof(Slowness) },
77+
{ EffectType.OrangeCandy, typeof(OrangeCandy) },
78+
{ EffectType.Prismatic, typeof(Prismatic) },
79+
{ EffectType.SlowMetabolism, typeof(SlowMetabolism) },
80+
{ EffectType.Spicy, typeof(Spicy) },
81+
{ EffectType.SugarCrave, typeof(SugarCrave) },
82+
{ EffectType.SugarHigh, typeof(SugarHigh) },
83+
{ EffectType.SugarRush, typeof(SugarRush) },
84+
{ EffectType.TemporaryBypass, typeof(TemporaryBypass) },
85+
{ EffectType.TraumatizedByEvil, typeof(TraumatizedByEvil) },
7786
});
7887

7988
/// <summary>

0 commit comments

Comments
 (0)