Condition_Obesity
Description
Compares the character's current obesity value against a given threshold or range.
Parameters
| Parameter | Description |
|---|---|
| BaseObject | The character to check (Self or Target). |
| CompareType | Supported compare types: Equal, NotEqual, Less, Greater, LessOrEqual, GreaterOrEqual, InRange, OutRange. |
| F1 | Obesity value threshold to compare against (cast to integer). |
| F2 | Upper bound of the range for InRange or OutRange comparisons. |
Examples
| Description | BaseObject | Command | CompareType | F1 | F2 |
|---|---|---|---|---|---|
| Checks if self has an obesity value of exactly 2. | Self | Obesity | Equal | 2 | 0 |
| Checks if self has an obesity value of 3 or more. | Self | Obesity | GreaterOrEqual | 3 | 0 |
| Checks if target has an obesity value below 1. | Target | Obesity | Less | 1 | 0 |
| Checks if self has an obesity value between 1 and 3. | Self | Obesity | InRange | 1 | 3 |