//Methods private static void basic_herb(CharacterUpgraded chara) { Stats stat = chara.stats; if (stat.hp < (stat.maxHp - 9)) { stat.hp += 10; chara.stats.onStatChange(stat); } }
public EscortQuest(Character npc, CharacterUpgraded toEscort, Place toWhere, QuestImportance importance) : base(npc, importance, QuestType.ESCORT) { this.toEscort = toEscort; this.toWhere = toWhere; }
public KillQuest(Character npc, CharacterUpgraded toKill, int times, QuestImportance importance) : base(npc, importance, QuestType.KILL) { this.toKill = toKill; this.times = times; }