Difference between revisions of "Login rewards"

From Isleward Wiki
Jump to navigation Jump to search
(Updated login rewards based on code for the game)
Line 11: Line 11:
 
Starting from day 5, players can receive [[Rare Essence]]. The amount of rare essence received is <code>floor(streak/5)</code>, with no upper limit.
 
Starting from day 5, players can receive [[Rare Essence]]. The amount of rare essence received is <code>floor(streak/5)</code>, with no upper limit.
 
===Epic Materials===
 
===Epic Materials===
Starting from day 10, players can receive [[Cerulean Pearl|Cerulean Pearls]]. The amount of Cerulean Pearls received is <code>floor(streak/10)</code>, with no upper limit.
+
Starting from day 10, players can receive [[Cerulean Pearl|Cerulean Pearls]] and [[Epic Essence]]. The amount of Cerulean Pearls received is <code>floor(streak/10)</code>, with no upper limit.
 
===Legendary Materials===
 
===Legendary Materials===
 
Starting from day 21, players can receive [[Legendary Essence]]. The amount of Legendary Essence received is <code>floor(streak/21)</code>, with no upper limit.
 
Starting from day 21, players can receive [[Legendary Essence]]. The amount of Legendary Essence received is <code>floor(streak/21)</code>, with no upper limit.
 
<br>{{wip}}
 
<br>{{wip}}

Revision as of 15:59, 26 October 2017

Login Rewards

Each day, players receive crafting materials including relatively large quantities of essences. The quantity and quality of rewards increases as the number of consecutive logins increases.

Possible Rewards

In the following sections, streak represents the number of days the character has logged on consecutively.

Common Materials

Players receive Iron Bars, Leather Scraps, Cloth Scraps, and Common Essences every day. The total number of common materials is (streak*3)+1, up to a maximum of 16 materials. This total is distributed between the different types of common materials randomly.

Magic Materials

Starting from day 3, players can receive Magic Essence. The amount of magic essence received is floor(streak/3), with no upper limit.

Rare Materials

Starting from day 5, players can receive Rare Essence. The amount of rare essence received is floor(streak/5), with no upper limit.

Epic Materials

Starting from day 10, players can receive Cerulean Pearls and Epic Essence. The amount of Cerulean Pearls received is floor(streak/10), with no upper limit.

Legendary Materials

Starting from day 21, players can receive Legendary Essence. The amount of Legendary Essence received is floor(streak/21), with no upper limit.


WIP: This article is a work in progress, meaning that it is being worked on but is unfinished. You can help by editing it.