UNPKG
@galaxyops/character-sheet-contracts
Version:
latest (0.1.0)
0.1.0
0.0.2
0.0.1
github.com/hxtree/galaxyops
hxtree/galaxyops
@galaxyops/character-sheet-contracts
/
src
/
types
/
gauges.ts
13 lines
(9 loc)
•
207 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
export
type
Gauge
= {
current
:
number
;
max
:
number
;
// stat bonus are computed at runtime
};
export
type
Life
=
Gauge
;
export
type
Drive
=
Gauge
;
// also called Stamina?
export
type
Spirit
=
Gauge
;