module AzaWings {
  imports {
      Base
  }
    item Wings
    {
        WeightReduction	=	80,
        Weight	=	1.5,
        Type	=	Container,
        Capacity	=	22,
        DisplayName	=	Wings,
        Icon = Wings,
        CanBeEquipped = Back,
        OpenSound   =   OpenBag,
        CloseSound   =   CloseBag,
        PutInSound   =   PutItemInBag,
        ClothingItem = Wings,
        BloodLocation = Bag,
        RunSpeedModifier = 0.95,
        AttachmentReplacement = Bag,
    }

    recipe Make Wings
    {
        Mirror,
        Result: Wings,
        Time:40.0,
    }
}    
