Mods: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 86: | Line 86: | ||
font-weight: 700; | font-weight: 700; | ||
color: #e6edf3; | color: #e6edf3; | ||
font-size: 14px; | |||
} | } | ||
.mw-tab-content { | .mw-tab-content { | ||
| Line 130: | Line 131: | ||
<div id="weapon-burn" class="mw-tab-content active"> | <div id="weapon-burn" class="mw-tab-content active"> | ||
<div class="dropdown"> | <div class="dropdown"> | ||
<select id="burnSelect"> | <select id="burnSelect" onchange="window.showBurnInfo && window.showBurnInfo(this.value)"> | ||
<option value="">Select Burn Mod</option> | <option value="">Select Burn Mod</option> | ||
<option value="flame_resonance">Flame Resonance</option> | <option value="flame_resonance">Flame Resonance</option> | ||
| Line 204: | Line 205: | ||
btn.parentElement.querySelectorAll('.mw-tab-btn').forEach(b => b.classList.remove('active')); | btn.parentElement.querySelectorAll('.mw-tab-btn').forEach(b => b.classList.remove('active')); | ||
btn.classList.add('active'); | btn.classList.add('active'); | ||
const target = document.getElementById( | const target = document.getElementById(btn.dataset.tab); | ||
if (!target) return; | if (!target) return; | ||
target.parentElement.querySelectorAll(':scope > .mw-tab-content').forEach(c => c.classList.remove('active')); | target.parentElement.querySelectorAll(':scope > .mw-tab-content').forEach(c => c.classList.remove('active')); | ||
| Line 254: | Line 255: | ||
}; | }; | ||
/* DROPDOWN LOGIC */ | /* DROPDOWN LOGIC */ | ||
function | window.showBurnInfo = function (val) { | ||
var output = document.getElementById("burnOutput"); | |||
if (! | if (!output) return; | ||
if (!val) { output.style.display = "none"; return; } | |||
var item = burnData[val]; | |||
if (!item) { output.style.display = "none"; return; } | |||
var html = ""; | |||
for (var i = 0; i < item.lines.length; i++) { | |||
html += '<div class="output-line' + (i === 0 ? ' bold' : '') + '">' + item.lines[i] + '</div>'; | |||
} | |||
output.innerHTML = html; | |||
output.style.display = "block"; | |||
}; | |||
</script> | </script> | ||
</html> | </html> | ||
Revision as of 16:57, 14 May 2026
How to get specific Mods you are looking for
Step 1: Go to Redemption Shop (F3 on PC)
Step 2: Click Mod Shop
Step 3: Click Credit Card Icon
Step 4: Buy Mod Selection Crate
Step 5: Open from Backpack → Consumables
Step 6: Pick your mod
Step 7: If wanting Mask, Pick Keyword Suffix Mod Selection Crate → Keyword
No Frost Vortex mods listed yet.
No Power Surge mods listed yet.
No Unstable Bomber mods listed yet.
No Fortress Warfare mods listed yet.
No Fast Gunner mods listed yet.
No Bulls Eye mods listed yet.
No Bounce mods listed yet.
No Shrapnel mods listed yet.
No Helmet mods listed yet.
No Top mods listed yet.
No Bottoms mods listed yet.
No Shoes mods listed yet.
No Gloves mods listed yet.
No Mask mods listed yet.