mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-06 17:59:48 +00:00
68 lines
1.7 KiB
PHP
68 lines
1.7 KiB
PHP
<?php
|
|
|
|
/*
|
|
*
|
|
* ____ _ _ __ __ _ __ __ ____
|
|
* | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
|
|
* | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
|
|
* | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
|
|
* |_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* @author PocketMine Team
|
|
* @link http://www.pocketmine.net/
|
|
*
|
|
*
|
|
*/
|
|
|
|
namespace pocketmine\block;
|
|
|
|
use pocketmine\item\Item;
|
|
|
|
class StainedClay extends Solid{
|
|
public function __construct($meta = 0){
|
|
parent::__construct(self::STAINED_CLAY, $meta, "Stained Clay");
|
|
$names = [
|
|
0 => "White Stained Clay",
|
|
1 => "Orange Stained Clay",
|
|
2 => "Magenta Stained Clay",
|
|
3 => "Light Blue Stained Clay",
|
|
4 => "Yellow Stained Clay",
|
|
5 => "Lime Stained Clay",
|
|
6 => "Pink Stained Clay",
|
|
7 => "Gray Stained Clay",
|
|
8 => "Light Gray Stained Clay",
|
|
9 => "Cyan Stained Clay",
|
|
10 => "Purple Stained Clay",
|
|
11 => "Blue Stained Clay",
|
|
12 => "Brown Stained Clay",
|
|
13 => "Green Stained Clay",
|
|
14 => "Red Stained Clay",
|
|
15 => "Black Stained Clay",
|
|
];
|
|
$this->name = $names[$this->meta];
|
|
$this->hardness = 30;
|
|
}
|
|
|
|
public function getBreakTime(Item $item){
|
|
switch($item->isPickaxe()){
|
|
case 5:
|
|
return 0.25;
|
|
case 4:
|
|
return 0.35;
|
|
case 3:
|
|
return 0.5;
|
|
case 2:
|
|
return 0.2;
|
|
case 1:
|
|
return 0.95;
|
|
default:
|
|
return 6.25;
|
|
}
|
|
}
|
|
|
|
} |