module TKS
{
    imports
    {
        Base
    }
    
    craftRecipe Forge_Katana_Blade
    {
        time          = 800,
        needTobeLearn = true,
        timedAction   = Making,
        SkillRequired = Blacksmithing:10,
        AutoLearnAll  = Blacksmithing:10;LongBlade:9,
        xpAward       = Blacksmithing:200,
        tags          = AdvancedForge,
        category      = Blade,
        inputs
        {
            item 3 [Base.SheetMetal],
            item 2 [Base.Clay],
            item 5 tags[Charcoal],
            item 1 tags[SmithingHammer;BallPeenHammer] mode:keep flags[Prop1],
            item 1 tags[Tongs] mode:keep flags[Prop2],
            item 1 tags[Whetstone] mode:keep,
        }
        outputs
        {
            item 1 Base.Katana_Blade,
        }
    }
}