forked from public/bol
Start weapon stuff
This commit is contained in:
@ -185,6 +185,9 @@ export class BoLActorSheet extends ActorSheet {
|
||||
case "aptitude" :
|
||||
BoLRoll.aptitudeCheck(this.actor, actorData, dataset, event);
|
||||
break;
|
||||
case "weapon":
|
||||
console.log("ROLL WEAPON !!!"); // TODO
|
||||
break;
|
||||
default : break;
|
||||
}
|
||||
}
|
||||
|
@ -9,5 +9,15 @@ export const registerSystemSettings = function() {
|
||||
type: Boolean,
|
||||
onChange: lang => window.location.reload()
|
||||
});
|
||||
|
||||
game.settings.register("bol", "rollArmor", {
|
||||
name: "Effectuer des jets pour les armures",
|
||||
hint: "Effectue un jet de dés pour les armures (valeur fixe si désactivé)",
|
||||
scope: "world",
|
||||
config: true,
|
||||
default: true,
|
||||
type: Boolean,
|
||||
onChange: lang => window.location.reload()
|
||||
});
|
||||
|
||||
};
|
||||
|
Reference in New Issue
Block a user