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

Charm Points

Charm Points are earned every time you complete a stage of a creature's Bestiary.

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 @foreach($charms as $charm) @endforeach
Icon Name Description Charm Point Cost
{{ $charm['name'] }} {{ $charm['name'] }} {!! $charm['desc'] !!} {{ $charm['cost'] }}
@endsection