Also improved the display of features and generally iterated on their manipulation. Characters now fetch the relevant effects directly when making a calculation, simplifying almost everything. Effects now store a reference to their source if they have one. Effect names are now optional, they can be fetched from the source's name if the source exists.
4 lines
144 B
JavaScript
4 lines
144 B
JavaScript
Schemas.Skill = new SimpleSchema({
|
|
//attribute name that this skill used as base mod for roll
|
|
ability: { type: String, defaultValue: "" },
|
|
}); |