Skip to content

Commit

Permalink
adjust hall of heroes npc behavior to add items
Browse files Browse the repository at this point in the history
  • Loading branch information
seiyria committed Sep 18, 2024
1 parent 59826be commit 1da255c
Showing 1 changed file with 30 additions and 7 deletions.
37 changes: 30 additions & 7 deletions mods/BaseGameContent.rairmod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "BaseGameContent",
"author": "Seiyria",
"version": 1,
"savedAt": 1726663407579
"savedAt": 1726664069666
},
"npcs": [
{
Expand Down Expand Up @@ -160803,11 +160803,17 @@
"id": 229,
"name": "Seiyria",
"properties": {
"message": "Hello, traveller, and welcome to the realms!",
"body": "Antanian Tunic",
"leftHand": "Lantern",
"message": "Hello, traveller, and welcome to the realms! I hope you enjoy your stay in this tumultous place. There's always something to do, like sweeping bugs under the rug or illuminating the depths of the code tunnels.",
"rightHand": "Broom",
"tag": "Hall of Heroes NPC"
},
"propertytypes": {
"body": "string",
"leftHand": "string",
"message": "string",
"rightHand": "string",
"tag": "string"
},
"rotation": 0,
Expand Down Expand Up @@ -2112514,29 +2112520,46 @@
"_id": "01916bde-d3d8-7cc5-8172-e62655a52057"
},
{
"_id": "01916bde-d3d8-7cc5-8172-eabec85f0928",
"tag": "Hall of Heroes NPC",
"hostility": "Never",
"name": "",
"affiliation": "Hall of Heroes",
"hostility": "Never",
"allegiance": "Adventurers",
"alignment": "neutral",
"level": 50,
"hp": {
"min": 10000000000,
"max": 10000000000
},
"level": 50,
"mp": {
"min": 10000,
"max": 10000
},
"otherStats": {},
"usableSkills": [],
"maxWanderRandomlyDistance": 0,
"noLeash": false,
"items": {
"equipment": {
"armor": "Antanian Tunic"
}
},
"dialog": {
"keyword": {}
},
"baseEffects": [],
"behaviors": [
{
"type": "hallofheroes",
"props": [
"message"
"message",
"body",
"leftHand",
"rightHand"
]
}
],
"_id": "01916bde-d3d8-7cc5-8172-eabec85f0928"
]
},
{
"tag": "Diplomat",
Expand Down

0 comments on commit 1da255c

Please sign in to comment.