module Base {
	item RightSideLightSwitch0 {
		DisplayCategory   = Furniture,
		Type			  = Moveable,
		Weight		  	  = 0.3,
		Icon			  = LightBulb,
		DisplayName		  = Right side light switch,
		WorldObjectSprite = lighting_indoor_01_0,
	}
	item LeftSideLightSwitch1 {
		DisplayCategory   = Furniture,
		Type			  = Moveable,
		Weight		  	  = 0.3,
		Icon			  = LightBulb,
		DisplayName		  = Left side light switch,
		WorldObjectSprite = lighting_indoor_01_1,
	}
	item RightSideLightSwitch2 {
		DisplayCategory   = Furniture,
		Type			  = Moveable,
		Weight		  	  = 0.3,
		Icon			  = LightBulb,
		DisplayName		  = Right side light switch,
		WorldObjectSprite = lighting_indoor_01_2,
	}
	item LeftSideLightSwitch3 {
		DisplayCategory   = Furniture,
		Type			  = Moveable,
		Weight		  	  = 0.3,
		Icon			  = LightBulb,
		DisplayName		  = Left side light switch,
		WorldObjectSprite = lighting_indoor_01_3,
	}
	item LeftSideLightSwitch4 {
		DisplayCategory   = Furniture,
		Type			  = Moveable,
		Weight		  	  = 0.3,
		Icon			  = LightBulb,
		DisplayName		  = Left side light switch,
		WorldObjectSprite = lighting_indoor_01_4,
	}
	item RightSideLightSwitch5 {
		DisplayCategory   = Furniture,
		Type			  = Moveable,
		Weight		  	  = 0.3,
		Icon			  = LightBulb,
		DisplayName		  = Right side light switch,
		WorldObjectSprite = lighting_indoor_01_5,
	}
	item RightSideLightSwitch6 {
		DisplayCategory   = Furniture,
		Type			  = Moveable,
		Weight		  	  = 0.3,
		Icon			  = LightBulb,
		DisplayName		  = Right side light switch,
		WorldObjectSprite = lighting_indoor_01_6,
	}
	item LeftSideLightSwitch7 {
		DisplayCategory   = Furniture,
		Type			  = Moveable,
		Weight		  	  = 0.3,
		Icon			  = LightBulb,
		DisplayName		  = Left side light switch,
		WorldObjectSprite = lighting_indoor_01_7,
	}

	recipe Make left light switch {
        keep Screwdriver,
        keep Wrench,
        keep Scissors,
        ElectronicsScrap=5,
        DuctTape=1,
        Screws=4,
        Wire=2,
        Prop1:Screwdriver,
        Prop2:LeftSideLightSwitch1,
        NoBrokenItems:true,
        AllowOnlyOne:true,
        OnGiveXP:Recipe.OnGiveXP.DismantleElectronics,
        AnimNode:Disassemble,
        Sound:Dismantle,
        Result:LeftSideLightSwitch1,
        CanBeDoneFromFloor:TRUE,
        NeedToBeLearn:false,
        Time:500.0,
        Category:Electrical,
    }
	recipe Make right light switch {
        keep Screwdriver,
        keep Wrench,
        keep Scissors,
        ElectronicsScrap=5,
        DuctTape=1,
        Screws=4,
        Wire=2,
        Prop1:Screwdriver,
        Prop2:RightSideLightSwitch0,
        NoBrokenItems:true,
        AllowOnlyOne:true,
        OnGiveXP:Recipe.OnGiveXP.DismantleElectronics,
        AnimNode:Disassemble,
        Sound:Dismantle,
        Result:RightSideLightSwitch0,
        CanBeDoneFromFloor:TRUE,
        NeedToBeLearn:false,
        Time:500.0,
        Category:Electrical,
    }
}
