module Base
{
	craftRecipe BB_MakeHolster
    {
        tags = InHandCraft;CanBeDoneInDark,
        category = BetterBelts,
        inputs {
        item 1 tags[SewingNeedle] mode:keep,
        item 1 tags[Scissors] mode:keep flags[Prop1],
        item 1 [Belt2],
        item 4 [LeatherStrips],
        item 5 [Thread],
        }
        outputs {
          item 1 HolsterSimple,
        }

	      SkillRequired = Tailoring:1,
        Time = 200,
    }

craftRecipe BB_MakeBelt
    {
        tags = InHandCraft;CanBeDoneInDark,
        category = BetterBelts,
        inputs {
        item 1 tags[SewingNeedle] mode:keep,
        item 1 tags[Scissors] mode:keep flags[Prop1],
        item 3 [LeatherStrips],
        item 4 [Thread],

        }
        outputs {
        item 1 Belt2,
        }
	      SkillRequired = Tailoring:1,
        Time = 230,
    }

craftRecipe BB_RipBelt
    {
        tags = InHandCraft;CanBeDoneInDark,
        category = BetterBelts,
        inputs {
          item 1 tags[Scissors] mode:keep flags[Prop1],
          item 1 [Belt2;Belt3;Belt4],
        }
        outputs {
        item 2 LeatherStrips,
        }
        Time = 60,
    }
}
