PocketMine-MP 5.21.2 git-b2aa6396c3cc2cafdd815eacc360e1ad89599899
Loading...
Searching...
No Matches
EffectIds.php
1<?php
2
3/*
4 *
5 * ____ _ _ __ __ _ __ __ ____
6 * | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
7 * | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
8 * | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
9 * |_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
10 *
11 * This program is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License as published by
13 * the Free Software Foundation, either version 3 of the License, or
14 * (at your option) any later version.
15 *
16 * @author PocketMine Team
17 * @link http://www.pocketmine.net/
18 *
19 *
20 */
21
22declare(strict_types=1);
23
24namespace pocketmine\data\bedrock;
25
26final class EffectIds{
27
28 private function __construct(){
29 //NOOP
30 }
31
32 public const SPEED = 1;
33 public const SLOWNESS = 2;
34 public const HASTE = 3;
35 public const MINING_FATIGUE = 4;
36 public const STRENGTH = 5;
37 public const INSTANT_HEALTH = 6;
38 public const INSTANT_DAMAGE = 7;
39 public const JUMP_BOOST = 8;
40 public const NAUSEA = 9;
41 public const REGENERATION = 10;
42 public const RESISTANCE = 11;
43 public const FIRE_RESISTANCE = 12;
44 public const WATER_BREATHING = 13;
45 public const INVISIBILITY = 14;
46 public const BLINDNESS = 15;
47 public const NIGHT_VISION = 16;
48 public const HUNGER = 17;
49 public const WEAKNESS = 18;
50 public const POISON = 19;
51 public const WITHER = 20;
52 public const HEALTH_BOOST = 21;
53 public const ABSORPTION = 22;
54 public const SATURATION = 23;
55 public const LEVITATION = 24;
56 public const FATAL_POISON = 25;
57 public const CONDUIT_POWER = 26;
58 public const SLOW_FALLING = 27;
59 public const BAD_OMEN = 28;
60 public const VILLAGE_HERO = 29;
61 public const DARKNESS = 30;
62}