User:Kai/updateRefreshV1: Difference between revisionsGive feedback
No edit summary |
MCP (via update-page on MediaWiki MCP Server) |
||
| Line 1: | Line 1: | ||
<div id="tier-list-creator" class="tier-list-creator-wrapper"> | |||
<!-- Top Navigation & Controls Header --> | |||
<div class="tlc-header"> | |||
<div class="tlc-tabs"> | |||
<button class="tlc-tab-btn active" data-tab="heroes">Heroes Tier List</button> | |||
<button class="tlc-tab-btn" data-tab="items">Items Tier List</button> | |||
</div> | |||
<div class="tlc-actions"> | |||
<input type="text" id="tlc-search" class="tlc-search-input" placeholder="Search cards..." /> | |||
<button id="tlc-btn-reset" class="tlc-btn tlc-btn-secondary">Reset Pool</button> | |||
<button id="tlc-btn-export" class="tlc-btn tlc-btn-primary">Export Tier List</button> | |||
</div> | |||
</div> | |||
<!-- Export Modal / Output Box (Hidden by default) --> | |||
<div id="tlc-export-modal" class="tlc-modal hidden"> | |||
<div class="tlc-modal-content"> | |||
<span class="tlc-modal-close" id="tlc-modal-close">×</span> | |||
<h3>Exported Tier List</h3> | |||
<p>Copy the code below to save or share your tier list:</p> | |||
<textarea id="tlc-export-output" readonly rows="8"></textarea> | |||
<button id="tlc-btn-copy" class="tlc-btn tlc-btn-primary">Copy Code</button> | |||
</div> | |||
</div> | |||
<!-- Main Tier Board --> | |||
<div class="tlc-board"> | |||
<!-- Rank Tier Rows --> | |||
<div class="tlc-tier-row" data-tier="S"> | |||
<div class="tlc-tier-label tier-s"><span>S</span></div> | |||
<div class="tlc-tier-dropzone" data-tier="S"></div> | |||
</div> | |||
<div class="tlc-tier-row" data-tier="A"> | |||
<div class="tlc-tier-label tier-a"><span>A</span></div> | |||
<div class="tlc-tier-dropzone" data-tier="A"></div> | |||
</div> | |||
<div class="tlc-tier-row" data-tier="B"> | |||
<div class="tlc-tier-label tier-b"><span>B</span></div> | |||
<div class="tlc-tier-dropzone" data-tier="B"></div> | |||
</div> | |||
<div class="tlc-tier-row" data-tier="C"> | |||
<div class="tlc-tier-label tier-c"><span>C</span></div> | |||
<div class="tlc-tier-dropzone" data-tier="C"></div> | |||
</div> | |||
<div class="tlc-tier-row" data-tier="D"> | |||
<div class="tlc-tier-label tier-d"><span>D</span></div> | |||
<div class="tlc-tier-dropzone" data-tier="D"></div> | |||
</div> | |||
<div class="tlc-tier-row" data-tier="E"> | |||
<div class="tlc-tier-label tier-e"><span>E</span></div> | |||
<div class="tlc-tier-dropzone" data-tier="E"></div> | |||
</div> | |||
<div class="tlc-tier-row" data-tier="F"> | |||
<div class="tlc-tier-label tier-f"><span>F</span></div> | |||
<div class="tlc-tier-dropzone" data-tier="F"></div> | |||
</div> | |||
</div> | |||
<!-- Card Pools Area --> | |||
<div class="tlc-pool-container"> | |||
<div class="tlc-pool-header"> | |||
<h3 id="tlc-pool-title">Unranked Heroes</h3> | |||
</div> | |||
<!-- Heroes Pool (Active by default) --> | |||
<div id="tlc-pool-heroes" class="tlc-card-pool tlc-tier-dropzone active" data-tier="unranked" data-pool="heroes"> | |||
{{#invoke:HeroData/nav|get_hero_roster}} | |||
</div> | |||
<!-- Items Pool (Hidden by default) --> | |||
<div id="tlc-pool-items" class="tlc-card-pool tlc-tier-dropzone hidden" data-tier="unranked" data-pool="items"> | |||
{{ItemBox|itemName=Basic Magazine}} | |||
{{ItemBox|itemName=Close Quarters}} | |||
{{ItemBox|itemName=Headshot Booster}} | |||
{{ItemBox|itemName=High-Velocity Mag}} | |||
{{ItemBox|itemName=Monster Rounds}} | |||
{{ItemBox|itemName=Restorative Locket}} | |||
{{ItemBox|itemName=Healing Booster}} | |||
{{ItemBox|itemName=Extra Health}} | |||
{{ItemBox|itemName=Extra Spirit}} | |||
{{ItemBox|itemName=Mystic Burst}} | |||
{{ItemBox|itemName=Extra Charge}} | |||
{{ItemBox|itemName=Sprint Boots}} | |||
{{ItemBox|itemName=Debuff Reducer}} | |||
{{ItemBox|itemName=Decay}} | |||
{{ItemBox|itemName=Spellbreaker}} | |||
{{ItemBox|itemName=Unstoppable}} | |||
{{ItemBox|itemName=Healing Tempo}} | |||
</div> | |||
</div> | |||
</div> | |||