PocketMine-MP 5.31.1 git-a1d74b57109a7c91ffab73718182f3b1e530fae3
Loading...
Searching...
No Matches
WoodType.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\block\utils;
25
26use pocketmine\utils\LegacyEnumShimTrait;
27
43enum WoodType{
44 use LegacyEnumShimTrait;
45
46 case OAK;
47 case SPRUCE;
48 case BIRCH;
49 case JUNGLE;
50 case ACACIA;
51 case DARK_OAK;
52 case MANGROVE;
53 case CRIMSON;
54 case WARPED;
55 case CHERRY;
56 case PALE_OAK;
57
58 public function getDisplayName() : string{
59 return match($this){
60 self::OAK => "Oak",
61 self::SPRUCE => "Spruce",
62 self::BIRCH => "Birch",
63 self::JUNGLE => "Jungle",
64 self::ACACIA => "Acacia",
65 self::DARK_OAK => "Dark Oak",
66 self::MANGROVE => "Mangrove",
67 self::CRIMSON => "Crimson",
68 self::WARPED => "Warped",
69 self::CHERRY => "Cherry",
70 self::PALE_OAK => "Pale Oak",
71 };
72 }
73
74 public function isFlammable() : bool{
75 return $this !== self::CRIMSON && $this !== self::WARPED;
76 }
77
78 public function getStandardLogSuffix() : ?string{
79 return $this === self::CRIMSON || $this === self::WARPED ? "Stem" : null;
80 }
81
82 public function getAllSidedLogSuffix() : ?string{
83 return $this === self::CRIMSON || $this === self::WARPED ? "Hyphae" : null;
84 }
85}