File tree Expand file tree Collapse file tree 2 files changed +54
-0
lines changed Expand file tree Collapse file tree 2 files changed +54
-0
lines changed Original file line number Diff line number Diff line change @@ -239,5 +239,50 @@ public enum EffectType
239
239
/// <see cref="CustomPlayerEffects.Slowness"/>.
240
240
/// </summary>
241
241
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 ,
242
287
}
243
288
}
Original file line number Diff line number Diff line change @@ -74,6 +74,15 @@ public static class EffectTypeExtension
74
74
{ EffectType . Ghostly , typeof ( Ghostly ) } ,
75
75
{ EffectType . FogControl , typeof ( FogControl ) } ,
76
76
{ 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 ) } ,
77
86
} ) ;
78
87
79
88
/// <summary>
You can’t perform that action at this time.
0 commit comments