Example #1
0
 /// <summary>
 /// Class to hold the armor bonus attributes and chances
 /// </summary>
 /// <param name="protectionContainer">container with all possible types of armor protection related bonus and their chances.</param>
 /// <param name="durabilityContainer">container with all possible types of armor durability related bonus and their chances.</param>
 public ArMod(Protection protectionContainer, Durability durabilityContainer)
 {
     m_ProtectionContainer = protectionContainer;
     m_DurabilityContainer = durabilityContainer;
 }
Example #2
0
 /// <summary>
 /// Class to hold the armor bonus attributes and chances
 /// </summary>
 /// <param name="protectionContainer">container with all possible types of armor protection related bonus and their chances.</param>
 public ArMod(Protection protectionContainer)
     : this(protectionContainer, null)
 {
 }