remove unused not working magic item blinking visual effect

This commit is contained in:
lopar
2019-01-12 23:35:48 +02:00
parent 4f99781622
commit 2ffd272f48
4 changed files with 68 additions and 83 deletions

View File

@@ -125,21 +125,48 @@ abstract class Item
$this->mfauvorot = $row['mfauvorot'];
switch ($this->type) {
case 1: $this->typename = 'Серьги'; break;
case 2: $this->typename = 'Ожерелье'; break;
case 3: $this->typename = 'Оружие'; break;
case 4: $this->typename = 'Броня'; break;
case 5: $this->typename = 'Кольцо'; break;
case 1:
$this->typename = 'Серьги';
break;
case 2:
$this->typename = 'Ожерелье';
break;
case 3:
$this->typename = 'Оружие';
break;
case 4:
$this->typename = 'Броня';
break;
case 5:
$this->typename = 'Кольцо';
break;
case 8: $this->typename = 'Шлем'; break;
case 9: $this->typename = 'Перчатки'; break;
case 10: $this->typename = 'Щит'; break;
case 11: $this->typename = 'Обувь'; break;
case 12: $this->typename = 'Магический свиток'; break;
case 22: $this->typename = 'Рубашка'; break;
case 50: $this->typename = 'Волшебное зелье'; break;
case 200: $this->typename = 'Сувенир'; break;
default: $this->typename = 'Хлам';
case 8:
$this->typename = 'Шлем';
break;
case 9:
$this->typename = 'Перчатки';
break;
case 10:
$this->typename = 'Щит';
break;
case 11:
$this->typename = 'Обувь';
break;
case 12:
$this->typename = 'Магический свиток';
break;
case 22:
$this->typename = 'Рубашка';
break;
case 50:
$this->typename = 'Волшебное зелье';
break;
case 200:
$this->typename = 'Сувенир';
break;
default:
$this->typename = 'Хлам';
}
}