Add actor sheet implementation using Foundry VTT v13 ApplicationV2 API: - Base actor sheet class with tab navigation, drag-drop, scroll preservation - Character sheet with header, main tab (stats, saves, skills, attacks) - NPC sheet structure (templates only, styling pending) - Resource bars with fill effect and backdrop pills for legibility - Responsive layout using CSS Container Queries - Fix for ApplicationV2 tab switching (cleanup stale parts) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
21 lines
691 B
Handlebars
21 lines
691 B
Handlebars
{{!-- NPC Sheet Notes Section --}}
|
|
<section class="npc-notes">
|
|
{{!-- Loot --}}
|
|
<div class="notes-section loot">
|
|
<h2 class="section-header">{{localize "VAGABOND.Loot"}}</h2>
|
|
<div class="editor-container">
|
|
<textarea name="system.loot"
|
|
placeholder="{{localize 'VAGABOND.LootPlaceholder'}}">{{loot}}</textarea>
|
|
</div>
|
|
</div>
|
|
|
|
{{!-- GM Notes --}}
|
|
<div class="notes-section gm-notes">
|
|
<h2 class="section-header">{{localize "VAGABOND.GMNotes"}}</h2>
|
|
<div class="editor-container">
|
|
<textarea name="system.gmNotes"
|
|
placeholder="{{localize 'VAGABOND.GMNotesPlaceholder'}}">{{gmNotes}}</textarea>
|
|
</div>
|
|
</div>
|
|
</section>
|