module Herbalist
{
    
    item BlackSageCataplasm
    {
        DisplayCategory  = FirstAid,
        Weight           = 0.2,
        ItemType         = base:normal,
        DisplayName      = Black Sage Poultice,
        Icon             = MashedHerbs,
        Tooltip          = Tooltip_Painkillers,
        WorldStaticModel = Poultice,
    }
    
    item GinsengCataplasm
    {
        DisplayCategory  = FirstAid,
        Weight           = 0.2,
        ItemType         = base:normal,
        DisplayName      = Ginseng Poultice,
        Icon             = MashedHerbs,
        Tooltip          = Tooltip_Antidepressants,
        WorldStaticModel = Poultice,
    }
    
    item CommonMallowCataplasm
    {
        DisplayCategory  = FirstAid,
        Weight           = 0.2,
        ItemType         = base:normal,
        DisplayName      = Common Mallow Poultice,
        Icon             = MashedHerbs,
        Tooltip          = Tooltip_Antibiotics,
        WorldStaticModel = Poultice,
    }
    
    item GranolaBarsTray
    {
        DisplayName       = Granola Bars Baking Tray,
        DisplayCategory   = Food,
        ItemType          = base:food,
        Weight            = 1.7,
        Icon              = TegliaBars,
        CantBeFrozen      = TRUE,
        IsCookable        = true,
        ReplaceOnUse      = BakingTray,
        MinutesToCook     = 30,
        MinutesToBurn     = 60,
        DaysFresh         = 7,
        DaysTotallyRotten = 30,
        CantEat           = true,
        ReplaceOnCooked   = Base.GranolaBar;Base.GranolaBar;Base.GranolaBar;Base.GranolaBar;Base.GranolaBar;Base.GranolaBar;Base.BakingTray,
        WorldStaticModel  = BakingTray_Cookies,
    }
    
    item DriedMushroomsTray
    {
        DisplayName       = Dried Mushrooms Tray,
        DisplayCategory   = Food,
        ItemType          = base:food,
        Weight            = 1.7,
        Icon              = TegliaFunghi,
        CantBeFrozen      = TRUE,
        IsCookable        = true,
        ReplaceOnUse      = Base.BakingTray,
        MinutesToCook     = 20,
        MinutesToBurn     = 40,
        DaysFresh         = 2,
        DaysTotallyRotten = 7,
        CantEat           = true,
        ReplaceOnCooked   = Herbalist.DriedMushrooms;Base.BakingTray,
        WorldStaticModel  = BakingTray_Cookies,
    }
    
    item DriedMushrooms
    {
        DisplayName       = Dried Mushrooms,
        DisplayCategory   = Food,
        ItemType          = base:food,
        Weight            = 0.3,
        Icon              = DriedMushroomsIcon,
        DaysFresh         = 90,
        DaysTotallyRotten = 120,
        HungerChange      = -30,
        ThirstChange      = 8,
        Calories          = 60,
        Carbohydrates     = 6.24,
        Lipids            = 0.24,
        Proteins          = 6.04,
        Tags              = DriedFood,
        WorldStaticModel  = MushroomGeneric1,
    }
    
    item RiceMilkBottle
    {
        DisplayName       = Bottle of Rice Milk,
        DisplayCategory   = Food,
        ItemType          = base:food,
        Weight            = 0.5,
        Icon              = RiceMilkIcon,
        CustomContextMenu = Drink,
        CustomEatSound    = DrinkingFromCarton,
        StaticModel       = MilkCarton,
        WorldStaticModel  = Milk_Ground,
        
        component FluidContainer
        {
            ContainerName    = Carton,
            capacity         = 1.0,
            CustomDrinkSound = DrinkingFromCarton,
            
            Fluids
            {
                fluid = RiceMilk:1.0,
            }
        }
    }
    
    item BowlofChips
    {
        DisplayName       = Bowl of Chips,
        DisplayCategory   = Food,
        ItemType          = base:food,
        Weight            = 0.7,
        Icon              = BowlofChipsIcon,
        ReplaceOnUse      = Bowl,
        DaysFresh         = 30,
        DaysTotallyRotten = 50,
        CantBeFrozen      = TRUE,
        HungerChange      = -15,
        Calories          = 720,
        Carbohydrates     = 72,
        Lipids            = 45,
        Proteins          = 4.5,
        CustomEatSound    = EatingCrispy,
        WorldStaticModel  = BowlChips_Ground,
    }
    
