-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootstrap.1st
69 lines (51 loc) · 2.19 KB
/
bootstrap.1st
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- This file contains the specifications of all things that are automatically
added to every character in some way.
-->
<document signature="Hero Lab Structure">
<!-- The "enmasse" elements identify groups of things (identified via a tagexpr)
that should be automatically added to every new character by Hero Lab. For
example, every character starts with the standard set of attributes for the
game system, along with a variety of other behaviors, sometimes including
skills, resources, or whatever.
-->
<!-- Add all attributes to the actor -->
<enmasse><![CDATA[
component.Attribute
]]></enmasse>
<!-- Add all skills to the actor -->
<enmasse><![CDATA[
component.Skill
]]></enmasse>
<!-- Add all derived traits to the actor -->
<enmasse><![CDATA[
component.Derived
]]></enmasse>
<!-- Add all mechanics things to the actor -->
<enmasse><![CDATA[
component.Mechanics
]]></enmasse>
<!-- Add all things designated explicitly as a bootstrap to the actor -->
<enmasse><![CDATA[
Helper.Bootstrap
]]></enmasse>
<!-- The "bootstrap" elements identify individual things that should be automatically
added to every new character by Hero Lab.
-->
<!-- And one personal info pick -->
<bootstrap index="10" thing="mscPerson"/>
<!-- Add the "unarmed attack" pick -->
<bootstrap index="20" thing="wpUnarmed"/>
<!-- The "autoadd" elements identify individual things that should be automatically
added to every new character by Hero Lab. The key difference from "bootstrap"
entries is that each "autoadd" is added through a specified portal, thereby
allowing the selection to be subsequently changed or deleted by the user. This
is the ideal method for pre-selecting suitable defaults for choosers or
pre-populating a table with one or more options (e.g. auto-adding a journal
entry or character image for the user).
-->
<!-- We start with a single user image added -->
<autoadd thing="mscUserImg" portal="peImages"/>
<!-- And a single journal entry -->
<autoadd thing="journal" portal="journal"/>
</document>