Skip to main content

Condition_Obesity

Description

Compares the character's current obesity value against a given threshold or range.

Parameters

ParameterDescription
BaseObjectThe character to check (Self or Target).
CompareTypeSupported compare types: Equal, NotEqual, Less, Greater, LessOrEqual, GreaterOrEqual, InRange, OutRange.
F1Obesity value threshold to compare against (cast to integer).
F2Upper bound of the range for InRange or OutRange comparisons.

Examples

DescriptionBaseObjectCommandCompareTypeF1F2
Checks if self has an obesity value of exactly 2.SelfObesityEqual20
Checks if self has an obesity value of 3 or more.SelfObesityGreaterOrEqual30
Checks if target has an obesity value below 1.TargetObesityLess10
Checks if self has an obesity value between 1 and 3.SelfObesityInRange13