Familiar weight

From Kolmafia
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Function Syntax

int familiar_weight(familiar fam )

  • fam is the familiar type (e.g. Mosquito, not "Nos Feratu")

Returns the base weight of the specified familiar.

Code Samples

Checks to see how heavy a specified familiar is, including all weight-adjusting effects.

int fam_weight( familiar fam ) {
   return ( familiar_weight(fam) + weight_adjustment() );
}

See Also

weight_adjustment() | my_familiar()

Special

Returns 0 when not logged in.