mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-05-19 04:05:31 +00:00
Added Beetroot soup, beetroot seeds, crafting
This commit is contained in:
parent
03e71ee3ff
commit
fb9f7891c7
@ -159,3 +159,6 @@ define("NETHER_QUARTZ", 406);
|
|||||||
|
|
||||||
define("CAMERA", 456);
|
define("CAMERA", 456);
|
||||||
define("BEETROOT", 457);
|
define("BEETROOT", 457);
|
||||||
|
define("BEETROOT_SEEDS", 458);
|
||||||
|
define("BEETROOT_SEED", 458);
|
||||||
|
define("BEETROOT_SOUP", 459);
|
@ -141,6 +141,7 @@ abstract class Block extends Position{
|
|||||||
|
|
||||||
COAL_BLOCK => "CoalBlock",
|
COAL_BLOCK => "CoalBlock",
|
||||||
|
|
||||||
|
BEETROOT_BLOCK => "BeetrootBlock",
|
||||||
STONECUTTER => "StonecutterBlock",
|
STONECUTTER => "StonecutterBlock",
|
||||||
GLOWING_OBSIDIAN => "GlowingObsidianBlock",
|
GLOWING_OBSIDIAN => "GlowingObsidianBlock",
|
||||||
NETHER_REACTOR => "NetherReactorBlock",
|
NETHER_REACTOR => "NetherReactorBlock",
|
||||||
|
@ -27,6 +27,7 @@ class Item{
|
|||||||
MELON_SEEDS => "MelonSeedsItem",
|
MELON_SEEDS => "MelonSeedsItem",
|
||||||
CARROT => "CarrotItem",
|
CARROT => "CarrotItem",
|
||||||
POTATO => "PotatoItem",
|
POTATO => "PotatoItem",
|
||||||
|
BEETROOT_SEEDS => "BeetrootSeedsItem",
|
||||||
SIGN => "SignItem",
|
SIGN => "SignItem",
|
||||||
WOODEN_DOOR => "WoodenDoorItem",
|
WOODEN_DOOR => "WoodenDoorItem",
|
||||||
BUCKET => "BucketItem",
|
BUCKET => "BucketItem",
|
||||||
|
82
src/material/block/plant/Beetroot.php
Normal file
82
src/material/block/plant/Beetroot.php
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
<?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/
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
class BeetrootBlock extends FlowableBlock{
|
||||||
|
public function __construct($meta = 0){
|
||||||
|
parent::__construct(BETROOT_BLOCK, $meta, "Beetroot Block");
|
||||||
|
$this->isActivable = true;
|
||||||
|
$this->hardness = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function place(Item $item, Player $player, Block $block, Block $target, $face, $fx, $fy, $fz){
|
||||||
|
$down = $this->getSide(0);
|
||||||
|
if($down->getID() === FARMLAND){
|
||||||
|
$this->level->setBlock($block, $this, true, false, true);
|
||||||
|
$this->level->scheduleBlockUpdate(new Position($this, 0, 0, $this->level), Utils::getRandomUpdateTicks(), BLOCK_UPDATE_RANDOM);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function onActivate(Item $item, Player $player){
|
||||||
|
if($item->getID() === DYE and $item->getMetadata() === 0x0F){ //Bonemeal
|
||||||
|
$this->meta = 0x07;
|
||||||
|
$this->level->setBlock($this, $this, true, false, true);
|
||||||
|
if(($player->gamemode & 0x01) === 0){
|
||||||
|
$item->count--;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function onUpdate($type){
|
||||||
|
if($type === BLOCK_UPDATE_NORMAL){
|
||||||
|
if($this->getSide(0)->isTransparent === true){ //Replace with common break method
|
||||||
|
ServerAPI::request()->api->entity->drop($this, BlockAPI::getItem(BEETROOT_SEEDS, 0, 1));
|
||||||
|
$this->level->setBlock($this, new AirBlock(), false, false, true);
|
||||||
|
return BLOCK_UPDATE_NORMAL;
|
||||||
|
}
|
||||||
|
}elseif($type === BLOCK_UPDATE_RANDOM){
|
||||||
|
if(mt_rand(0, 2) == 1){
|
||||||
|
if($this->meta < 0x07){
|
||||||
|
++$this->meta;
|
||||||
|
$this->level->setBlock($this, $this, true, false, true);
|
||||||
|
return BLOCK_UPDATE_RANDOM;
|
||||||
|
}
|
||||||
|
}else{
|
||||||
|
return BLOCK_UPDATE_RANDOM;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getDrops(Item $item, Player $player){
|
||||||
|
$drops = array();
|
||||||
|
if($this->meta >= 0x07){
|
||||||
|
$drops[] = array(BEETROOT, 0, 1);
|
||||||
|
$drops[] = array(BEETROOT_SEEDS, 0, mt_rand(0, 3));
|
||||||
|
}else{
|
||||||
|
$drops[] = array(BEETROOT_SEEDS, 0, 1);
|
||||||
|
}
|
||||||
|
return $drops;
|
||||||
|
}
|
||||||
|
}
|
27
src/material/item/generic/BeetrootSeeds.php
Normal file
27
src/material/item/generic/BeetrootSeeds.php
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
<?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/
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
class BeetrootSeedsItem extends Item{
|
||||||
|
public function __construct($meta = 0, $count = 1){
|
||||||
|
$this->block = BlockAPI::get(BEETROOT_BLOCK);
|
||||||
|
parent::__construct(BEETROOT_SEEDS, 0, $count, "Beetroot Seeds");
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user