Fix bio + initiative
This commit is contained in:
@@ -413,10 +413,10 @@ i.fvtt-ftl-nomad {
|
|||||||
background-color: var(--color-light-1);
|
background-color: var(--color-light-1);
|
||||||
}
|
}
|
||||||
.fvtt-ftl-nomad .character-biography prose-mirror.inactive {
|
.fvtt-ftl-nomad .character-biography prose-mirror.inactive {
|
||||||
min-height: 40px;
|
min-height: 16rem;
|
||||||
}
|
}
|
||||||
.fvtt-ftl-nomad .character-biography prose-mirror.active {
|
.fvtt-ftl-nomad .character-biography prose-mirror.active {
|
||||||
min-height: 150px;
|
min-height: 16rem;
|
||||||
}
|
}
|
||||||
.fvtt-ftl-nomad .character-biography .field-label {
|
.fvtt-ftl-nomad .character-biography .field-label {
|
||||||
margin-left: 8px;
|
margin-left: 8px;
|
||||||
|
|||||||
@@ -31,6 +31,13 @@ Hooks.once("init", function () {
|
|||||||
utils: FTLNomadUtils,
|
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.documentClass = documents.FTLNomadActor
|
||||||
CONFIG.Actor.dataModels = {
|
CONFIG.Actor.dataModels = {
|
||||||
character: models.FTLNomadCharacter,
|
character: models.FTLNomadCharacter,
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -219,10 +219,10 @@
|
|||||||
.character-biography {
|
.character-biography {
|
||||||
background-color: var(--color-light-1);
|
background-color: var(--color-light-1);
|
||||||
prose-mirror.inactive {
|
prose-mirror.inactive {
|
||||||
min-height: 40px;
|
min-height: 16rem;
|
||||||
}
|
}
|
||||||
prose-mirror.active {
|
prose-mirror.active {
|
||||||
min-height: 150px;
|
min-height: 16rem;
|
||||||
}
|
}
|
||||||
.field-label {
|
.field-label {
|
||||||
margin-left: 8px;
|
margin-left: 8px;
|
||||||
|
|||||||
@@ -23,12 +23,12 @@
|
|||||||
|
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>{{localize "FTLNOMAD.Label.description"}}</legend>
|
<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>
|
||||||
|
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>{{localize "FTLNOMAD.Label.notes"}}</legend>
|
<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>
|
</fieldset>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
Reference in New Issue
Block a user