Fix bio + initiative
This commit is contained in:
@@ -413,10 +413,10 @@ i.fvtt-ftl-nomad {
|
||||
background-color: var(--color-light-1);
|
||||
}
|
||||
.fvtt-ftl-nomad .character-biography prose-mirror.inactive {
|
||||
min-height: 40px;
|
||||
min-height: 16rem;
|
||||
}
|
||||
.fvtt-ftl-nomad .character-biography prose-mirror.active {
|
||||
min-height: 150px;
|
||||
min-height: 16rem;
|
||||
}
|
||||
.fvtt-ftl-nomad .character-biography .field-label {
|
||||
margin-left: 8px;
|
||||
|
||||
@@ -31,6 +31,13 @@ Hooks.once("init", function () {
|
||||
utils: FTLNomadUtils,
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
// Set an initiative formula for the system
|
||||
CONFIG.Combat.initiative = {
|
||||
formula: "2d6 + @skills.combat.value",
|
||||
decimals: 1
|
||||
};
|
||||
|
||||
CONFIG.Actor.documentClass = documents.FTLNomadActor
|
||||
CONFIG.Actor.dataModels = {
|
||||
character: models.FTLNomadCharacter,
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -219,10 +219,10 @@
|
||||
.character-biography {
|
||||
background-color: var(--color-light-1);
|
||||
prose-mirror.inactive {
|
||||
min-height: 40px;
|
||||
min-height: 16rem;
|
||||
}
|
||||
prose-mirror.active {
|
||||
min-height: 150px;
|
||||
min-height: 16rem;
|
||||
}
|
||||
.field-label {
|
||||
margin-left: 8px;
|
||||
|
||||
@@ -23,12 +23,12 @@
|
||||
|
||||
<fieldset>
|
||||
<legend>{{localize "FTLNOMAD.Label.description"}}</legend>
|
||||
{{formInput systemFields.description enriched=enrichedDescription value=system.description name="system.description" toggled=true}}
|
||||
{{formInput systemFields.description enriched=enrichedDescription value=system.description name="system.description" toggled=true class="character-description"}}
|
||||
</fieldset>
|
||||
|
||||
<fieldset>
|
||||
<legend>{{localize "FTLNOMAD.Label.notes"}}</legend>
|
||||
{{formInput systemFields.notes enriched=enrichedNotes value=system.notes name="system.notes" toggled=true}}
|
||||
{{formInput systemFields.notes enriched=enrichedNotes value=system.notes name="system.notes" toggled=true class="character-notes"}}
|
||||
</fieldset>
|
||||
</div>
|
||||
</section>
|
||||
Reference in New Issue
Block a user