    item TortillaDough
    {
        DisplayName                  = Tortilla Dough,
        DisplayCategory              = Food,
        ItemType                     = base:food,
        Weight                       = 0.3,
        Icon                         = Dough,
        EatType                      = 2handforced,
        IsCookable                   = TRUE,
        EvolvedRecipe                = AddBaitToChum:10,
        RemoveNegativeEffectOnCooked = TRUE,
        MinutesToCook                = 20,
        MinutesToBurn                = 50,
        DaysFresh                    = 3,
        DaysTotallyRotten            = 6,
        HungerChange                 = -24,
        ThirstChange                 = 15,
        UnhappyChange                = 10,
        Calories                     = 532,
        Carbohydrates                = 99,
        Lipids                       = 6.66,
        Proteins                     = 17.7,
        FishingLure                  = true,
        StaticModel                  = BreadDough,
        WorldStaticModel             = BreadDough,
    }
    
    item AcornCoffee
    {
        DisplayName      = Acorn Coffee,
        DisplayCategory  = Food,
        EatType          = candrink,
        ItemType         = base:food,
        Weight           = 1,
        Icon             = AcornCoffeeIcon,
        EvolvedRecipe    = HotDrink:5,
        FoodType         = Coffee,
        Packaged         = true,
        FatigueChange    = -50,
        HungerChange     = -30,
        ThirstChange     = 60,
        UnhappyChange    = 20,
        Calories         = 2,
        Carbohydrates    = 0,
        Lipids           = 0,
        Proteins         = 1,
        StaticModel      = Coffee,
        WorldStaticModel = Coffee,
    }
    
    item ToastedAcorn
    {
        DisplayName      = Toasted Acorn,
        DisplayCategory  = Food,
        ItemType         = base:food,
        Weight           = 0.3,
        Icon             = ChocolateChips,
        FoodType         = Chocolate,
        HungerChange     = -6,
        UnhappyChange    = 10,
        ThirstChange     = 10,
        Calories         = 50,
        Carbohydrates    = 17,
        Lipids           = 8,
        Proteins         = 1,
        CustomEatSound   = EatingCrispy,
        WorldStaticModel = ChocolateChips_Ground,
    }
    
    item WoodglueUncooked
    {
        DisplayName      = Woodglue Uncooked,
        DisplayCategory  = Food,
        ItemType         = base:food,
        Weight           = 1.3,
        Icon             = SaucepanFilled,
        BadInMicrowave   = true,
        CookingSound     = BoilingFood,
        IsCookable       = true,
        CantEat          = true,
        ReplaceOnCooked  = Herbalist.WoodglueCooked,
        MinutesToCook    = 30,
        MinutesToBurn    = 50,
        StaticModel      = SaucePan,
        WorldStaticModel = SaucePan_World,
        Tags             = HasMetal,
    }
    
    item WoodglueCooked
    {
        DisplayName       = Woodglue Cooked,
        DisplayCategory   = Food,
        ItemType          = base:food,
        Weight            = 1,
        Icon              = SaucepanFilled,
        BadInMicrowave    = true,
        CantEat           = true,
        CustomContextMenu = Take the glue,
        StaticModel       = SaucePan,
        WorldStaticModel  = SaucePan_World,
        Tags              = HasMetal,
    }
    
    item Ammonia
    {
        DisplayCategory        = WaterContainer,
        Weight                 = 0.3,
        ItemType               = base:normal,
        Icon                   = GlassBottle,
        IconFluidMask          = GlassBottle_Mask,
        WorldStaticModel       = BottleCrafted_Ground,
        FillFromDispenserSound = GetWaterFromDispenserGlass,
        FillFromLakeSound      = GetWaterFromLakeBottle,
        FillFromTapSound       = GetWaterFromTapGlass,
        FillFromToiletSound    = GetWaterFromToilet,
        Tags                   = base:glass;base:glassbottle,
        component FluidContainer
        {
            ContainerName    = BottleGlass,
            Opened           = true,
            Capacity         = 1.0,
            CustomDrinkSound = DrinkingFromBottleGlass,
            Fluids
            {
                fluid = Ammonia:1.0,
            }
        }
    }
    
    /******* INFUSI E BOLLITI *******/
    
