Difference between revisions of "Skills and Effects"

From Kolmafia
Jump to navigation Jump to search
imported>Bale
(soulsauce_cost, thunder_cost, rain_cost, lightning_cost)
imported>Bale
(get_moods)
 
(One intermediate revision by the same user not shown)
Line 3: Line 3:
 
{{Flink|int [effect]|my_effects|desc=Returns an array of the character's current effects and their durations.}}
 
{{Flink|int [effect]|my_effects|desc=Returns an array of the character's current effects and their durations.}}
 
{{Flink|int|mp_cost|skill|desc=Returns the MP cost of the specified skill (0 for passives); accounts for current MP reduction effects.}}
 
{{Flink|int|mp_cost|skill|desc=Returns the MP cost of the specified skill (0 for passives); accounts for current MP reduction effects.}}
 +
{{Flink|int|adv_cost|skill|desc=Returns the adventure cost for using a skill.}}
 
{{Flink|int|soulsauce_cost|skill|desc=Returns the soulsauce cost of the specified {{kolwiki|Soul Saucery}} skill.}}
 
{{Flink|int|soulsauce_cost|skill|desc=Returns the soulsauce cost of the specified {{kolwiki|Soul Saucery}} skill.}}
 
{{Flink|int|thunder_cost|skill|desc=Returns the dB cost of the specified {{kolwiki|Heavy_Rains|Thunder}} skill.}}
 
{{Flink|int|thunder_cost|skill|desc=Returns the dB cost of the specified {{kolwiki|Heavy_Rains|Thunder}} skill.}}
Line 11: Line 12:
 
{{Flink|int|turns_per_cast|skill|desc=Returns the number of turns each cast of the specified skill will give you.}}
 
{{Flink|int|turns_per_cast|skill|desc=Returns the number of turns each cast of the specified skill will give you.}}
 
{{Flink|boolean|use_skill|int|skill|{{opt|string}}|desc=Casts a given skill as many times as specified, optionally on a specified target (as applicable).}}
 
{{Flink|boolean|use_skill|int|skill|{{opt|string}}|desc=Casts a given skill as many times as specified, optionally on a specified target (as applicable).}}
 +
{{Flink|string [int]|get_moods|desc=Returns a list of all moods defined for this character.}}
 
{{Flink|string|last_skill_message|desc=Returns message that KoL reports in the event of error.}}
 
{{Flink|string|last_skill_message|desc=Returns message that KoL reports in the event of error.}}
 
{{Flink|boolean|restore_hp|int|desc=Uses KoLmafia's current settings to restore the specified amount of HP.}}
 
{{Flink|boolean|restore_hp|int|desc=Uses KoLmafia's current settings to restore the specified amount of HP.}}

Latest revision as of 08:03, 20 November 2014

boolean have_skill( skill )

Reports if you currently have access to the specified skill.

int have_effect( effect )

Returns the number of turns your character has of the specified effect (does not cover intrinsics).

int [effect] my_effects()

Returns an array of the character's current effects and their durations.

int mp_cost( skill )

Returns the MP cost of the specified skill (0 for passives); accounts for current MP reduction effects.

int adv_cost( skill )

Returns the adventure cost for using a skill.

int soulsauce_cost( skill )

Returns the soulsauce cost of the specified Soul Saucery skill.

int thunder_cost( skill )

Returns the dB cost of the specified Thunder skill.

int rain_cost( skill )

Returns the drop cost of the specified Rain skill.

int lightning_cost( skill )

Returns the bolt cost of the specified Lightning skill.

int mana_cost_modifier()

Returns the amount of MP reduction available.

int combat_mana_cost_modifier()

Returns the amount of MP reduction available in combat.

int turns_per_cast( skill )

Returns the number of turns each cast of the specified skill will give you.

boolean use_skill( int, skill, [string] )

Casts a given skill as many times as specified, optionally on a specified target (as applicable).

string [int] get_moods()

Returns a list of all moods defined for this character.

string last_skill_message()

Returns message that KoL reports in the event of error.

boolean restore_hp( int )

Uses KoLmafia's current settings to restore the specified amount of HP.

boolean restore_mp( int )

Uses KoLmafia's current settings to restore the specified amount of MP.