Ingredient#

class corkus.objects.Ingredient#

Crafting Ingredients are items found in the world of Wynncraft used to add extra effects onto crafted items.

property name#

The name of the ingredient.

Return type:

str

property tier#

Number of stars on the ingredient.

Return type:

Literal[0, 1, 2, 3]

property required_level#

Level that an player must get on all of the required_professions in order to use this ingredient.

Return type:

int

property required_professions#

List of professions on which player must get required_level in order to use this ingredient.

Return type:

List[ProfessionType]

property sprite#

Describes look of ingredient in-game.

Return type:

IngredientSprite

property identifications#

List all identifications added by this ingredient.

Return type:

List[Identification]

property position_modifiers#

How this ingredient affect other ones in the grid.

Return type:

IngredientPositionModifiers

property item_modifiers#

Additional modifiers applied only on not consumable items like armour, weapons or jewelry.

Return type:

IngredientItemModifiers

property consumable_modifiers#

Additional modifiers applied only on comsumable items like food, potions and scrolls.

Return type:

IngredientComsumableModifiers