@extends('template.layout')
@section('title', 'Charms')
@section('submenuItem', 'charms')
@section('content')
Charm System
Charm Runes are bonuses that can be acquired by spending Charm Points, helping you during battles against specific selected creatures.
- You can select only 1 Charm Rune per creature.
- To select up to 3 different Charm Runes for different creatures, you need to purchase Extra Charm Slots from the Store.
- To swap or assign a creature to your Charm Rune, you must pay a gold fee based on your character's level.
Charm Points
Charm Points are earned every time you complete a stage of a creature's Bestiary.
- The number of points earned varies depending on the creature's difficulty.
Charm Effects
@php
$charms = [
[
'name' => 'Wound',
'cost' => 1600,
'desc' => 'Each attack on a creature has a 4% chance to trigger and deal 5% of its maximum HP as Physical Damage once.'
],
[
'name' => 'Enflame',
'cost' => 1600,
'desc' => 'Each attack on a creature has a 4% chance to trigger and deal 5% of its maximum HP as Fire Damage once.'
],
[
'name' => 'Zap',
'cost' => 1600,
'desc' => 'Each attack on a creature has a 4% chance to trigger and deal 5% of its maximum HP as Energy Damage once.'
],
[
'name' => 'Poison',
'cost' => 1600,
'desc' => 'Each attack on a creature has a 4% chance to trigger and deal 5% of its maximum HP as Poison Damage once.'
],
[
'name' => 'Adrenaline Burst',
'cost' => 1600,
'desc' => 'Bursts of adrenaline enhance your reflexes with a 4% chance after getting hit and lets you move faster for 10 seconds.'
],
[
'name' => 'Dodge',
'cost' => 1600,
'desc' => 'Dodges an attack with a 4% chance, taking no damage at all.'
],
[
'name' => 'Numb',
'cost' => 1600,
'desc' => 'Numbs the creature with a 4% chance after its attack and paralyses the creature for 10 seconds.'
],
[
'name' => 'Parry',
'cost' => 1600,
'desc' => 'Any physical damage taken has a 4% chance to be reflected to the aggressor as Physical Damage.'
],
[
'name' => 'Low Blow',
'cost' => 2200,
'desc' => 'Adds 4% critical hit chance to attacks.'
],
];
@endphp
| Icon |
Name |
Description |
Charm Point Cost |
@foreach($charms as $charm)
|
{{ $charm['name'] }} |
{!! $charm['desc'] !!} |
{{ $charm['cost'] }} |
@endforeach
@endsection