In sku.py:
def get_sku_properties(item: Item | dict) -> dict:
......
# e.g. strange unusual
if quality != 11:
sku_properties["strange"] = item.has_strange_in_name()
return sku_properties
Since Strange Parts are unique (quality == 6), sku_properties["strange"] is TRUE and later in to_sku() concatenate ';strange;' at the end of the sku formed. For example, Strange Part: Kills While Explosive Jumping will give something like : {'sku': '6022;6;strange',..
In sku.py:
Since Strange Parts are unique (quality == 6), sku_properties["strange"] is TRUE and later in
to_sku()concatenate ';strange;' at the end of the sku formed. For example, Strange Part: Kills While Explosive Jumping will give something like :{'sku': '6022;6;strange',..