changed boons to bool since all boons go to 5 people
This commit is contained in:
parent
2a26e7f8b5
commit
c14e676029
4 changed files with 44 additions and 52 deletions
|
@ -24,26 +24,26 @@
|
|||
|
||||
<p>
|
||||
<label>
|
||||
Might:
|
||||
<InputNumber @bind-Value="_build.Might" />
|
||||
<InputCheckbox @bind-Value="_build.Might" />
|
||||
Might
|
||||
</label>
|
||||
</p>
|
||||
<p>
|
||||
<label>
|
||||
Quickness:
|
||||
<InputNumber @bind-Value="_build.Quickness" />
|
||||
<InputCheckbox @bind-Value="_build.Quickness" />
|
||||
Quickness
|
||||
</label>
|
||||
</p>
|
||||
<p>
|
||||
<label>
|
||||
Alacrity:
|
||||
<InputNumber @bind-Value="_build.Alacrity" />
|
||||
<InputCheckbox @bind-Value="_build.Alacrity" />
|
||||
Alacrity
|
||||
</label>
|
||||
</p>
|
||||
<p>
|
||||
<label>
|
||||
Heal:
|
||||
<InputNumber @bind-Value="_build.Heal" />
|
||||
<InputCheckbox @bind-Value="_build.Heal" />
|
||||
Heal
|
||||
</label>
|
||||
</p>
|
||||
|
||||
|
|
|
@ -35,10 +35,10 @@
|
|||
</td>
|
||||
<td>@build.Class.ToString()</td>
|
||||
<td>@build.EliteSpecialization.ToString()</td>
|
||||
<td>@build.Might.ToString()</td>
|
||||
<td>@build.Heal.ToString()</td>
|
||||
<td>@build.Quickness.ToString()</td>
|
||||
<td>@build.Alacrity.ToString()</td>
|
||||
<td><input type="checkbox" checked="@(build.Might)" disabled="disabled" /></td>
|
||||
<td><input type="checkbox" checked="@(build.Heal)" disabled="disabled" /></td>
|
||||
<td><input type="checkbox" checked="@(build.Quickness)" disabled="disabled" /></td>
|
||||
<td><input type="checkbox" checked="@(build.Alacrity)" disabled="disabled" /></td>
|
||||
</tr>
|
||||
}
|
||||
</table>
|
||||
|
|
|
@ -70,10 +70,10 @@
|
|||
<td>@build.BuildName</td>
|
||||
<td>@build.Class.ToString()</td>
|
||||
<td>@build.EliteSpecialization.ToString()</td>
|
||||
<td><input type="checkbox" checked="@(build.Might > 0)" disabled="true" /></td>
|
||||
<td><input type="checkbox" checked="@(build.Heal > 0)" disabled="true" /></td>
|
||||
<td><input type="checkbox" checked="@(build.Quickness > 0)" disabled="true" /></td>
|
||||
<td><input type="checkbox" checked="@(build.Alacrity > 0)" disabled="true" /></td>
|
||||
<td><input type="checkbox" checked="@(build.Might)" disabled="true" /></td>
|
||||
<td><input type="checkbox" checked="@(build.Heal)" disabled="true" /></td>
|
||||
<td><input type="checkbox" checked="@(build.Quickness)" disabled="true" /></td>
|
||||
<td><input type="checkbox" checked="@(build.Alacrity)" disabled="true" /></td>
|
||||
</tr>
|
||||
}
|
||||
</table>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue