Update anger_level.json (#175)

Updated the anger_level.json

"default_annoyingness" can be a float, int, or string, and the warden is currently using an integer so I've made a change so this will use a "number" instead of a "string" for its value type as it's more flexible.

Also added a missing warden argument called "default_projectile_annoyingness": 35

Added some documentation for the above.
This commit is contained in:
StealthyX
2023-05-12 05:35:24 -04:00
committed by GitHub
parent 828c19b800
commit f82955035c

View File

@@ -28,10 +28,16 @@
}, },
"default_annoyingness": { "default_annoyingness": {
"title": "Default Annoyingness", "title": "Default Annoyingness",
"type": "string", "type": "number",
"default": "0", "default": 0,
"description": "The default amount of annoyingness for any given nuisance. Specifies how much to raise anger level on each provocation" "description": "The default amount of annoyingness for any given nuisance. Specifies how much to raise anger level on each provocation"
}, },
"default_projectile_annoyingness": {
"title": "Default Projectile Annoyingness",
"type": "number",
"default": 0,
"description": "The default amount of annoyingness for projectile nuisance. Specifies how much to raise anger level on each provocation"
},
"max_anger": { "max_anger": {
"title": "Maximum Anger", "title": "Maximum Anger",
"type": "integer", "type": "integer",