Version 1.1.02

- Revamped equipment weight and added encumberance
- Added 'carried' flag to weapons and armour
- Moved initiative to top of combat panel
- Added psionic 'special abilities' repeating block
- Fixed bug with boon/bane and 'ask for difficulty'
- Fixed bug with equipment drag and drop KG vs. Kg
This commit is contained in:
Simon Brooke
2025-04-10 13:43:42 +01:00
parent 85d882782d
commit 5edf0d5298
4 changed files with 463 additions and 160 deletions
@@ -1914,7 +1914,7 @@ grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
.sheet-gridspan19 {
grid-column: 1 / 10;
grid-column: 1 / 9;
}
.sheet-laf-skillrow button:first-child {
@@ -2024,11 +2024,27 @@ grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
width: 100%;
}
.sheet-laf-custompower span {
.sheet-laf-specialability {
grid-template-columns: 0.05fr 1fr 0.05fr;
grid-template-rows: none;
column-gap: 5px;
width: 100%;
}
.sheet-laf-specialability textarea {
grid-column: 1 / 4;
width: 98.5%;
margin-top: 3px;
margin-bottom: 3px;
}
.sheet-laf-custompower span,
.sheet-laf-specialability span {
width: inherit;
}
.sheet-laf-custompower button {
.sheet-laf-custompower button,
.sheet-laf-specialability button {
width: 25px !important;
}
@@ -2044,7 +2060,7 @@ grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
.sheet-laf-armourlist {
grid-template-columns: 1.5fr 1fr 1.2fr 1.75fr 1.2fr 1fr 1.2fr;
grid-template-columns: 1.5fr 1fr 1.2fr 1.75fr 1.2fr 1fr 1.2fr 0.4fr;
margin-bottom: 3px;
}
@@ -2054,13 +2070,17 @@ grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
margin-bottom: 3px;
}
.sheet-laf-armourlist select {
width: 100%;
}
/* Do not know why I've had to do this but header spans just do not line up */
.sheet-laf-header-offset span:nth-child(n + 3) {
margin-left: -10px;
}
.sheet-laf-weaponlist {
grid-template-columns: 0.3fr 2fr 0.75fr 1fr 1fr 0.5fr 0.5fr 0.75fr 0.5fr 0.5fr 0.7fr;
grid-template-columns: 0.3fr 2fr 0.75fr 1fr 1fr 0.5fr 0.5fr 0.75fr 0.5fr 0.5fr 0.7fr 0.4fr;
margin-bottom: 4px;
margin-bottom: 4px;
}
@@ -2071,7 +2091,7 @@ grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
.sheet-laf-weaponlist textarea {
grid-column: 1 / 12;
grid-column: 1 / 13;
}
.sheet-laf-weaponlist select {
@@ -2082,6 +2102,10 @@ grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
width: 100% !important;
}
.sheet-laf-weaponlist div {
margin-bottom: 5px;
}
.sheet-laf-ship {
grid-template-columns: 2fr 5fr 1fr 5fr 1fr 1fr 1fr;
margin-bottom: 3px;
File diff suppressed because it is too large Load Diff
+8
View File
@@ -73,5 +73,13 @@ This is the Official Mongoose Traveller 2nd Edition Character Sheet
- Added simple Crew sub-tab to Ship, auto-calculates total salaries on Ship details
- Fixed bug where Effect was not being added to damage for Dexterity weapons
### Version 1.1.02
- Revamped equipment weight and added encumberance
- Added 'carried' flag to weapons and armour
- Moved initiative to top of combat panel
- Added psionic 'special abilities' repeating block
- Fixed bug with boon/bane and 'ask for difficulty'
- Fixed bug with equipment drag and drop KG vs. Kg
![Image](Official%20Mongoose%20Publishing%20Traveller%202nd%20Edition.png)
@@ -270,5 +270,7 @@
"2d6reroll1s-u": "2d6 reroll 1's",
"yolo-u": "YOLO",
"assign-u": "Assign",
"cancel-u": "Cancel"
"cancel-u": "Cancel",
"encumbered-u": "Encumbered",
"carrycapacity-u": "Carry Capacity"
}