dh-ikonis/templates/ikonis-motherboard.hbs

37 lines
2.4 KiB
Handlebars

<section class="motherboard-content tab {{#if (eq activeTab 'motherboard')}}active{{/if}}" data-group="primary" data-tab="motherboard">
<div class="motherboard-header" style="margin-bottom: 2rem;">
<h2><i class="fa-solid fa-microchip"></i> {{localize "DAGGERHEART.ITEMS.Ikonis.Motherboard"}}</h2>
<div class="slots-info">
<span>{{usedSlots}} / {{maxSlots}} {{localize "DAGGERHEART.ITEMS.Ikonis.AugmentSlots"}}</span>
</div>
</div>
<div class="augments-section">
<div class="section-header" style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem;">
<h3 style="margin: 0; color: #e0e0e0;">Installed Augments</h3>
<button type="button" class="add-augment-btn" data-action="addAugment" style="background: #ff2e63; color: white; border: none; padding: 0.4rem 0.8rem; border-radius: 4px; cursor: pointer;">
<i class="fa-solid fa-plus"></i> Install Tech
</button>
</div>
<div class="augments-list" style="display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;">
{{#each ikonis.augments as |aug|}}
<div class="augment-item motherboard-card" style="padding: 1rem; background: rgba(255,255,255,0.02); border: 1px solid #2d3436; border-radius: 8px; position: relative;">
<a class="remove-btn" data-action="removeAugment" data-id="{{aug.id}}" style="position: absolute; top: 0.5rem; right: 0.5rem; color: #666; cursor: pointer;"><i class="fa-solid fa-trash-alt"></i></a>
<div style="display: flex; gap: 0.75rem; align-items: center; margin-bottom: 0.5rem;">
<span class="aug-name" style="font-weight: bold; font-size: 1.1rem; color: #ffffff;">{{aug.name}}</span>
</div>
<div class="aug-stats" style="font-size: 0.9rem; color: #a4b0be;">
<div class="effect">{{aug.effect}}</div>
<div class="cost" style="font-style: italic; margin-top: 0.25rem;">Cost: {{aug.cost}}</div>
</div>
</div>
{{else}}
<div class="empty-msg" style="grid-column: 1/-1; text-align: center; padding: 2rem; border: 1px dashed #333; border-radius: 8px; color: #666;">
No hardware modules detected. Click <strong>Install Tech</strong> to begin.
</div>
{{/each}}
</div>
</div>
</section>