    item GinsengInfusionUnboiled
    {
        DisplayName      = Ginseng Infusion Unboiled,
        DisplayCategory  = Food,
        ItemType         = base:food,
        Weight           = 1.3,
        Icon             = SaucepanFilled,
        BadInMicrowave   = true,
        CookingSound     = BoilingFood,
        IsCookable       = true,
        CantEat          = true,
        ReplaceOnCooked  = Herbalist.GinsengInfusion,
        MinutesToCook    = 30,
        MinutesToBurn    = 60,
        StaticModel      = SaucePan,
        WorldStaticModel = SaucePan_World,
        Tags             = HasMetal,
    }
    
    item GinsengInfusion
    {
        DisplayName               = Saucepan,
        DisplayCategory           = Food,
        ItemType                  = base:food,
        Weight                    = 0.7,
        Icon                      = SaucepanFilled,
        IconFluidMask             = Saucepan_Mask,
        AttachmentType            = Saucepan,
        BaseSpeed                 = 1,
        BreakSound                = SaucepanBreak,
        CanStoreWater             = TRUE,
        Categories                = Improvised;SmallBlunt,
        ConditionLowerChanceOneIn = 10,
        ConditionMax              = 5,
        CritDmgMultiplier         = 2,
        CriticalChance            = 30,
        DoorDamage                = 1,
        DoorHitSound              = SaucepanHit,
        DropSound                 = SaucepanDrop,
        HitFloorSound             = SaucepanHit,
        HitSound                  = SaucepanHit,
        KnockBackOnNoDeath        = FALSE,
        KnockdownMod              = 0,
        MaxDamage                 = 0.7,
        MaxHitCount               = 2,
        MaxRange                  = 1,
        MetalValue                = 30,
        MinAngle                  = 0.65,
        MinDamage                 = 0.2,
        MinRange                  = 0.61,
        MinimumSwingTime          = 2,
        PushBackMod               = 0.3,
        RainFactor                = 0.8,
        
        SplatBloodOnNoDeath     = FALSE,
        SplatNumber             = 1,
        SubCategory             = Swinging,
        SwingAmountBeforeImpact = 0.02,
        SwingAnim               = Bat,
        SwingSound              = SaucepanSwing,
        SwingTime               = 2,
        Tooltip                 = Tooltip_DisinfectantPan,
        TreeDamage              = 0,
        WeaponLength            = 0.2,
        WeaponSprite            = SaucePan,
        StaticModel             = SaucePan,
        Tags                    = HasMetal;NoMaintenanceXp;SmeltableIronSmall,
        
        component FluidContainer
        {
            ContainerName = Saucepan,
            RainFactor    = 0.5,
            capacity      = 0.6,
            Fluids
            {
                fluid = GinsengFluid:0.6,
            }
        }
    }
    
    item LemongrassRemedyUnboiled
    {
        DisplayName      = Lemongrass Remedy Unboiled,
        DisplayCategory  = Food,
        ItemType         = base:food,
        Weight           = 1.3,
        Icon             = SaucepanFilled,
        BadInMicrowave   = true,
        CookingSound     = BoilingFood,
        IsCookable       = true,
        CantEat          = true,
        ReplaceOnCooked  = Herbalist.LemongrassRemedy,
        MinutesToCook    = 30,
        MinutesToBurn    = 50,
        StaticModel      = SaucePan,
        WorldStaticModel = SaucePan_World,
        Tags             = HasMetal,
    }
    
