Ejemplo n.º 1
0
 public DeliveryQuest(Character npc, Character toWhom, ItemInstance what, QuestImportance importance) : base(npc, importance, QuestType.DELIVERY)
 {
     this.toWhom = toWhom;
     this.what   = what;
 }
Ejemplo n.º 2
0
 public GatherQuest(Character npc, Item toGather, int times, QuestImportance importance) : base(npc, importance, QuestType.GATHER)
 {
     this.toGather = toGather;
     this.times    = times;
 }
Ejemplo n.º 3
0
 public EscortQuest(Character npc, CharacterUpgraded toEscort, Place toWhere, QuestImportance importance) : base(npc, importance, QuestType.ESCORT)
 {
     this.toEscort = toEscort;
     this.toWhere  = toWhere;
 }
Ejemplo n.º 4
0
 public Quest(Character npc, QuestImportance importance, QuestType type)
 {
     this.npc        = npc;
     this.importance = importance;
 }
Ejemplo n.º 5
0
 public KillQuest(Character npc, CharacterUpgraded toKill, int times, QuestImportance importance) : base(npc, importance, QuestType.KILL)
 {
     this.toKill = toKill;
     this.times  = times;
 }