mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-08 03:06:03 -05:00
21 lines
408 B
PHP
21 lines
408 B
PHP
<?php
|
|
|
|
namespace App\Enums\Game;
|
|
|
|
enum ItemQuality: string
|
|
{
|
|
|
|
case Basic = 'Basic';
|
|
case Specialized = 'Specialized';
|
|
case Superior = 'Superior';
|
|
case Epic = 'Epic';
|
|
case Legendary = 'Legendary';
|
|
case Legacy = 'Legacy';
|
|
case Prestige = 'Prestige';
|
|
|
|
// Not used in catalog, but in game struct
|
|
case Standard = 'Standard';
|
|
case Rare = 'Rare';
|
|
case Ultra = 'Ultra';
|
|
}
|