Adding gang.getOtherGangInformation() function. Rebalancing

This commit is contained in:
danielyxie
2018-10-24 20:26:53 -05:00
parent 910fa6d0a6
commit e0df6207c1
6 changed files with 79 additions and 35 deletions
+27
View File
@@ -56,6 +56,33 @@ getGangInformation
wantedLevelGainRate: Wanted level gained/lost per second (negative for losses)
}
getOtherGangInformation
-----------------------
.. js:function:: getOtherGangInformation()
Get territory and power information about all gangs
:returns: An object with information about all gangs
The object has the following structure::
{
"Slum Snakes" : {
power: Slum Snakes' power
territory: Slum Snakes' territory, in decimal form
},
"Tetrads" : {
power: ...
territory: ...
},
"The Syndicate" : {
power: ...
territory: ...
},
... (for all six gangs)
}
getMemberInformation
--------------------