    item LemongrassRemedy
    {
        DisplayName               = Lemongrass Remedy,
        DisplayCategory           = Food,
        ItemType                  = base:food,
        Weight                    = 0.7,
        Icon                      = SaucepanEmpty,
        IconFluidMask             = Saucepan_Mask,
        AttachmentType            = Saucepan,
        BaseSpeed                 = 1,
        BreakSound                = SaucepanBreak,
        CanStoreWater             = TRUE,
        Categories                = Improvised;SmallBlunt,
        ConditionLowerChanceOneIn = 10,
        ConditionMax              = 5,
        CritDmgMultiplier         = 2,
        CriticalChance            = 30,
        DoorDamage                = 1,
        DoorHitSound              = SaucepanHit,
        DropSound                 = SaucepanDrop,
        HitFloorSound             = SaucepanHit,
        HitSound                  = SaucepanHit,
        KnockBackOnNoDeath        = FALSE,
        KnockdownMod              = 0,
        MaxDamage                 = 0.7,
        MaxHitCount               = 2,
        MaxRange                  = 1,
        MetalValue                = 30,
        MinAngle                  = 0.65,
        MinDamage                 = 0.2,
        MinRange                  = 0.61,
        MinimumSwingTime          = 2,
        PushBackMod               = 0.3,
        RainFactor                = 0.8,
        
        SplatBloodOnNoDeath     = FALSE,
        SplatNumber             = 1,
        SubCategory             = Swinging,
        SwingAmountBeforeImpact = 0.02,
        SwingAnim               = Bat,
        SwingSound              = SaucepanSwing,
        SwingTime               = 2,
        Tooltip                 = Tooltip_DisinfectantPan,
        TreeDamage              = 0,
        WeaponLength            = 0.2,
        WeaponSprite            = SaucePan,
        StaticModel             = SaucePan,
        Tags                    = HasMetal;NoMaintenanceXp;SmeltableIronSmall,
        
        component FluidContainer
        {
            ContainerName = Saucepan,
            RainFactor    = 0.5,
            capacity      = 0.6,
            Fluids
            {
                fluid = LemongrassFluid:0.6,
            }
        }
    }
    
    item MallowHerbalTeaUnboiled
    {
        DisplayName      = Mallow Herbal Tea Unboiled,
        DisplayCategory  = Food,
        ItemType         = base:food,
        Weight           = 1.3,
        Icon             = SaucepanFilled,
        BadInMicrowave   = true,
        CookingSound     = BoilingFood,
        IsCookable       = true,
        CantEat          = true,
        ReplaceOnCooked  = Herbalist.MallowHerbalTea,
        MinutesToCook    = 30,
        MinutesToBurn    = 50,
        StaticModel      = SaucePan,
        WorldStaticModel = SaucePan_World,
        Tags             = HasMetal,
    }
    
    item MallowHerbalTea
    {
        DisplayName               = Saucepan,
        DisplayCategory           = CookingWeapon,
        ItemType                  = base:food,
        Weight                    = 0.7,
        Icon                      = SaucepanEmpty,
        IconFluidMask             = Saucepan_Mask,
        AttachmentType            = Saucepan,
        BaseSpeed                 = 1,
        BreakSound                = SaucepanBreak,
        CanStoreWater             = TRUE,
        Categories                = Improvised;SmallBlunt,
        ConditionLowerChanceOneIn = 10,
        ConditionMax              = 5,
        CritDmgMultiplier         = 2,
        CriticalChance            = 30,
        DoorDamage                = 1,
        DoorHitSound              = SaucepanHit,
        DropSound                 = SaucepanDrop,
        HitFloorSound             = SaucepanHit,
        HitSound                  = SaucepanHit,
        KnockBackOnNoDeath        = FALSE,
        KnockdownMod              = 0,
        MaxDamage                 = 0.7,
        MaxHitCount               = 2,
        MaxRange                  = 1,
        MetalValue                = 30,
        MinAngle                  = 0.65,
        MinDamage                 = 0.2,
        MinRange                  = 0.61,
        MinimumSwingTime          = 2,
        PushBackMod               = 0.3,
        RainFactor                = 0.8,
        
        SplatBloodOnNoDeath     = FALSE,
        SplatNumber             = 1,
        SubCategory             = Swinging,
        SwingAmountBeforeImpact = 0.02,
        SwingAnim               = Bat,
        SwingSound              = SaucepanSwing,
        SwingTime               = 2,
        Tooltip                 = Tooltip_DisinfectantPan,
        TreeDamage              = 0,
        WeaponLength            = 0.2,
        WeaponSprite            = SaucePan,
        StaticModel             = SaucePan,
        Tags                    = HasMetal;NoMaintenanceXp;SmeltableIronSmall,
        
        component FluidContainer
        {
            ContainerName = Saucepan,
            RainFactor    = 0.5,
            capacity      = 0.6,
            Fluids
            {
                fluid = MallowFluid:0.6,
            }
        }
    }
    
