Implemented health, events, damage, motion push

This commit is contained in:
Shoghi Cervantes
2014-07-06 23:10:11 +02:00
parent 25ecdcf6e2
commit 65523972c2
15 changed files with 701 additions and 122 deletions

View File

@ -0,0 +1,58 @@
<?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\event\player;
use pocketmine\item\Item;
use pocketmine\Player;
use pocketmine\event\entity\EntityDeathEvent;
class PlayerDeathEvent extends EntityDeathEvent{
public static $handlerList = null;
private $deathMessage;
/**
* @param Player $entity
* @param Item[] $drops
* @param string $deathMessage
*/
public function __construct(Player $entity, array $drops, $deathMessage){
parent::__construct($entity, $drops);
$this->deathMessage = $deathMessage;
}
/**
* @return Player
*/
public function getEntity(){
return $this->entity;
}
public function getDeathMessage(){
return $this->deathMessage;
}
public function setDeathMessage($deathMessage){
$this->deathMessage = $deathMessage;
}
}