forked from CleverRaven/Cataclysm-DDA
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
port _ALPHA and INT_SLIME mutations to json (CleverRaven#72226)
* port _ALPHA and INT_SLIME mutations to json * fix wrong perception name
- Loading branch information
1 parent
dbd9b3e
commit 54f7cba
Showing
4 changed files
with
16 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[ | ||
{ | ||
"type": "jmath_function", | ||
"id": "alpha_stat_bonus", | ||
"//": "the smaller your stat, the bigger the bonus, up to 16, plus 2 of the stat above", | ||
"//_0": "your current base stat, like `u_val('intelligence_base')`", | ||
"num_args": 1, | ||
"return": "_0 < 16 ? (10)+(_0/2)-_0 : 2" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters