forked from JaylyDev/ScriptAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheffects.ts
More file actions
36 lines (36 loc) · 1.2 KB
/
effects.ts
File metadata and controls
36 lines (36 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/**
* All possible MinecraftEffects
*/
export enum MinecraftEffects {
Absorption = "%potion.absorption",
BadOmen = "%effect.badOmen",
Blindness = "%potion.blindness",
ConduitPower = "%potion.conduitPower",
Darkness = "%effect.darkness",
Empty = "%potion.empty",
FatalPoison = "%potion.poison",
FireResistance = "%potion.fireResistance",
Haste = "%potion.digSpeed",
HealthBoost = "%potion.healthBoost",
Hunger = "%potion.hunger",
InstantDamage = "%potion.harm",
InstantHealth = "%potion.heal",
Invisibility = "%potion.invisibility",
JumpBoost = "%potion.jump",
Levitation = "%potion.levitation",
MiningFatigue = "%potion.digSlowDown",
Nausea = "%potion.confusion",
NightVision = "%potion.nightVision",
Poison = "%potion.poison",
Regeneration = "%potion.regeneration",
Resistance = "%potion.resistance",
Saturation = "%potion.saturation",
SlowFalling = "%potion.slowFalling",
Slowness = "%potion.slowness",
Speed = "%potion.speed",
Strength = "%potion.damageBoost",
VillageHero = "%effect.villageHero",
WaterBreathing = "%potion.waterBreathing",
Weakness = "%potion.weakness",
Wither = "%potion.wither"
}