module Base
{

    item PaintMachineMag
    {
		DisplayCategory = SkillBook,
        Weight	=	0.1,
        Type	=	Literature,
        DisplayName	=	How to use Paint Machine,
        Icon	=	PaintMachineMag,
        TeachedRecipes  =   Use Paint Machine,
        ReplaceOnUse    =  PaintMachineMag,
		StaticModel = PaintMachineMag,
        WorldStaticModel = PaintMachineMag_Ground,
    }

    item CarPaintEmpty
    {
        DisplayCategory = Material,
        Weight	=	1.0,
        Type	=	Normal,
        DisplayName	=	Empty Car Paint Bucket,
        Icon	=	CarPaint_Empty,
        MetalValue = 10,
        CanStoreWater	=	TRUE,
        ReplaceOnUseOn	=	WaterSource-WaterCarPaintbucket,
        RainFactor = 1,
        Tooltip = Tooltip_item_RainFromGround,
        EatType = Bucket,
        WorldStaticModel = CarPaintEmpty_Ground,
    }

    item WaterCarPaintbucket
    {
        DisplayCategory = Water,
        Type = Drainable,
        DisplayName = Car Paint Bucket With Water,
        Icon = CarPaint_Water,
        Weight = 2.5,
        ReplaceOnDeplete = CarPaintEmpty,
        UseWhileEquipped = FALSE,
        UseDelta = 0.1,
        ReplaceOnUseOn = WaterSource-WaterCarPaintbucket,
        IsWaterSource = TRUE,
        CanStoreWater = TRUE,
        FillFromDispenserSound = GetWaterFromDispenserMetalBig,
        FillFromTapSound = GetWaterFromTapMetalBig,
        RainFactor = 1,
        EatType = Bucket,
        WorldStaticModel = CarPaintWater_Ground,
    }

	item CarPaintRed
    {
		DisplayCategory = VehicleMaintenance,
        Weight	=	2.5,
        Type	=	Drainable,
		Tooltip = Tooltip_CarPaint,
		ReplaceOnDeplete = CarPaintEmpty,
		UseWhileEquipped	=	FALSE,
		UseDelta	=	0.1,
		DisplayName	=	Red Car Paint,
		Icon	=	CarPaint_Red,
		WorldStaticModel = CarPaintRed,
    }
	
    item CarPaintBlue
    {
		DisplayCategory = VehicleMaintenance,
        Weight	=	2.5,
        Type	=	Drainable,
		Tooltip = Tooltip_CarPaint,
		ReplaceOnDeplete = CarPaintEmpty,
		UseWhileEquipped	=	FALSE,
		UseDelta	=	0.1,
		DisplayName	=	Blue Car Paint,
		Icon	=	CarPaint_Blue,
		WorldStaticModel = CarPaintBlue,
    }

    item CarPaintYellow
    {
		DisplayCategory = VehicleMaintenance,
        Weight	=	2.5,
        Type	=	Drainable,
		Tooltip = Tooltip_CarPaint,
		ReplaceOnDeplete = CarPaintEmpty,
		UseWhileEquipped	=	FALSE,
		UseDelta	=	0.1,
		DisplayName	=	Yellow Car Paint,
		Icon	=	CarPaint_Yellow,
		WorldStaticModel = CarPaintYellow,
    }
}