-
Notifications
You must be signed in to change notification settings - Fork 4
Value and List Components
Denadan edited this page May 5, 2021
·
1 revision
Now components that contains only Single or List value (like color or flags components) declared in custom section as simple value or list not object
before:
"Custom" : {
"Flags" : { "flags" : [ "default" ] },
"Sorter" : { "Order" : 1 },
"RGBColor" : { "Color" : "red" }
}
after
"Custom" : {
"Flags" : [ "default" ],
"Sorter" : 1,
"RGBColor" : "red"
}
- Flags - List
- Color - Value(string, UIColor)
- RGBColor - Value(string, HTML code for color)
- ColorTag - Value(string, tag for color)
- TonnageAllowed - Value(int, mech tonage item can be used)
- Lootable - Value(string, item id for lootable replacement)
- InventorySorter - Value(string, sort key)
- Sorter - Value(int, sort order)