zenno/race/carryover: stat threshold modifier

This commit is contained in:
2026-08-26 18:54:25 -04:00
parent 6ef2a190cd
commit 206fee797c
+5 -1
View File
@@ -255,6 +255,10 @@
<option value={per}>{per > 0 ? `Uphill +${per}` : per < 0 ? `Downhill ${per}` : 'Flat'}</option>
{/each}
</select>
<div class="col-span-full mx-2 mb-4 flex gap-4">
<label for="threshMod" class="my-auto flex-1">Track Threshold Mod</label>
<input type="number" id="threshMod" bind:value={threshMod} min="1.0" max="1.2" step="0.025" class="my-auto flex-1" />
</div>
</div>
<div class="mb-auto flex w-full max-w-4xl flex-col rounded-md text-center shadow-md ring md:col-span-6">
@@ -366,7 +370,7 @@
</table>
{/snippet}
<div class="mx-auto mt-8 grid max-w-4xl grid-cols-1 gap-8 md:grid-cols-2">
{@render seggsTable(slope < 0 && allowDAM ? 'Fastest Speed (Downhill)' : 'Fastest Speed', seggs[1])}
{@render seggsTable('Fastest Speed', seggs[1])}
{@render seggsTable('Slowest Speed', seggs[0])}
</div>