RC-103 | Add Access to the rest of the item types that require it
This commit is contained in:
parent
4ccfc03e59
commit
43fe433900
5 changed files with 84 additions and 7 deletions
|
|
@ -116,6 +116,24 @@ export class ArmourData extends CommonItemData {
|
|||
value: this.quantity,
|
||||
min: 0,
|
||||
},
|
||||
{
|
||||
id: `access`,
|
||||
type: `dropdown`,
|
||||
label: `Access`,
|
||||
path: `system.access`,
|
||||
value: this.access,
|
||||
limited: false,
|
||||
options: [
|
||||
{
|
||||
label: `RipCrypt.common.empty`,
|
||||
value: ``,
|
||||
},
|
||||
...gameTerms.Access.map(opt => ({
|
||||
label: `RipCrypt.common.access.${opt}`,
|
||||
value: opt,
|
||||
})),
|
||||
],
|
||||
},
|
||||
{
|
||||
id: `location`,
|
||||
type: `string-set`,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue