Пример #1
0
 /// <summary>
 /// Class to hold the weapon bonus attributes and chances
 /// </summary>
 /// <param name="damageContainer">container with all possible types of damage related bonus and their chances.</param>
 /// <param name="accuracyContainer">container with all possible types of accuracy related bonus and their chances.</param>
 /// <param name="durabilityContainer">container with all possible types of durability related bonus and their chances.</param>
 public WeapMod(Damage damageContainer, Accuracy accuracyContainer, Durability durabilityContainer)
 {
     m_DamageContainer = damageContainer;
     m_AccuracyContainer = accuracyContainer;
     m_DurabilityContainer = durabilityContainer;
 }
Пример #2
0
 /// <summary>
 /// Class to hold the weapon bonus attributes and chances
 /// </summary>
 /// <param name="damageContainer">container with all possible types of damage related bonus and their chances.</param>
 /// <param name="accuracyContainer">container with all possible types of accuracy related bonus and their chances.</param>
 public WeapMod(Damage damageContainer, Accuracy accuracyContainer)
     : this(damageContainer, accuracyContainer, null)
 {
 }
Пример #3
0
 /// <summary>
 /// Class to hold the weapon bonus attributes and chances
 /// </summary>
 /// <param name="damageContainer">container with all possible types of damage related bonus and their chances.</param>
 /// <param name="durabilityContainer">container with all possible types of durability related bonus and their chances.</param>
 public WeapMod(Damage damageContainer, Durability durabilityContainer)
     : this(damageContainer, null, durabilityContainer)
 {
 }
Пример #4
0
 /// <summary>
 /// Class to hold the weapon bonus attributes and chances
 /// </summary>
 /// <param name="damageContainer">container with all possible types of damage related bonus and their chances.</param>
 public WeapMod(Damage damageContainer)
     : this(damageContainer, null, null)
 {
 }