update style add TMS property

This commit is contained in:
Vick Scarlet
2021-09-08 10:43:01 +08:00
parent e18c730d1e
commit 4c0fc07ff8
6 changed files with 34 additions and 20 deletions

View File

@@ -122,6 +122,9 @@ class Life {
exclusive(talents, exclusive) {
return this.#talent.exclusive(talents, exclusive);
}
get times() { return this.#property?.get(this.#property.TYPES.TMS) || 0; }
set times(v) { return this.#property?.set(this.#property.TYPES.TMS, v) || 0; }
}
export default Life;