Boolean modifier

From Kolmafia
Revision as of 19:55, 6 March 2010 by imported>StDoodle
Jump to navigation Jump to search



Function Syntax

boolean boolean_modifier(string str )

int boolean_modifier(item it ,string str )

  • it is the (optional) item in question
  • str is the modifier name

Accesses fields of your current modifiers for all of your current equipment and effects. This is the same mechanism that lets mafia decide whether you can adventure underwater, or how many songs you can keep in your head.

Here is the current list of fields you can inquire about:
Softcore Only, Single Equip, Never Fumble, Weakens Monster, Free Pull, Variable, Nonstackable Watch, Cold Immunity, Hot Immunity, Sleaze Immunity, Spooky Immunity, Stench Immunity, Cold Vulnerability, Hot Vulnerability, Sleaze Vulnerability, Spooky Vulnerability, Stench Vulnerability, Moxie Controls MP, Moxie May Control MP, Four Songs, Additional Song, Adventure Underwater, Underwater Familiar

Simple Example

Tells you if you can adventure underwater or not.

if(!(boolean_modifier("Adventure Underwater"))||!(boolean_modifier("Underwater Familiar"))) {
   print("You can't adventure underwater. Either you won't be able to breathe, or your familiar won't.","red");
   exit;
}
print("You can adventure underwater.")


See Also

numeric_modifier()