    item DisinfectantUnboiled
    {
        DisplayName      = Disinfectant Unboiled,
        DisplayCategory  = FirstAid,
        ItemType         = base:food,
        Weight           = 1.4,
        Icon             = SaucepanFilled,
        BadInMicrowave   = true,
        CookingSound     = BoilingFood,
        IsCookable       = true,
        CantEat          = true,
        ReplaceOnCooked  = Herbalist.DisinfectantSaucepan,
        MinutesToCook    = 30,
        MinutesToBurn    = 60,
        StaticModel      = SaucePan,
        WorldStaticModel = SaucePan_World,
        Tags             = HasMetal,
    }
    
    item DisinfectantSaucepan
    {
        DisplayName               = Saucepan with Disinfectant,
        DisplayCategory           = CookingWeapon,
        ItemType                  = base:normal,
        Weight                    = 0.7,
        Icon                      = SaucepanEmpty,
        IconFluidMask             = Saucepan_Mask,
        AttachmentType            = Saucepan,
        BaseSpeed                 = 1,
        BreakSound                = SaucepanBreak,
        CanStoreWater             = TRUE,
        Categories                = Improvised;SmallBlunt,
        ConditionLowerChanceOneIn = 10,
        ConditionMax              = 5,
        CritDmgMultiplier         = 2,
        CriticalChance            = 30,
        DoorDamage                = 1,
        DoorHitSound              = SaucepanHit,
        DropSound                 = SaucepanDrop,
        HitFloorSound             = SaucepanHit,
        HitSound                  = SaucepanHit,
        KnockBackOnNoDeath        = FALSE,
        KnockdownMod              = 0,
        MaxDamage                 = 0.7,
        MaxHitCount               = 2,
        MaxRange                  = 1,
        MetalValue                = 30,
        MinAngle                  = 0.65,
        MinDamage                 = 0.2,
        MinRange                  = 0.61,
        MinimumSwingTime          = 2,
        PushBackMod               = 0.3,
        RainFactor                = 0.8,
        
        SplatBloodOnNoDeath     = FALSE,
        SplatNumber             = 1,
        SubCategory             = Swinging,
        SwingAmountBeforeImpact = 0.02,
        SwingAnim               = Bat,
        SwingSound              = SaucepanSwing,
        SwingTime               = 2,
        Tooltip                 = Tooltip_DisinfectantPan,
        TreeDamage              = 0,
        WeaponLength            = 0.2,
        WeaponSprite            = SaucePan,
        StaticModel             = SaucePan,
        Tags                    = HasMetal;NoMaintenanceXp;SmeltableIronSmall,
        
        component FluidContainer
        {
            ContainerName = Saucepan,
            RainFactor    = 0.5,
            capacity      = 0.6,
            Fluids
            {
                fluid = RubbingAlcohol:0.6,
            }
        }
    }
    
    /******FOOD******/
    item PotofSapUnboiled
    {
        DisplayName       = Pot of Sap Unboiled,
        DisplayCategory   = Food,
        ItemType          = base:food,
        Weight            = 3,
        Icon              = PotFull,
        CantBeFrozen      = TRUE,
        BadInMicrowave    = true,
        CookingSound      = BoilingFood,
        CantEat           = true,
        IsCookable        = TRUE,
        MinutesToCook     = 90,
        MinutesToBurn     = 140,
        DaysFresh         = 6,
        DaysTotallyRotten = 12,
        ReplaceOnCooked   = Herbalist.PotofMapleSyrup,
        StaticModel       = CookingPot,
        WorldStaticModel  = CookingPotSoup_Ground,
        Tags              = HasMetal,
    }
    
    item PotofMapleSyrup
    {
        DisplayName      = Pot of Maple Syrup,
        DisplayCategory  = Food,
        ItemType         = base:food,
        Weight           = 1.5,
        Icon             = PotFull,
        CantBeFrozen     = TRUE,
        BadInMicrowave   = true,
        EatType          = Pot,
        HungerChange     = -135,
        UnhappyChange    = -30,
        ReplaceOnUse     = Base.Pot,
        Calories         = 3300,
        Carbohydrates    = 670,
        Lipids           = 0,
        Proteins         = 0,
        StaticModel      = CookingPot,
        WorldStaticModel = CookingPotSoup_Ground,
        Tags             = HasMetal,
    }
    
    item HoneySugarTrayUncooked
    {
        DisplayName       = Honey Sugar Tray Uncooked,
        DisplayCategory   = Food,
        ItemType          = base:food,
        Weight            = 1,
        Icon              = HoneyUncooked,
        CantBeFrozen      = TRUE,
        IsCookable        = true,
        MinutesToCook     = 30,
        MinutesToBurn     = 60,
        DaysFresh         = 7,
        DaysTotallyRotten = 30,
        CantEat           = true,
        ReplaceOnCooked   = Herbalist.HoneySugarTray,
        WorldStaticModel  = BakingTray_Cookies,
        Tags              = base:hasmetal,
    }
    
