Release Creation / build (release) Failing after 1m32s
- VermineTotemDice : influence Humain/Adapté (+1D/-1D par domaine, règles p. 121), gains/pertes via Instincts/Interdits avec limites (3D/totem, 5D total) et règles d'échange. - roll.mjs applique l'influence selon le Totem dominant (au lieu de l'ancienne logique basée sur identity.totem). - Dialogue TotemDiceDialog (instinct Humain/autre totem, interdit Humain, acte grave ±2D) + bouton et ligne d'influence sur la fiche personnage. - Dés de Totem gagnés en cas d'échec à l'apprentissage Dé d'Évolution (dés dépensés, garde capacité vide). - Couleur de texte @color-text-light-2 assombrie (#c9e0c0 → #3f9b55) pour la lisibilité dans tous les dialogues. fix: robustesse et visibilité des évolutions - buyEvolutionDialog : n'efface les Dés d'Évolution que si l'item est créé. - Flag mutation éditable sur la fiche item evolution + badge Adaptation/Mutation dans la liste du personnage. - loseDie : applique aussi la limite totale de 5 dés au gain Adapté. - Case "acte grave" conservée entre les rendus du dialogue.
153 lines
3.4 KiB
Plaintext
153 lines
3.4 KiB
Plaintext
@import "../variables";
|
|
@import "../utilities";
|
|
|
|
.system-vermine2047 .vermine2047.actor.community {
|
|
.char-header {
|
|
.background-image(url("@{ui-path}/barre_haut.webp"), no-repeat, 100% 100%, right top);
|
|
max-height: 130px;
|
|
|
|
.community-portrait {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.char-name,
|
|
.char-vermine2047 {
|
|
border-bottom: none;
|
|
line-height: 2rem;
|
|
}
|
|
|
|
.char-vermine2047 {
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.profile,
|
|
.origin,
|
|
.level,
|
|
.population {
|
|
width: 100%;
|
|
}
|
|
|
|
input[type="text"] {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.level input,
|
|
.population input {
|
|
width: 60px;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
.community-section {
|
|
padding: 8px;
|
|
border: 1px solid @color-border-dark-4;
|
|
background: fade(@color-chitin-dark, 20%);
|
|
|
|
h3 {
|
|
font-family: "DistressBlack", sans-serif;
|
|
text-transform: uppercase;
|
|
font-size: @font-size-13;
|
|
color: @theme-color-dark;
|
|
margin: 0 0 8px;
|
|
text-align: left;
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
|
|
.community-linked-group {
|
|
display: flex;
|
|
gap: 6px;
|
|
margin-bottom: 8px;
|
|
padding: 6px 8px;
|
|
border: 1px dashed @color-hemolymph;
|
|
background: fade(@color-hemolymph, 8%);
|
|
|
|
.label {
|
|
font-family: "DistressBlack", sans-serif;
|
|
text-transform: uppercase;
|
|
font-size: @font-size-11;
|
|
color: @color-text-light-2;
|
|
}
|
|
}
|
|
|
|
.community-size-info {
|
|
margin: 6px 0 0;
|
|
font-size: @font-size-11;
|
|
color: @color-text-light-0;
|
|
opacity: 0.85;
|
|
}
|
|
|
|
.community-warning {
|
|
margin: 6px 0 0;
|
|
padding: 4px 8px;
|
|
font-size: @font-size-11;
|
|
font-weight: 700;
|
|
color: @color-hemolymph;
|
|
background: fade(@color-hemolymph, 12%);
|
|
border: 1px solid @color-hemolymph;
|
|
}
|
|
|
|
.community-hint {
|
|
margin: 0;
|
|
font-size: @font-size-11;
|
|
font-style: italic;
|
|
color: @color-text-light-0;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
// Jauges de Domaines
|
|
.gauge {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
padding: 6px;
|
|
border: 1px solid @color-border-dark-4;
|
|
border-left: 4px solid @color-border-dark-4;
|
|
|
|
label {
|
|
font-family: "DistressBlack", sans-serif;
|
|
text-transform: uppercase;
|
|
font-size: @font-size-11;
|
|
color: @color-text-light-2;
|
|
}
|
|
|
|
input[type="number"] {
|
|
width: 48px;
|
|
text-align: center;
|
|
padding: 2px;
|
|
}
|
|
|
|
.gauge-value {
|
|
font-family: "DistressBlack", sans-serif;
|
|
font-size: @font-size-16;
|
|
color: @color-text-light-0;
|
|
}
|
|
|
|
.gauge-state {
|
|
font-family: "Roboto", sans-serif;
|
|
font-size: @font-size-11;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
&.crisis { border-left-color: @color-hemolymph; .gauge-state { color: @color-hemolymph; } }
|
|
&.low { border-left-color: @color-honeycomb; .gauge-state { color: @color-honeycomb; } }
|
|
&.stable { border-left-color: @color-acid-green; .gauge-state { color: @color-acid-green; } }
|
|
&.opulent { border-left-color: @theme-color-accent; .gauge-state { color: @theme-color-accent; } }
|
|
}
|
|
|
|
.morale-level {
|
|
font-family: "Roboto", sans-serif;
|
|
font-size: @font-size-12;
|
|
font-weight: 700;
|
|
|
|
&.high { color: @color-acid-green; }
|
|
&.normal { color: @color-text-light-0; }
|
|
&.low { color: @color-honeycomb; }
|
|
&.crisis { color: @color-hemolymph; }
|
|
}
|
|
}
|