init -3 python:
blazer = Clothing(
name="Blazer",
lewdness=-2, protection=20,
clothing_type="outer", clothing_tags=("jacket",), covered_parts=("upper", "boobs", "bra"),
base_image_name="blazer", base_value=55
)
database_clothing_items["outer"].append(blazer)
clothing_item2 = Clothing(
name="clothing_item2",
lewdness=-2, protection=20,
clothing_type="outer", clothing_tags=("jacket",), covered_parts=("upper", "boobs", "bra"),
base_image_name="clothing_item2", base_value=55
)
database_clothing_items["outer"].append(clothing_item2)
clothing_item3 = Clothing(
name="clothing_item3",
lewdness=-2, protection=20,
clothing_type="outer", clothing_tags=("jacket",), covered_parts=("upper", "boobs", "bra"),
base_image_name="clothing_item3", base_value=55
)
database_clothing_items["outer"].append(clothing_item3)