    item HoneySugarTray
    {
        DisplayName      = Honey Sugar Tray,
        DisplayCategory  = Food,
        ItemType         = base:normal,
        Weight           = 1,
        Icon             = HoneyTray,
        CantBeFrozen     = TRUE,
        IsCookable       = false,
        CantEat          = true,
        ReplaceOnCooked  = Herbalist.HoneySugarTray,
        WorldStaticModel = BakingTray_Cookies,
        Tags             = base:hasmetal,
    }
    
    item PanAvocadoPasteUncooked
    {
        DisplayCategory   = Food,
        DisplayName       = Avocado Paste Uncooked,
        ItemType          = base:food,
        Weight            = 2.5,
        Icon              = PanFull,
        CookingSound      = FryingFood,
        ConditionMax      = 10,
        ReplaceOnUse      = Base.Pan,
        ReplaceOnCooked   = Herbalist.AvocadoPaste;Base.Pan,
        CantEat           = true,
        CantBeFrozen      = TRUE,
        IsCookable        = true,
        MinutesToCook     = 30,
        MinutesToBurn     = 60,
        DaysFresh         = 6,
        DaysTotallyRotten = 14,
        StaticModel       = PanFriedVegetables_Ground,
        WorldStaticModel  = PanFriedVegetables_Ground,
        Tags              = base:hasmetal,
        SoundMap          = DumpContents EmptyPan,
    }
    
    item AvocadoPaste
    {
        DisplayCategory  = Food,
        Weight           = 2,
        ItemType         = base:normal,
        DisplayName      = Avocado Paste,
        Icon             = MashedHerbs,
        Tooltip          = Tooltip_AvocadoPaste,
        WorldStaticModel = Poultice,
    }
    
    item ImprovisedTape
    {
        DisplayCategory   = Material,
        DisplayName       = Improvised Tape,
        ItemType          = base:drainable,
        Weight            = 0.5,
        Icon              = ImprovisedTapeIcon,
        ConsolidateOption = ContextMenu_Merge,
        SurvivalGear      = true,
        Tooltip           = Tooltip_FixItems,
        UseDelta          = 0.25,
        UseWhileEquipped  = false,
        WorldStaticModel  = ImprovisedTape,
        Tags              = base:tape;base:inferiorbinding;base:simpleweaponbinding,
    }
    
    item WoodenMortarandPestle
    {
        DisplayCategory  = FirstAid,
        DisplayName      = WoodenMortarandPestle,
        ItemType         = base:normal,
        Weight           = 0.8,
        Icon             = WoodMortarIcon,
        StaticModel      = MortarFired,
        WorldStaticModel = MortarFired_Ground,
        Tags             = base:mortarpestle,
    }

    item PotofBakingSodaUnboiled
    {
        DisplayName       = Pot of Baking Soda Unboiled,
        DisplayCategory   = Food,
        ItemType          = base:food,
        Weight            = 3,
        Icon              = PotFull,
        CantBeFrozen      = TRUE,
        BadInMicrowave    = true,
        CookingSound      = BoilingFood,
        CantEat           = true,
        IsCookable        = TRUE,
        MinutesToCook     = 10,
        MinutesToBurn     = 30,
        DaysFresh         = 30,
        DaysTotallyRotten = 90,
        ReplaceOnCooked   = Herbalist.PotofBakingSodaUnfiltered,
        StaticModel       = CookingPot,
        WorldStaticModel  = CookingPotSoup_Ground,
        Tags              = HasMetal,
    }

    item PotofBakingSodaUnfiltered
    {
        DisplayName       = Pot of Baking Soda Unfiltered,
        DisplayCategory   = Normal,
        ItemType          = base:normal,
        Weight            = 2,
        Icon              = PotFull,
        CantBeFrozen      = TRUE,
        BadInMicrowave    = true,
        CantEat           = true,
        StaticModel       = CookingPot,
        WorldStaticModel  = CookingPotSoup_Ground,
        Tags              = HasMetal,
    }
    
    }/*FINE CODICE*/
    