rtfm/dynamics/item/armour/generate.py [1006:1013]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        '    pass',
        '',
    ], class_name, fname


def get_class(base_class, attributes):
    class_name = get_class_name(attributes['name'])
    attributes['material'] = 'M.{}'.format(attributes['material'].capitalize())
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



rtfm/dynamics/item/weapon/generate.py [1052:1059]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        '    pass',
        '',
    ], class_name, fname


def get_class(base_class, attributes):
    class_name = get_class_name(attributes['name'])
    attributes['material'] = 'M.{}'.format(attributes['material'].capitalize())
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



