mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-11-07 17:36:07 +00:00
Add submodule MinecraftProtocolLibrary
This commit is contained in:
parent
87026e1bfb
commit
3f1de66af3
62 changed files with 1093 additions and 450 deletions
41
MinecraftClient/EntityHandler/EffectType.cs
Normal file
41
MinecraftClient/EntityHandler/EffectType.cs
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
namespace MinecraftClient.EntityHandler
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents a Minecraft effects
|
||||
/// </summary>
|
||||
public enum EffectType
|
||||
{
|
||||
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,
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue