@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?

@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

@foreach($upgradeData as $data) @foreach($data['costs'] as $cost) @endforeach @endforeach
Image Orb Item Tier Common → Uncommon Uncommon → Rare Rare → Epic Epic → Legendary
{{ $data['orbName'] }} {{ $data['orbName'] }} {{ $data['tier'] }}{{ $cost }}

Upgrade Outcomes

Applying Orb

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

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

Orb Extractor
50% chance of breaking

Perfect Orb Extractor

Perfect Orb Extractor
No chance of breaking

@endsection