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