아이템 관련 속성 일부 변경, 유니크 획득 코드를 수정

This commit is contained in:
2019-06-17 02:47:00 +09:00
parent d70740b38c
commit 2b1efae238
27 changed files with 70 additions and 17 deletions
+5
View File
@@ -13,6 +13,7 @@ class BaseItem implements iAction{
protected static $cost = null;
protected static $consumable = false;
protected static $buyable = false;
protected static $reqSecu = 0;
function getID(){
return $this->id;
@@ -34,6 +35,10 @@ class BaseItem implements iAction{
return $this->buyable;
}
function getReqSecu(){
return static::$reqSecu;
}
function isValidTurnItem(string $actionType, string $command):bool{
return false;
}