mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
48 lines
1 KiB
C#
48 lines
1 KiB
C#
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace MinecraftClient.Inventory
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Represents a Minecraft effects
|
||
|
|
/// </summary>
|
||
|
|
public enum Effects
|
||
|
|
{
|
||
|
|
Speed = 1,
|
||
|
|
Slowness = 2,
|
||
|
|
Haste = 3,
|
||
|
|
MiningFatigue = 4,
|
||
|
|
Strength = 5,
|
||
|
|
InstantHealth = 6,
|
||
|
|
InstantDamage = 7,
|
||
|
|
JumpBoost = 8,
|
||
|
|
Nausea = 9,
|
||
|
|
Regeneration = 10,
|
||
|
|
Resistance = 11,
|
||
|
|
FireResistance = 12,
|
||
|
|
WaterBreathing = 13,
|
||
|
|
Invisibility = 14,
|
||
|
|
Blindness = 15,
|
||
|
|
NightVision = 16,
|
||
|
|
Hunger = 17,
|
||
|
|
Weakness = 18,
|
||
|
|
Poison = 19,
|
||
|
|
Wither = 20,
|
||
|
|
HealthBoost = 21,
|
||
|
|
Absorption = 22,
|
||
|
|
Saturation = 23,
|
||
|
|
Glowing = 24,
|
||
|
|
Levitation = 25,
|
||
|
|
Luck = 26,
|
||
|
|
BadLuck = 27,
|
||
|
|
SlowFalling = 28,
|
||
|
|
ConduitPower = 29,
|
||
|
|
DolphinsGrace = 30,
|
||
|
|
BadOmen = 31,
|
||
|
|
HerooftheVillage = 32,
|
||
|
|
}
|
||
|
|
}
|