@extends('template.layout')
@section('title', 'Rarity Upgrade')
@section('submenuItem', 'rarityUpgrade')
@section('content')
Rarity Upgrade
The Rarity Upgrade system allows you to add attributes to items that don't have any, or enhance those that already do. Attributes are generated randomly, and an item can have a maximum of 4 attributes, reaching the Legendary status.
How does it work?
- Orbs are extracted from items with attributes using an Orb Extractor.
- The Orb Extractor can be dropped by creatures, purchased from an NPC, or acquired in the Game Store.
- Orbs are divided into tiers (1 to 4) and can only be used on items of the same tier.
- When applying an Orb to an item, there is a chance of success, failure, and a small chance of breaking the item and losing it.
- The rarer the item, the lower the success rate and the higher the risk of breaking it.
- There is an NPC that allows you to trade multiple lower-tier Orbs for a higher-tier one.
- For each upgrade attempt, your character must have the following amount of gold in the main backpack:
@php
$upgradeData = [
[
'tier' => 'Tier 1',
'orbName' => 'Faintlight Orb',
'orbImage' => 't1.png',
'costs' => ['1,250K', '2.5K', '3.75K', '5K'],
],
[
'tier' => 'Tier 2',
'orbName' => 'Tidebound Orb',
'orbImage' => 't2.png',
'costs' => ['2.5K', '5K', '7.5K', '10K'],
],
[
'tier' => 'Tier 3',
'orbName' => 'Netherbound Orb',
'orbImage' => 't3.png',
'costs' => ['5K', '10K', '15K', '20K'],
],
[
'tier' => 'Tier 4',
'orbName' => 'Blazefury Orb',
'orbImage' => 't4.png',
'costs' => ['10K', '20K', '30K', '40K'],
],
];
@endphp
Upgrade Costs by Tier
| Image |
Orb |
Item Tier |
Common → Uncommon |
Uncommon → Rare |
Rare → Epic |
Epic → Legendary |
@foreach($upgradeData as $data)
|
{{ $data['orbName'] }} |
{{ $data['tier'] }} |
@foreach($data['costs'] as $cost)
{{ $cost }} |
@endforeach
@endforeach
Upgrade Outcomes
Applying an Orb
When an Orb is applied to an item, there's a chance of success, failure, or item destruction.
The process is random and the outcome depends on the item's current rarity tier.
Item Break Chance
If an upgrade fails critically, the item might be destroyed. This chance increases with higher rarity levels,
making the upgrade process risky but rewarding.
Orb Extractors
Extractors are used to remove Orbs from enchanted items. They are essential tools in the rarity upgrade system.
Orb Extractor
50% chance of breaking
Perfect Orb Extractor
No chance of breaking
@endsection