I think is asked the question wrong. I am going to break this down, Barney still, so I know I am asking the right thing. This is my html: <h4>Worn Armor</h4>
<div class="body">
<table style="width:820px">
<tr>
<td></td>
<td><h5>Armor</h5></td>
<th><h5>Type</h5></th>
<th><h5>SPD Modifier</h5></th>
<th><h5>DEF Modifier</h5></th>
<th><h5>ARM Modifier</h5></th>
</tr>
<tr>
<th><input type="radio" class="sheet-use" name="attr_armor_select" value="1" checked/><span></span></th>
<td><input type="text" class="sheet-input-center-aligned" name="attr_armor_name-1" value="" placeholder="Armor Name" /></td>
<td><select name="attr_armor_type-1" class="sheet-input-center-aligned sheet-select" style="width:120px">
<option value="None">None</option>
<option value="Light">Light</option>
<option value="Medium">Medium</option>
<option value="Heavy">Heavy</option>
</select></td>
<th><input type="number" class="sheet-input-center-aligned" name="attr_armor_speed_mod-1" value="0" /></th>
<th><input type="number" class="sheet-input-center-aligned" name="attr_armor_def_mod-1" value="0" /></th>
<th><input type="number" class="sheet-input-center-aligned" name="attr_armor_arm_mod-1" value="0" /></th>
</tr>
<tr>
<th><input type="radio" class="sheet-use" name="attr_armor_select" value="2" /><span></span></th>
<td><input type="text" class="sheet-input-center-aligned" name="attr_armor_name-2" value="" placeholder="Armor Name" /></td>
<td><select name="attr_armor_type-2" class="sheet-input-center-aligned sheet-select" style="width:120px">
<option value="None">None</option>
<option value="Light">Light</option>
<option value="Medium">Medium</option>
<option value="Heavy">Heavy</option>
</select></td>
<th><input type="number" class="sheet-input-center-aligned" name="attr_armor_speed_mod-2" value="0" /></th>
<th><input type="number" class="sheet-input-center-aligned" name="attr_armor_def_mod-2" value="0" /></th>
<th><input type="number" class="sheet-input-center-aligned" name="attr_armor_arm_mod-2" value="0" /></th>
</tr>
</table>
What I want is when the radio button is checked, the sheet worker applies @{armor_speed_mod-1}, @{armor_def_mod-1}, and @{armor_def_mod-1}, or the @{armor_speed_mod-2}, @{armor_def_mod-2}, and @{armor_def_mod-2} attributes to the @{worn_armor_speed}, @{worn_armor_def} and @{worn_armor_arm} attributes, respectively. So, if I hit the radio button next to Armor-1, then Armor-1's speed, defense and armor modifiers are applied. When I hit the radio button next to Armor-2, the next set of armor modifiers are applied.