Treasure map (Dragon Quest IX): Difference between revisions

Jump to navigation Jump to search
Line 97: Line 97:


<pre>
<pre>
q = h + (5 * r) + m
q = (h + (5 * r) + m) + p()


q: quality value
q: quality value
Line 103: Line 103:
r: hero's highest number of revocations (max of 10)
r: hero's highest number of revocations (max of 10)
m: level of previous treasure map
m: level of previous treasure map
p(): randomly generated value between -/+ 10%
</pre>
</pre>


Line 112: Line 113:
m: 1
m: 1


q = 1 + (5 * 0) + 1 = 2
q = (1 + (5 * 0) + 1) + p() = 2  


h: 99
h: 99
Line 118: Line 119:
m: 99
m: 99


q = 99 + (5 * 10) + 99 = 248
q = (99 + (5 * 10) + 99) + p() = 248
</pre>
</pre>
Note that p() in these examples is negated by the max and min values of 2 and 248 respectively.


===2. Grotto content generation===
===2. Grotto content generation===

Navigation menu