Update achievements_requirement_type.md

This commit is contained in:
Josh Freeman
2018-02-10 20:52:38 +00:00
committed by GitHub
parent 9fca5155f9
commit f443f2d238
+26 -29
View File
@@ -1,5 +1,30 @@
Up to date map by: Tequila Mockingbird
Achievements link to a "pre-requisite type" that defines it as completeed. The list of Types are:
```
0 legacy
1 kill stuff
2 achievement
3 class
4 materia
5 various adventure activities, must complete all the requirements in data_0-7
6 pre quest // all quests must be complete
7 hunting log
8 discover
9 pre quest // any 1 quest must be complete
10 companion
11 grand company
12 pvp
13 pvp
14 trial
15 beast tribe
16 ???
17 frontline
18 frontline
19 frontline
20 aether attune
```
Up to date mapping by: Tequila Mockingbird
```js
switch (achievement.type) {
@@ -36,32 +61,4 @@ switch (achievement.type) {
return null;
}
```
---
Achievements link to a "pre-requisite type" that defines it as completeed. The list of Types are:
```
1 kill stuff
2 achievement
3 class
4 materia
5 adventuring
6 pre // quest is_or = 0
7 hunting log
8 discover
9 pre // quest is_or = 1
10 companion
11 grand company
12 pvp
13 pvp
14 trial
15 beast tribe
16 ???
17 frontline
18 frontline
19 frontline
20 aether attune
```
An "is_or" relates to if the achievement requires multiple quests to be completed or just 1 out of a set.