12345678910111213141516171819202122232425262728293031 |
- <div class="title">{{ "life.hitpoints" | translate }}</div>
- <div class="value-row t-2 b-15">
- <value-box
- [isInput]="true"
- [(ngModel)]="maxHitPoints"
- [label]="'life.max'"
- (change)="checkValidity()"
- ></value-box>
- <value-box
- [isInput]="true"
- [(ngModel)]="currentHitPoints"
- [label]="'life.current'"
- (change)="checkValidity()"
- ></value-box>
- <value-box
- [isInput]="true"
- [(ngModel)]="temporaryHitPoints"
- [label]="'life.temporary'"
- ></value-box>
- </div>
- <hit-dice style="margin-top: 5rem" (setHitDice)="setHitDice($event)"></hit-dice>
- <div class="vertical-buttons bottom">
- <ui-button [color]="'green'" [width]="'w20'" (click)="close('update')">
- Anpassen
- </ui-button>
- <ui-button [color]="'red'" [width]="'w20'" (click)="close('cancel')">
- Löschen
- </ui-button>
- </div>
|