✦ Verified product
Sunfire Yellow 1-16 Tabletop Wound Tracker
GBP 2.99
Fat Dwarf
Verified independent store
→
.bundle-wrapper { display: flex; gap: 30px; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; } .bundle-table { flex: 1; min-width: 300px; } .discount-calcu
lator { flex: 0 0 350px; border: 1px solid #ccc; border-radius: 10px; padding: 20px; font-family: Arial, sans-serif; background: #faad16; color: white; opacity: 0; transform: translateY(20px); animation: fadeInUp 1s ease forwards; animation-delay: 0.3s; } @keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } } .discount-calculator h3, .discount-calculator label, .discount-calculator p, .discount-calculator span { color: white; } .discount-calculator input { background-color: white; color: black; border: none; border-radius: 5px; padding: 8px; width: 100%; margin: 10px 0; } @media (max-width: 768px) { .discount-calculator { display: none; } } Quantity Total Each (£) New Discounted Total (£) Saving (£) 1 £2.99 £2.99 – 3+ £2.84 £8.52 £0.45 / 5% Off 5+ £2.69 £13.46 £1.49 / 10% Off 10+ £2.54 £25.42 £4.49 / 15% Off 15+ £2.39 £35.88 £8.97 / 20% Off Multi-Buy Calculator Enter Quantity: Total Each: £2.99 New Discounted Total: £2.99 Savings: – 🔥 The Only Clickable Wound Tracker for Warhammer 40K Tired of losing track of wounds mid-game? This is the ONLY clickable wound tracker on the market – designed to lock each wound in place so nothing shifts when you pick it up or adjust your models. ✅ Why You'll Love It: 🔒 Secure click-to-lock mechanism – no more knocked dials or lost wounds 🔢 Clear, bold numbers – easy to read at a glance 🎯 Smooth & satisfying clicks – precise control over tracking 🧱 Durable and battle-ready – built to last through heavy use 🎨 Minimalist design – complements your painted armies perfectly 🛠️ Compatible with Warhammer 40K, Kill Team, AoS & more Whether you're fighting for glory at a tournament or battling friends at home, this wound tracker gives you the accuracy and confidence every commander needs. No more guesswork. No more accidental resets. Just reliable, click-by-click tracking. const basePrice = 2.99; document.getElementById('quantity').addEventListener('input', function () { const qty = parseInt(this.value) || 1; let discount = 0; let discountPercent = ""; if (qty >= 15) { discount = 0.20; discountPercent = "20% Off"; } else if (qty >= 10) { discount = 0.15; discountPercent = "15% Off"; } else if (qty >= 5) { discount = 0.10; discountPercent = "10% Off"; } else if (qty >= 3) { discount = 0.05; discountPercent = "5% Off"; } const totalFull = basePrice * qty; const discountAmount = totalFull * discount; const totalDiscounted = totalFull - discountAmount; const pricePerItem = totalDiscounted / qty; document.getElementById('pricePerItem').textContent = "£" + pricePerItem.toFixed(2); document.getElementById('totalPrice').textContent = "£" + totalDiscounted.toFixed(2); if (discount > 0) { document.getElementById('savings').textContent = "£" + discountAmount.toFixed(2) + " / " + discountPercent; } else { document.getElementById('savings').textContent = "–"; } });