PocketMine-MP 5.18.2 git-00e39821f06a4b6d728d35053c2621dbb19369ff
CompoundTypeIds.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 CompoundTypeIds{
27 public const SALT = 0;
28 public const SODIUM_OXIDE = 1;
29 public const SODIUM_HYDROXIDE = 2;
30 public const MAGNESIUM_NITRATE = 3;
31 public const IRON_SULPHIDE = 4;
32 public const LITHIUM_HYDRIDE = 5;
33 public const SODIUM_HYDRIDE = 6;
34 public const CALCIUM_BROMIDE = 7;
35 public const MAGNESIUM_OXIDE = 8;
36 public const SODIUM_ACETATE = 9;
37 public const LUMINOL = 10;
38 public const CHARCOAL = 11;
39 public const SUGAR = 12;
40 public const ALUMINIUM_OXIDE = 13;
41 public const BORON_TRIOXIDE = 14;
42 public const SOAP = 15;
43 public const POLYETHYLENE = 16;
44 public const RUBBISH = 17;
45 public const MAGNESIUM_SALTS = 18;
46 public const SULPHATE = 19;
47 public const BARIUM_SULPHATE = 20;
48 public const POTASSIUM_CHLORIDE = 21;
49 public const MERCURIC_CHLORIDE = 22;
50 public const CERIUM_CHLORIDE = 23;
51 public const TUNGSTEN_CHLORIDE = 24;
52 public const CALCIUM_CHLORIDE = 25;
53 public const WATER = 26;
54 public const GLUE = 27;
55 public const HYPOCHLORITE = 28;
56 public const CRUDE_OIL = 29;
57 public const LATEX = 30;
58 public const POTASSIUM_IODIDE = 31;
59 public const SODIUM_FLUORIDE = 32;
60 public const BENZENE = 33;
61 public const INK = 34;
62 public const HYDROGEN_PEROXIDE = 35;
63 public const AMMONIA = 36;
64 public const SODIUM_HYPOCHLORITE = 37;
65}