ReputationRank
Documentation for the ReputationRank asset type.
Location
NPC/Reputation/Ranks
Use in Your Files
Add this to your JSON files for IDE autocompletion and validation:
"$schema": "https://hytaledb.ginco.gg/schemas/ReputationRank.schema.json" Schema
MinValue
integer
MaxValue
integer
Attitude
stringnull
All of
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "ReputationRank.json",
"title": "ReputationRank",
"description": "ReputationRank asset type",
"type": "object",
"allOf": [
{
"$ref": "base.schema.json"
}
],
"properties": {
"MinValue": {
"type": "integer",
"default": 0
},
"MaxValue": {
"type": "integer",
"default": 0
},
"Attitude": {
"type": [
"string",
"null"
],
"title": "Attitude",
"enum": [
"Ignore",
"Hostile",
"Neutral",
"Friendly",
"Revered"
]
}
}
}