diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-12-30 19:08:50 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-12-30 19:08:50 -0200 |
commit | 7a72306babc08f8d4a4bf4e9cc152e26e7093e20 (patch) | |
tree | 1ff0be54165794ed57764ee407314a45b2835898 /npc | |
parent | ccb94c87a6b151290062e1a24f4efd6178295818 (diff) | |
download | serverdata-7a72306babc08f8d4a4bf4e9cc152e26e7093e20.tar.gz serverdata-7a72306babc08f8d4a4bf4e9cc152e26e7093e20.tar.bz2 serverdata-7a72306babc08f8d4a4bf4e9cc152e26e7093e20.tar.xz serverdata-7a72306babc08f8d4a4bf4e9cc152e26e7093e20.zip |
Explain seasons & day/night cycle on trainer
Diffstat (limited to 'npc')
-rw-r--r-- | npc/005-7/trainer.txt | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/npc/005-7/trainer.txt b/npc/005-7/trainer.txt index 6d3c1afba..13d17ad42 100644 --- a/npc/005-7/trainer.txt +++ b/npc/005-7/trainer.txt @@ -51,6 +51,7 @@ L_Menu: l("NPCs."), L_NPC, l("Magic."), L_Magica, l("Rules."), L_Regras, + l("Weather & Seasons."), L_Temporada, l("No, thanks!"), L_Fechar; @@ -432,6 +433,33 @@ L_Teclado: next; goto L_Manaplus; +L_Temporada: + mes ""; + mesn; + mesq l("First of, there's a day/night cycle on the game."); + if (is_night()) + mesq l("It's currently night, that's why Candor is dark."); + else + mesq l("It's currently day, but when night falls, Candor will become darker."); + next; + mesn; + mesq l("During night, the monsters usually respawn faster. That can be a problem with aggressive monsters."); + mesq l("I also hear fisherman likes to fish at night. They say the catch is bigger, if you understand me."); + next; + mesn; + mesq l("There's also weather, meaning it can rain, snow, or even happen a sandstorm. They are usually cosmetic, but..."); + mesq l("...who knows if there isn't a secret in that?"); + next; + mesn; + mesq l("Besides this, there is Seasons. You know, summer, autumn, winter and spring."); + mesq l("Each season unlocks a set of quests and drops which can only be obtained on the season."); + next; + mesn; + mesq l("Think on Season Quests as a yearly quest which you have three months to do."); + mesq l("We follow north hemisphere seasons in case you're wondering."); + next; + goto L_PreMenu; + L_Regras: mes ""; callfunc "GameRules"; |