File tree Expand file tree Collapse file tree 2 files changed +26
-2
lines changed Expand file tree Collapse file tree 2 files changed +26
-2
lines changed Original file line number Diff line number Diff line change 84
84
" demonlord" ,
85
85
" ose" ,
86
86
" foundry-chromatic-dungeons" ,
87
- " degenesis"
87
+ " degenesis" ,
88
+ " ffd20"
88
89
],
89
90
"relationships" : {
90
91
"systems" : [
175
176
"compatibility" : {
176
177
"verified" : " 0.5.1"
177
178
}
179
+ },
180
+ {
181
+ "id" : " ffd20" ,
182
+ "type" : " system" ,
183
+ "manifest" : " https://github.com/Ritsuna/Foundry_FFD20/blob/master/system.json" ,
184
+ "compatibility" : {
185
+ "verified" : " 10.1.7"
186
+ }
178
187
}
179
188
]
180
189
},
184
193
"download" : " https://github.com/League-of-Foundry-Developers/fvtt-module-lmrtfy/releases/download/v3.00/module.zip" ,
185
194
"changelog" : " https://github.com/League-of-Foundry-Developers/fvtt-module-lmrtfy/releases" ,
186
195
"bugs" : " https://github.com/League-of-Foundry-Developers/fvtt-module-lmrtfy/issues"
187
- }
196
+ }
Original file line number Diff line number Diff line change @@ -229,6 +229,21 @@ class LMRTFY {
229
229
LMRTFY . abilityModifiers = LMRTFY . parseAbilityModifiers ( ) ;
230
230
LMRTFY . canFailChecks = game . settings . get ( 'lmrtfy' , 'showFailButtons' ) ; // defaulted to false due to system
231
231
break ;
232
+
233
+ case 'ffd20' :
234
+ LMRTFY . saveRollMethod = 'rollSavingThrow' ;
235
+ LMRTFY . abilityRollMethod = 'rollAbilityTest' ;
236
+ LMRTFY . skillRollMethod = 'rollSkill' ;
237
+ LMRTFY . abilities = CONFIG . FFD20 . abilities ;
238
+ LMRTFY . skills = CONFIG . FFD20 . skills ;
239
+ LMRTFY . saves = CONFIG . FFD20 . savingThrows ;
240
+ LMRTFY . normalRollEvent = { shiftKey : false , altKey : false , ctrlKey : false } ;
241
+ LMRTFY . specialRolls = { 'initiative' : true , 'deathsave' : false , 'perception' : false } ;
242
+ LMRTFY . abilityAbbreviations = CONFIG . abilitiesShort ;
243
+ LMRTFY . modIdentifier = 'mod' ;
244
+ LMRTFY . abilityModifiers = LMRTFY . parseAbilityModifiers ( ) ;
245
+ LMRTFY . canFailChecks = game . settings . get ( 'lmrtfy' , 'showFailButtons' ) ; // defaulted to false due to system
246
+ break ;
232
247
233
248
default :
234
249
console . error ( 'LMRFTY | Unsupported system detected' ) ;
You can’t perform that action at this time.
0 commit comments