Add game system for skills

This commit is contained in:
LeRatierBretonnien 2024-08-07 23:08:46 +02:00
parent 534fcb04fb
commit 6597334682
9 changed files with 24 additions and 21 deletions

View File

@ -1 +1 @@
MANIFEST-000068
MANIFEST-000072

View File

@ -1,8 +1,3 @@
2024/08/07-17:16:18.797577 7f33982006c0 Recovering log #66
2024/08/07-17:16:18.808374 7f33982006c0 Delete type=3 #64
2024/08/07-17:16:18.808471 7f33982006c0 Delete type=0 #66
2024/08/07-17:26:53.698667 7f33978006c0 Level-0 table #71: started
2024/08/07-17:26:53.698733 7f33978006c0 Level-0 table #71: 0 bytes OK
2024/08/07-17:26:53.705983 7f33978006c0 Delete type=0 #69
2024/08/07-17:26:53.706219 7f33978006c0 Manual compaction at level-0 from '!items!1HevhbCbvMonyQXe' @ 72057594037927935 : 1 .. '!items!yRIFroc5VC9Oj3qY' @ 0 : 0; will stop at (end)
2024/08/07-17:26:53.706260 7f33978006c0 Manual compaction at level-1 from '!items!1HevhbCbvMonyQXe' @ 72057594037927935 : 1 .. '!items!yRIFroc5VC9Oj3qY' @ 0 : 0; will stop at (end)
2024/08/07-23:07:46.117612 7f33982006c0 Recovering log #70
2024/08/07-23:07:46.128384 7f33982006c0 Delete type=3 #68
2024/08/07-23:07:46.128478 7f33982006c0 Delete type=0 #70

View File

@ -1,8 +1,8 @@
2024/08/07-16:51:16.599301 7f33996006c0 Recovering log #62
2024/08/07-16:51:16.610580 7f33996006c0 Delete type=3 #60
2024/08/07-16:51:16.610673 7f33996006c0 Delete type=0 #62
2024/08/07-17:16:03.322418 7f33978006c0 Level-0 table #67: started
2024/08/07-17:16:03.322491 7f33978006c0 Level-0 table #67: 0 bytes OK
2024/08/07-17:16:03.329046 7f33978006c0 Delete type=0 #65
2024/08/07-17:16:03.356030 7f33978006c0 Manual compaction at level-0 from '!items!1HevhbCbvMonyQXe' @ 72057594037927935 : 1 .. '!items!yRIFroc5VC9Oj3qY' @ 0 : 0; will stop at (end)
2024/08/07-17:16:03.395552 7f33978006c0 Manual compaction at level-1 from '!items!1HevhbCbvMonyQXe' @ 72057594037927935 : 1 .. '!items!yRIFroc5VC9Oj3qY' @ 0 : 0; will stop at (end)
2024/08/07-17:16:18.797577 7f33982006c0 Recovering log #66
2024/08/07-17:16:18.808374 7f33982006c0 Delete type=3 #64
2024/08/07-17:16:18.808471 7f33982006c0 Delete type=0 #66
2024/08/07-17:26:53.698667 7f33978006c0 Level-0 table #71: started
2024/08/07-17:26:53.698733 7f33978006c0 Level-0 table #71: 0 bytes OK
2024/08/07-17:26:53.705983 7f33978006c0 Delete type=0 #69
2024/08/07-17:26:53.706219 7f33978006c0 Manual compaction at level-0 from '!items!1HevhbCbvMonyQXe' @ 72057594037927935 : 1 .. '!items!yRIFroc5VC9Oj3qY' @ 0 : 0; will stop at (end)
2024/08/07-17:26:53.706260 7f33978006c0 Manual compaction at level-1 from '!items!1HevhbCbvMonyQXe' @ 72057594037927935 : 1 .. '!items!yRIFroc5VC9Oj3qY' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@ -3,7 +3,7 @@
"title": "Rolemaster FRP System",
"description": "The Rolemaster FRP system for FoundryVTT.",
"manifest": "https://www.uberwald.me/gitea/public/fvtt-rolemaster-frp/raw/branch/develop/system.json",
"download": "https://www.uberwald.me/gitea/public/fvtt-rolemaster-frp/archive/v12.0.8.zip",
"download": "https://www.uberwald.me/gitea/public/fvtt-rolemaster-frp/archive/v12.0.9.zip",
"authors": [
{
"name": "Cynicide",
@ -14,7 +14,7 @@
"email": ""
}
],
"version": "12.0.8",
"version": "12.0.9",
"compatibility": {
"minimum": "12",
"verified": "12"

View File

@ -313,6 +313,7 @@
"skill": {
"templates": ["base"],
"category" : "",
"game_system": "common",
"ranks": 0,
"new_ranks": {
"value": 0,

View File

@ -4,11 +4,18 @@
<h1><input name="name" type="text" value="{{item.name}}" placeholder="{{ localize 'Name' }}"/></h1>
</header>
<div class="sheet-content">
<div class="flexrow">
<div>Rank Bonus Progression
<select name="system.bonus_progression" value="{{system.bonus_progression}}" itemid="{{ item._id }}">
<select class="select-fixed-width" name="system.bonus_progression" value="{{system.bonus_progression}}" itemid="{{ item._id }}">
{{selectOptions config.rankBonusProgressionList selected=system.bonus_progression valueAttr="key" labelAttr="label"}}
</select>
</div>
<div>Game system
<select class="select-fixed-width" name="system.game_system" value="{{system.game_system}}" itemid="{{ item._id }}">
{{selectOptions config.gameSystems selected=system.game_system valueAttr="key" labelAttr="label"}}
</select>
</div>
</div>
<div>
Skill Category
<select name="system.category" class="app-stat-selector" value="{{system.category}}">