equipment_types module

Enum class that represents the different equipment types. Currently, an equipment type is a type of weapon or armor. More information on enum can be found at https://docs.python.org/3/library/enum.html The ‘auto’ is a helper class (?) that will just give approviate values for Enum members

class equipment_types.EquipmentType(value)

Bases: enum.Enum

Implementation of the class

ARMOR = 2
WEAPON = 1