What Is This?
This is a simple bag that will only allow regs to be placed inside, and reduces their weight by 0-100%Depending on how to decide to add this item, it can now have an adjustable % of weight reduction
By default it will reduce the weight by 90% or you can create bags with anywhere from 0-100% reduction:
C#:
new RegBag(0.5);
/// Reduction works as such:
/// 0 = 100% reduction
/// 0.2 = 80% reduction
/// 0.8 = 20% reduction
/// 1 = 0% reduction
or
C#:
RegBag bag = new RegBag();
bag.Reduction = 0.3;