GANG: Updates to Docs, UI, API (#773)

API Changes:
Adds ns.gang.getRecruitsAvailable: Gets the number of additional gang members that can currently be recruited
Adds ns.gang.respectForNextRecruit: Gets the respect threshold for recruiting the next gang member
Adds ns.gang.renameMember: Renames a gang member

Plus many doc and ui improvements
This commit is contained in:
missymae#2783
2023-09-05 16:07:19 -06:00
committed by GitHub
parent bec737a253
commit 8d3f2bd750
24 changed files with 367 additions and 93 deletions
+3
View File
@@ -213,10 +213,13 @@ const gang = {
createGang: RamCostConstants.GangApiBase / 4,
inGang: RamCostConstants.GangApiBase / 4,
getMemberNames: RamCostConstants.GangApiBase / 4,
renameMember: 0,
getGangInformation: RamCostConstants.GangApiBase / 2,
getOtherGangInformation: RamCostConstants.GangApiBase / 2,
getMemberInformation: RamCostConstants.GangApiBase / 2,
canRecruitMember: RamCostConstants.GangApiBase / 4,
getRecruitsAvailable: RamCostConstants.GangApiBase / 4,
respectForNextRecruit: RamCostConstants.GangApiBase / 4,
recruitMember: RamCostConstants.GangApiBase / 2,
getTaskNames: RamCostConstants.GangApiBase / 4,
getTaskStats: RamCostConstants.GangApiBase / 4,