Ajout aide + effets

This commit is contained in:
2022-11-23 21:34:51 +01:00
parent 985aba0318
commit fe1cda67c4
19 changed files with 244 additions and 99 deletions

View File

@ -260,7 +260,8 @@ BOL.featureSubtypes = {
"flaw" : "BOL.featureSubtypes.flaw",
"language" : "BOL.featureSubtypes.language",
"godsfaith" : "BOL.featureSubtypes.gods",
"fightoption" : "BOL.featureSubtypes.fightOption"
"fightoption" : "BOL.featureSubtypes.fightOption",
"boleffect": "BOL.featureSubtypes.effect",
}
BOL.fightOptionTypes = {
@ -310,4 +311,20 @@ BOL.creatureSize = {
"colossal": "BOL.size.colossal"
}
BOL.bolEffectModifier = {
"-8": "-8",
"-6": "-6",
"-4": "-4",
"-2": "-2",
"-1": "-1",
"1B": "1B",
"2B": "2B",
"1M": "1M",
"2M": "2M",
"+1": "+1",
"+2": "+2",
"+4": "+4",
"+6": "+6",
"+8": "+8",
}
BOL.debug = false;