2019-01-11 18:22:32 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class ItemClass extends Item
|
|
|
|
{
|
2019-01-11 22:05:09 +02:00
|
|
|
public function ShopInfo()
|
2019-01-11 19:51:35 +02:00
|
|
|
{
|
2019-01-11 22:05:09 +02:00
|
|
|
parent::printBaseInfo();
|
|
|
|
echo "<br>Цена" . $this->wrap($this->cost);
|
|
|
|
parent::printRequirements();
|
|
|
|
parent::printBonuses();
|
2019-01-11 19:51:35 +02:00
|
|
|
}
|
2019-01-11 20:20:11 +02:00
|
|
|
|
2019-01-11 22:05:09 +02:00
|
|
|
public function EkrShopInfo()
|
2019-01-11 18:22:32 +02:00
|
|
|
{
|
2019-01-11 21:49:00 +02:00
|
|
|
parent::printBaseInfo();
|
2019-01-11 22:05:09 +02:00
|
|
|
echo "<br>Цена" . $this->wrap($this->ecost);
|
|
|
|
parent::printRequirements();
|
|
|
|
parent::printBonuses();
|
2019-01-11 18:47:16 +02:00
|
|
|
}
|
|
|
|
|
2019-01-11 22:05:09 +02:00
|
|
|
public function PresentInfo()
|
|
|
|
{
|
|
|
|
parent::printBaseInfo();
|
|
|
|
}
|
2019-01-11 18:22:32 +02:00
|
|
|
}
|