Currently, there is no way to check/modify the growth of creatures in a town during the game.
*
GetCreatureGrowth(town, creature)
town: the town you want to check (see, for example, GetTown).
creature: the type of creature you want to check (see section "Creatures").
Returns the quantity of growth of the specified type of creature in the specified town.
*
SetCreatureGrowth(town, creature, quantity)
town: the town for which you want to set the growth of the creature (see, for example, GetTown).
creature: the type of creature you want to set the growth (see section "Creatures").
quantity: the quantity of growth to be set for this creature.
Sets the quantity of growth for the specified type of creature in the specified town.
*
AddToCreatureGrowth(town, creature, quantity, duration)
town: the town to which you want to add growth to the creature (see, for example, GetTown).
creature: the type of creature you want to add growth to (see section "Creatures").
quantity: the quantity of growth to add for this creature.
duration: the duration during which the additional growth of the creature will be applied. After this time the additional growth of the creature will be removed. Can be set from "0" and above.
- "0" for "permanent", the additional growth of the creature will never be removed.
- "1" and beyond (counts as "day"), the additional growth of the creature will be removed at the end of the specified number of days (turns).
Adds the specified quantity of additional growth for the specified creature in the specified town for the specified duration.
*
RemoveFromCreatureGrowth(town, creature, quantity, duration)
town: the town to which you want to remove from growth to the creature (see, for example, GetTown).
creature: the type of creature you want to remove from growth (see section "Creatures").
quantity: the quantity of growth to remove for this creature.
duration: the duration during which the subtracted growth of the creature will be applied. After this time the subtracted growth of the creature will be canceled. Can be set from "0" and above.
- "0" for "permanent", the subtracted growth of the creature will never be canceled.
- "1" and beyond (counts as "day"), the subtracted growth of the creature will be canceled at the end of the specified number of days (turns).
Removes the specified quantity of growth for the specified creature in the specified town for the specified duration.