ReputationGroup
Documentation for the ReputationGroup asset type.
Location
NPC/Reputation/Groups
Use in Your Files
Add this to your JSON files for IDE autocompletion and validation:
"$schema": "https://hytaledb.ginco.gg/schemas/ReputationGroup.schema.json" Schema
NPCGroups arraynull
Array items: string
InitialReputationValue
integer
All of
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "ReputationGroup.json",
"title": "ReputationGroup",
"description": "ReputationGroup asset type",
"type": "object",
"allOf": [
{
"$ref": "base.schema.json"
}
],
"properties": {
"NPCGroups": {
"type": [
"array",
"null"
],
"items": {
"type": "string"
}
},
"InitialReputationValue": {
"type": "integer",
"default": 0
}
}
}