Example #1
0
 public FightExtraPair(FightExtra type, Dictionary<DamageType, string> spellTypes)
 {
     this.Type = type;
     this.Item = null;
     this.Slot = SlotNumber.Ammo;
     this.SpellTypes = spellTypes;
 }
Example #2
0
 public FightExtraPair(FightExtra type, Item item, SlotNumber slot)
 {
     this.Type = type;
     this.Item = item;
     this.Slot = slot;
     this.Spell = "";
 }
Example #3
0
 public FightExtraPair(FightExtra type, string spell)
 {
     this.Type = type;
     this.Item = null;
     this.Slot = SlotNumber.Ammo;
     this.Spell = spell;
 }
Example #4
0
 public FightExtraPair(FightExtra type, Item item)
 {
     this.Type = type;
     this.Item = item;
     this.Slot = SlotNumber.Ammo;
     this.Spell = "";
 }
Example #5
0
 public FightExtraPair(FightExtra type, Dictionary <DamageType, string> spellTypes)
 {
     this.Type       = type;
     this.Item       = null;
     this.Slot       = SlotNumber.Ammo;
     this.SpellTypes = spellTypes;
 }
Example #6
0
 public FightExtraPair(FightExtra type, string spell)
 {
     this.Type  = type;
     this.Item  = null;
     this.Slot  = SlotNumber.Ammo;
     this.Spell = spell;
 }
Example #7
0
 public FightExtraPair(FightExtra type, Item item, SlotNumber slot)
 {
     this.Type  = type;
     this.Item  = item;
     this.Slot  = slot;
     this.Spell = "";
 }
Example #8
0
 public FightExtraPair(FightExtra type, Item item)
 {
     this.Type  = type;
     this.Item  = item;
     this.Slot  = SlotNumber.Ammo;
     this.Spell = "";
 }