Dialogues.ts 386 B

1234567891011
  1. /// <reference path="Dialogue/CreationIntro.dl.ts" />
  2. module CharacterCreation {
  3. export let CreationIntro = CharacterCreation.rulebook.createAndAddRule({
  4. name : "Show small Intro",
  5. firstPriority : Rule.PRIORITY_HIGHEST,
  6. priority: Rule.PRIORITY_HIGHEST,
  7. code : async () => {
  8. await DialogueTrees.CreationIntro.execute();
  9. }
  10. });
  11. }