forked from opentibiabr/myaac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
achievements.php
2895 lines (2895 loc) · 135 KB
/
achievements.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
$achievements = [
'1' => [
"name" => "Allow Cookies?",
"grade" => 1,
"points" => 2,
"description" => "With a perfectly harmless smile you fooled all of those wisecrackers into eating your exploding cookies. Consider a boy or girl scout outfit next time to make the trick even better."
],
'2' => [
"name" => "Allowance Collector",
"grade" => 1,
"points" => 2, "secret" => true,
"description" => "You certainly have your ways when it comes to acquiring money. Many of them are pink and paved with broken fragments of porcelain."
],
'3' => [
"name" => "Amateur Actor",
"grade" => 1,
"points" => 2,
"description" => "You helped bringing Princess Buttercup, Doctor Dumbness and Lucky the Wonder Dog to life - and will probably dream of them tonight, since you memorised your lines perfectly. What a .. special piece of.. screenplay."
],
'4' => [
"name" => "Animal Activist",
"grade" => 1,
"points" => 2,
"description" => "You have a soft spot for little, weak animals, and you do everything in your power to protect them - even if you probably eat dragons for breakfast."
],
'5' => [
"name" => "Annihilator",
"grade" => 2,
"points" => 5,
"description" => "You've daringly jumped into the infamous Annihilator and survived - taking home fame, glory and your reward."
],
'6' => [
"name" => "Archpostman",
"grade" => 1,
"points" => 3,
"description" => "Delivering letters and parcels has always been a secret passion of yours, and now you can officially put on your blue hat, blow your Post Horn and do what you like to do most . Beware of dogs!"
],
'7' => [
"name" => "Backpack Tourist",
"grade" => 1,
"points" => 1, "secret" => true,
"description" => "if someone lost a random thing in a random place, you're probably a good person to ask and go find it, even if you don't know what and where."
],
'8' => [
"name" => "Beach Tamer",
"grade" => 1,
"points" => 2,
"description" => "You re - enacted the Taming of the Shrew on a beach setting and proved that you can handle capricious girls quite well . With or without fish tails."
],
'9' => [
"name" => "Bearhugger",
"grade" => 1,
"points" => 1,
"description" => "Warm, furry and cuddly - though that same bear you just hugged would probably rip you into pieces if he had been conscious, he reminded you of that old teddy bear which always slept in your bed when you were still small."
],
'10' => [
"name" => "Blessed!",
"grade" => 1,
"points" => 2,
"description" => "You travelled the world for an almost meaningless prayer - but at least you don't have to do that again and can get a new blessed stake in the blink of an eye."
],
'11' => [
"name" => "Bone Brother",
"grade" => 1,
"points" => 1,
"description" => "You've joined the undead bone brothers - making death your enemy and your weapon as well . Devouring what's weak and leaving space for what's strong is your primary goal."
],
'12' => [
"name" => "Castlemania",
"grade" => 2,
"points" => 5, "secret" => true,
"description" => "You have an eye for suspicious places and love to read other people's diaries, especially those with vampire stories in it. You're also a dedicated token collector and explorer . Respect!"
],
'13' => [
"name" => "Champion of Chazorai",
"grade" => 2,
"points" => 4,
"description" => "You won the merciless 2 vs . 2 team tournament on the Isle of Strife and wiped out wave after wave of fearsome opponents . Death or victory - you certainly chose the latter."
],
'14' => [
"name" => "Chorister",
"grade" => 1,
"points" => 1,
"description" => "Lalalala... you now know the cult's hymn sung in Liberty Bay"
],
'15' => [
"name" => "Clay Fighter",
"grade" => 1,
"points" => 3, "secret" => true,
"description" => "You love getting your hands wet and dirty - and covered with clay. Your perfect sculpture of Brog, the raging Titan is your true masterpiece."
],
'16' => [
"name" => "Clay to Fame",
"grade" => 2,
"points" => 6, "secret" => true,
"description" => "Sculpting Brog, the raging Titan, is your secret passion. Numerous perfect little clay statues with your name on them can be found everywhere around Tibia."
],
'17' => [
"name" => "Cold as Ice",
"grade" => 2,
"points" => 6, "secret" => true,
"description" => "Take an ice cube and an obsidian knife and you'll very likely shape something really pretty from it . Mostly cute little mammoths, which are a hit with all the girls."
],
'18' => [
"name" => "Culinary Master",
"grade" => 2,
"points" => 4,
"description" => "Simple hams and bread merely make you laugh . You're the master of the extra-ordinaire, melter of cheese, fryer of bat wings and shaker of shakes. Delicious!"
],
'19' => [
"name" => "Deep Sea Diver",
"grade" => 2,
"points" => 4, "secret" => true,
"description" => "Under the sea - might not be your natural living space, but you're feeling quite comfortable on the ocean floor . Quara don't scare you anymore and sometimes you sleep with your helmet of the deep still equipped."
],
'20' => [
"name" => "Dread Lord",
"grade" => 3,
"points" => 8, "secret" => true,
"description" => "You don't care for rules that others set up and shape the world to your liking . Having left behind meaningless conventions and morals, you prize only the power you wield . You're a master of your fate and battle to cleanse the world."
],
'21' => [
"name" => "Efreet Ally",
"grade" => 1,
"points" => 3,
"description" => "Even though the welcomed you only reluctantly and viewed you as 'only a human' for quite some time, you managed to impress Malor and gained his respect and trade options with the green djinns."
],
'22' => [
"name" => "Elite Hunter",
"grade" => 2,
"points" => 5,
"description" => "You jump at every opportunity for a hunting challenge that's offered to you and carry out those tasks with deadly precision . You're a hunter at heart and a valuable member of the Paw & Fur Society."
],
'23' => [
"name" => "Explorer",
"grade" => 2,
"points" => 4,
"description" => "You've been to places most people don't even know the names of. Collecting botanic, zoologic and ectoplasmic samples is your daily business and you're always prepared to discover new horizons."
],
'24' => [
"name" => "Exquisite Taste",
"grade" => 1,
"points" => 2, "secret" => true,
"description" => "You love fish - but preferably those caught in the cold north . Even though they're hard to come by you never get tired of picking holes in ice sheets and hanging your fishing rod in."
],
'25' => [
"name" => "Firewalker",
"grade" => 2,
"points" => 4, "secret" => true,
"description" => "Running barefoot across ember is not for you! You do it the elegant way. Yet, you're kind of drawn to fire and warm surroundings in general - you like it hot!"
],
'26' => [
"name" => "Fireworks in the Sky",
"grade" => 1,
"points" => 2, "secret" => true,
"description" => "You love the moment right before your rocket takes off and explodes into beautiful colours - not only on new year's eve!"
],
'27' => [
"name" => "Follower of Azerus",
"grade" => 2,
"points" => 4,
"description" => "When you do something, you do it right. You have an opinion and you stand by it - and no one will be able to convince you otherwise. On a sidenote, you're a bit on the brutal and war - oriented side, but that's not a bad thing, is it?"
],
'28' => [
"name" => "Follower of Palimuth",
"grade" => 2,
"points" => 4,
"description" => "You're a peacekeeper and listen to what the small people have to say . You've made up your mind and know who to help and for which reasons - and you do it consistently. Your war is fought with reason rather than weapons."
],
'29' => [
"name" => "Fountain of Life",
"grade" => 1,
"points" => 1, "secret" => true,
"description" => "You found and took a sip from the Fountain of Life. Thought it didn't grant you eternal life, you feel changed and somehow at peace."
],
'30' => [
"name" => "Friend of the Apes",
"grade" => 2,
"points" => 4,
"description" => "You know Banuta like the back of your hand and are good at destroying caskets and urns . The sight of giant footprints doesn't keep you from exploring unknown areas either."
],
'31' => [
"name" => "Ghostwhisperer",
"grade" => 1,
"points" => 3,
"description" => "You don't hunt them, you talk to them . You know that ghosts might keep secrets that have been long lost among the living, and you're skilled at talking them into revealing them to you."
],
'32' => [
"name" => "Golem in the Gears",
"grade" => 2,
"points" => 4,
"description" => "You're an aspiring mago - mechanic . Science and magic work well together in your eyes - and even though you probably delivered countless wrong charges while working for Telas, you might just have enough knowledge to build your own golem now."
],
'33' => [
"name" => "Green Thumb",
"grade" => 2,
"points" => 4, "secret" => true,
"description" => "if someone gives you seeds, you usually grow a beautiful plant from it within a few days . You like your house green and decorated with flowers . Probably you also talk to them."
],
'34' => [
"name" => "Greenhorn",
"grade" => 1,
"points" => 2,
"description" => "You wiped out Orcus the Cruel in the Arena of Svargrond . You're still a bit green behind the ears, but there's some great potential."
],
'35' => [
"name" => "Herbicide",
"grade" => 3,
"points" => 8, "secret" => true,
"description" => "You're one of the brave heroes to face and defeat the mysterious demon oak and all the critters it threw in your face. Wielding your blessed axe no tree dares stand in your way - demonic or not."
],
'36' => [
"name" => "Here, Fishy Fishy!",
"grade" => 1,
"points" => 1, "secret" => true,
"description" => "Ah, the smell of the sea! Standing at the shore and casting a line is one of your favourite activities. For you, fishingis relaxing - and at the same time, providing easy food. Perfect!"
],
'37' => [
"name" => "High-Flyer",
"grade" => 2,
"points" => 4, "secret" => true,
"description" => "The breeze in your hair, your fingers clutching the rim of your Carpet - that's how you like to travel . Faster!Higher! and a looping every now and then."
],
'38' => [
"name" => "High Inquisitor",
"grade" => 2,
"points" => 5,
"description" => "You're the one who poses the questions around here, and you know how to get the answers you want to hear. Besides, you're a famous exorcist and slay a few vampires and demons here and there . You and your stake are a perfect team."
],
'39' => [
"name" => "His True Face",
"grade" => 1,
"points" => 3, "secret" => true,
"description" => "You're one of the few Tibians who Armenius chose to actually show his true face to - and he made you fight him. Either that means you're very lucky or very unlucky, but one thing's for sure - it's extremely rare."
],
'40' => [
"name" => "Honorary Barbarian",
"grade" => 1,
"points" => 1,
"description" => "You've hugged bears, pushed mammoths and proved your drinking skills. And even though you have a slight hangover, a partially fractured rib and some greasy hair on your tongue, you're quite proud to call yourself a honorary barbarian from now on."
],
'41' => [
"name" => "Huntsman",
"grade" => 1,
"points" => 2,
"description" => "You're familiar with hunting tasks and have carried out quite a few already. A bright career as hunter for the Paw & Fur society lies ahead!"
],
'42' => [
"name" => "Ice Sculptor",
"grade" => 1,
"points" => 3, "secret" => true,
"description" => "You love to hang out in cold surroundings and consider ice the best material to be shaped. What a waste to use ice cubes for drinks when you can create a beautiful mammoth statue from it!"
],
'43' => [
"name" => "Interior Decorator",
"grade" => 2,
"points" => 4, "secret" => true,
"description" => "Your home is your castle - and the furniture in it is just as important. Your friends ask for your advice when decorating their Houses and your probably own every statue, rack and bed there is."
],
'44' => [
"name" => "Jamjam",
"grade" => 2,
"points" => 5, "secret" => true,
"description" => "When it comes to interracial understanding, you're an expert . You've mastered the language of the Chakoya and made someone really happy with your generosity. Achuq!"
],
'45' => [
"name" => "Jinx",
"grade" => 1,
"points" => 2, "secret" => true,
"description" => "Sometimes you feel there's a gremlin in there . So many lottery tickets, so many blanks ? that's just not fair! Share your misery with the world."
],
'46' => [
"name" => "Just in Time",
"grade" => 1,
"points" => 1,
"description" => "You're a fast runner and are good at delivering wares which are bound to decay just in the nick of time, even if you can't use any means of transportation or if your hands get cold or smelly in the process."
],
'47' => [
"name" => "King Tibianus Fan",
"grade" => 1,
"points" => 3,
"description" => "You're not sure what it is, but you feel drawn to royalty . Your knees are always a bit grazed from crawling around in front of thrones and you love hanging out in castles . Maybe you should consider applying as a guard ? "
],
'48' => [
"name" => "Lord Protector",
"grade" => 3,
"points" => 8, "secret" => true,
"description" => "You proved yourself - not only in your dreams - and possess a strong and spiritual mind . Your valorous fight against demons and the undead plague has granted you the highest and most respected rank among the Nightmare Knights."
],
'49' => [
"name" => "Lord of the Elements",
"grade" => 2,
"points" => 5,
"description" => "You travelled the surreal realm of the elemental spheres, summoned and slayed the Lord of the Elements, all in order to retrieve neutral matter . and as brave as you were, you couldn't have done it without your team!"
],
'50' => [
"name" => "Lucid Dreamer",
"grade" => 1,
"points" => 2,
"description" => "Dreams - are your reality? Strange visions, ticking clocks, going to bed and waking up somewhere completely else - that was some trip, but you're almost sure you actually did enjoy it."
],
'51' => [
"name" => "Lucky Devil",
"grade" => 2,
"points" => 4, "secret" => true,
"description" => "that's almost too much luck for one person. If something's really, really rare - it probably falls into your lap sooner or later . Congratulations!"
],
'52' => [
"name" => "Marble Madness",
"grade" => 2,
"points" => 6, "secret" => true,
"description" => "Your little statues of Tibiasula have become quite famous around Tibia and there's few people with similar skills when it comes to shaping marble."
],
'53' => [
"name" => "Marblelous",
"grade" => 1,
"points" => 3, "secret" => true,
"description" => "You're an aspiring marble sculptor with promising skills - proven by the perfect little Tibiasula statue you shaped . One day you'll be really famous!"
],
'54' => [
"name" => "Marid Ally",
"grade" => 1,
"points" => 3,
"description" => "You've proven to be a valuable ally to the Marid, and Gabel welcomed you to trade with Haroun and Nah'Bob whenever you want to. Though the Djinn war has still not ended, the Marid can't fail with you on their side."
],
'55' => [
"name" => "Masquerader",
"grade" => 1,
"points" => 3, "secret" => true,
"description" => "You probably don't know anymore how you really look like - usually when you look into a mirror, some kind of monster stares back at you. On the other hand - maybe that's an improvement ? "
],
'56' => [
"name" => "Master Thief",
"grade" => 2,
"points" => 4,
"description" => "Robbing, inviting yourself to VIP parties, faking contracts and pretending to be someone else -you're a jack of all trades when it comes to illegal activities. You take no prisoners, except for the occasional goldfish now and then."
],
'57' => [
"name" => "Master of the Nexus",
"grade" => 2,
"points" => 6,
"description" => "You were able to fight your way through the countless hordes in the Demon Forge. Once more you proved that nothing is impossible."
],
'58' => [
"name" => "Matchmaker",
"grade" => 1,
"points" => 1,
"description" => "You don't believe in romance to be a coincidence or in love at first sight . In fact - love potions, bouquets of flowers and cheesy poems do the trick much better than ever could . Keep those hormones flowing!"
],
'59' => [
"name" => "Mathemagician",
"grade" => 1,
"points" => 1,
"description" => "Sometimes the biggest secrets of life can have a simple solution."
],
'60' => [
"name" => "Ministrel",
"grade" => 1,
"points" => 2, "secret" => true,
"description" => "You can handle any music instrument you're given - and actually manage to produce a pleasant sound with it. You're a welcome guest and entertainer in most taverns."
],
'61' => [
"name" => "Nightmare Knight",
"grade" => 1,
"points" => 1,
"description" => "You follow the path of dreams and that of responsibility without self - centered power . Free from greed and selfishness, you help others without expecting a reward."
],
'62' => [
"name" => "Party Animal",
"grade" => 1,
"points" => 1, "secret" => true,
"description" => "Oh my god, it's a paaaaaaaaaaaarty! You're always in for fun, friends and booze and love being the center of attention . There's endless reasons to celebrate! Woohoo!"
],
'63' => [
"name" => "Passionate Kisser",
"grade" => 1,
"points" => 3,
"description" => "For you, a kiss is more than a simple touch of lips. You kiss maidens and deadbeats alike with unmatched affection and faced death and rebirth through the kiss of the banshee queen. Lucky are those who get to share such an intimate moment with you!"
],
'64' => [
"name" => "Perfect Fool",
"grade" => 1,
"points" => 3,
"description" => "You love playing jokes on others and tricking them into looking a little silly. Wagging tongues say that the moment of realisation in your victims' eyes is the reward you feed on, but you're probably just kidding and having fun with them... right??"
],
'65' => [
"name" => "Poet Laureate",
"grade" => 1,
"points" => 2, "secret" => true,
"description" => "Poems, verses, songs and rhymes you've recited many times . You have passed the cryptic door, raconteur of ancient lore . Even elves you've left impressed, so it seems you're truly blessed."
],
'66' => [
"name" => "Polisher",
"grade" => 2,
"points" => 4, "secret" => true,
"description" => "if you see a rusty item, you can't resist polishing it. There's always a little flask of rust remover in your inventory - who knows, there might be a golden armor beneath all that dirt!"
],
'67' => [
"name" => "Potion Addict",
"grade" => 2,
"points" => 4, "secret" => true,
"description" => "Your local magic trader considers you one of his best customers - you usually buy large stocks of potions so you won't wake up in the middle of the night craving for more. Yet, you always seem to run out of them too fast. Cheers!"
],
'68' => [
"name" => "Quick as a Turtle",
"grade" => 1,
"points" => 2, "secret" => true,
"description" => "There... is... simply... no... better... way - than to travel on the back of a turtle. At least you get to enjoy the beautiful surroundings of Laguna."
],
'69' => [
"name" => "Razing!",
"grade" => 3,
"points" => 7, "secret" => true,
"description" => "People with sharp canine teeth better beware of you, especially at nighttime, or they might find a stake between their ribs. You're a merciless vampire hunter and have gathered numerous tokens as proof."
],
'70' => [
"name" => "Recognised Trader",
"grade" => 1,
"points" => 3,
"description" => "You're a talented merchant who's able to handle wares with care, finds good offers and digs up rares every now and then . Never late to complete an order, you're a reliable trader - at least in Rashid's eyes."
],
'71' => [
"name" => "Rockstar",
"grade" => 1,
"points" => 3, "secret" => true,
"description" => "Music just comes to you naturally . You feel comfortable on any stage, at any time, and secretly hope that someday you will be able to defeat your foes by playing music only . Rock on!"
],
'72' => [
"name" => "Ruthless",
"grade" => 2,
"points" => 5,
"description" => "You've touched all thrones of The Ruthless Seven and absorbed some of their evil spirit. It may have changed you forever."
],
'73' => [
"name" => "Scrapper",
"grade" => 1,
"points" => 3,
"description" => "You put out the Spirit of Fire's flames in the arena of Svargrond . Arena fights are for you - fair, square, with simple rules and one - on - one battles."
],
'74' => [
"name" => "Sea Scout",
"grade" => 1,
"points" => 2,
"description" => "Not even the hostile underwater environment stops you from doing your duty for the Explorer Society . Scouting the Quara realm is a piece of cake for you."
],
'75' => [
"name" => "Secret Agent",
"grade" => 1,
"points" => 1,
"description" => "Pack your spy gear and get ready for some dangerous missions in service of a secret agency . You've shown you want to - but can you really do it? Time will tell."
],
'76' => [
"name" => "Shell Seeker",
"grade" => 1,
"points" => 3, "secret" => true,
"description" => "You found a hundred beautiful pearls in large sea shells. By now that necklace should be finished - and hopefully you didn't get your fingers squeezed too often during the process."
],
'77' => [
"name" => "Ship's Kobold",
"grade" => 2,
"points" => 4, "secret" => true,
"description" => "You've probably never gotten seasick in your life - you love spending your free time on the ocean and covered quite a lot of miles with ships . Aren't you glad you didn't have to swim all that ? "
],
'78' => [
"name" => "Steampunked",
"grade" => 1,
"points" => 2, "secret" => true,
"description" => "Travelling with the dwarven steamboats through the underground rivers is your preferred way of crossing the lands . No pesky seagulls, and good beer on board!"
],
'79' => [
"name" => "Superstitious",
"grade" => 1,
"points" => 2, "secret" => true,
"description" => "Fortune tellers and horoscopes guide you through your life . and you probably wouldn't dare going on a big game hunt without your trusty voodoo skull giving you his approval for the day."
],
'80' => [
"name" => "Talented Dancer",
"grade" => 1,
"points" => 1,
"description" => "You're a lord or lady of the dance - and not afraid to use your skills to impress tribal gods . One step to the left, one jump to the right, twist and shout!"
],
'81' => [
"name" => "Territorial",
"grade" => 1,
"points" => 1, "secret" => true,
"description" => "Your map is your friend - always in your back pocket and covered with countless marks of interesting and useful locations . One could say that you might be lost without it - but luckily there's no way to take it from you."
],
'82' => [
"name" => "The Milkman",
"grade" => 1,
"points" => 2,
"description" => "Who's the milkman ? You are!"
],
'83' => [
"name" => "Top AVIN Agent",
"grade" => 2,
"points" => 4,
"description" => "You've proven yourself as a worthy member of the 'family' and successfully carried out numerous spy missions for your 'uncle' to support the Venorean traders and their goals."
],
'84' => [
"name" => "Top CGB Agent",
"grade" => 2,
"points" => 4,
"description" => "Girl power! Whether you're female or not, you've proven absolute loyalty and the willingness to put your life at stake for the girls brigade of Carlin."
],
'85' => [
"name" => "Top TBI Agent",
"grade" => 2,
"points" => 4,
"description" => "Conspiracies and open secrets are your daily bread. You've shown loyalty to the Thaian crown through your courage when facing enemies and completing spy missions . You're an excellent field agent of the TBI."
],
'86' => [
"name" => "Turncoat",
"grade" => 2,
"points" => 4, "secret" => true,
"description" => "You served Yalahar - but you didn't seem so sure whom to believe on the way . Both Azerus and Palimuth had good reasons for their actions, and thus you followed your gut instinct in the end, even if you helped either of them . May Yalahar prosper!"
],
'87' => [
"name" => "Vanity",
"grade" => 1,
"points" => 3, "secret" => true,
"description" => "Aren't you just perfectly, wonderfully, beautifully gorgeous? You can't pass a mirror without admiring your looks . or maybe doing a quick check whether something's stuck in your teeth, perhaps?"
],
'88' => [
"name" => "Vive la Resistance",
"grade" => 1,
"points" => 2,
"description" => "You've always been a rebel - admit it!Supplying prisoners, caring for outcasts, stealing from the rich and giving to the poor - no wait, that was another story."
],
'89' => [
"name" => "Warlord of Svargrond",
"grade" => 2,
"points" => 5,
"description" => "You sent the Obliverator into oblivion in the arena of Svargrond and defeated nine other dangerous enemies on the way . All hail the Warlord of Svargrond!"
],
'90' => [
"name" => "Waverider",
"grade" => 1,
"points" => 2, "secret" => true,
"description" => "One thing's for sure: You definitely love swimming. Hanging out on the beach with your friends, having ice cream and playing beach ball is splashingly good fun!"
],
'91' => [
"name" => "Wayfarer",
"grade" => 1,
"points" => 3, "secret" => true,
"description" => "Dragon dreams are golden."
],
'92' => [
"name" => "Worm Whacker",
"grade" => 1,
"points" => 1, "secret" => true,
"description" => "Weehee! Whack those worms! You sure know how to handle a big hammer."
],
'93' => [
"name" => "Cocoon of Doom",
"grade" => 1,
"points" => 3, "secret" => true,
"description" => "You helped bringing Devovorga's dangerous tentacles and her humongous cocoon down - not stopping her transformation, but ultimately completing a crucial step to her death."
],
'94' => [
"name" => "Daring Trespasser",
"grade" => 1,
"points" => 3, "secret" => true,
"description" => "You've entered the lair of Devovorga and joined the crew trying to take her down - whether crowned with success or not doesn't matter, but they can't blame you for not trying!"
],
'95' => [
"name" => "Devovorga's Nemesis",
"grade" => 2,
"points" => 5, "secret" => true,
"description" => "One special hero among many . This year - it was you . Devovorga withdrew in a darker realm because she could not withstand your power - and that of your comrades . Time will tell if the choice you made was good - but for now, it saved your world."
],
'96' => [
"name" => "I Did My Part",
"grade" => 1,
"points" => 2, "secret" => true,
"description" => "Your world is lucky to have you!You don't hesitate to jump in and help when brave heroes are called to save the world."
],
'97' => [
"name" => "Notorious Worldsaver",
"grade" => 3,
"points" => 8, "secret" => true,
"description" => "You're in the front line when it comes to saving your world or taking part in social events . Whether you do it noticed or unnoticed by the people, your world can rely on you to dutifully do your part to make it a better place for everyone."
],
'98' => [
"name" => "Slayer of Anmothra",
"grade" => 1,
"points" => 2, "secret" => true,
"description" => "Souls are like butterflies . The black soul of a living weapon yearning to strike lies shattered beneath your feet."
],
'99' => [
"name" => "Slayer of Chikhaton",
"grade" => 1,
"points" => 2, "secret" => true,
"description" => "Power lies in the will of her who commands it . You fought it with full force - and were stronger."
],
'100' => [
"name" => "Slayer of Irahsae",
"grade" => 1,
"points" => 2, "secret" => true,
"description" => "Few things equal the wild fury of a trapped and riven creature . You were a worthy opponent."
],
'101' => [
"name" => "Slayer of Phrodomo",
"grade" => 1,
"points" => 2, "secret" => true,
"description" => "Blind hatred took physical form, violently rebelling against the injustice it was born into . You were not able to bring justice - but at least temporary peace."
],
'102' => [
"name" => "Slayer of Teneshpar",
"grade" => 1,
"points" => 2, "secret" => true,
"description" => "The forbidden knowledge of aeons was never meant to invade this world . You silenced its voice before it could be made heard."
],
'103' => [
"name" => "Teamplayer",
"grade" => 1,
"points" => 2, "secret" => true,
"description" => "You don't consider yourself too good to do the dirty work while someone else might win the laurels for killing Devovorga. They couldn't do it without you!"
],
'104' => [
"name" => "Alumni",
"grade" => 2,
"points" => 6,
"description" => "You're considered a first-rate graduate of the Magic Academy in Edron due to your pioneering discoveries and successful studies in the field of experimental magic and spell development. Ever considered teaching the Armageddon spell?"
],
'105' => [
"name" => "Aristocrat",
"grade" => 2,
"points" => 4,
"description" => "You begin your day by bathing in your pot of gold and you don't mind showing off your wealth while strolling the streets in your best clothes - after all it's your hard-earned money! You prefer to be addressed with 'Your Highness'."
],
'106' => [
"name" => "Bad Timing",
"grade" => 1,
"points" => 2, "secret" => true,
"description" => "Argh! Not now! How is it that those multifunctional tools never fail when you're using them for something completely trivial like squeezing juice, but mess up when you desperately need to climb up a rope spot with a fire - breathing dragon chasing you ? "
],
'107' => [
"name" => "Berserker",
"grade" => 1,
"points" => 3,
"description" => "RAWR!Strength running through your body, your heart racing faster and adrenaline fueling your every weapon swing . All in a little bottle . No refund for destroyed furniture . for further questions consult your healer or potion dealer."
],
'108' => [
"name" => "Bluebarian",
"grade" => 1,
"points" => 2, "secret" => true,
"description" => "You live the life of hunters and gatherers . Well, especially that of a gatherer, and especially of one who gathers lots of blueberries . Have you checked the colour of your tongue lately ? "
],
'109' => [
"name" => "Brutal Politeness",
"grade" => 2,
"points" => 6,
"description" => "What is best in life ? To crush your enemies . To see them driven before you . and to maybe have a nice cup of tea afterwards."
],
'110' => [
"name" => "Commitment Phobic",
"grade" => 1,
"points" => 2, "secret" => true,
"description" => "Longterm relationships are just not for you . and each time you think you're in love, you're proven wrong shortly afterwards . or maybe you just end up with the wrong lover each time - exploited and betrayed . Staying single might just be better."
],
'111' => [
"name" => "Cookie Monster",
"grade" => 1,
"points" => 1, "secret" => true,
"description" => "You can easily be found by anyone if they just follow the cookie crumb trail . and for you, true love means to give away your last cookie."
],
'112' => [
"name" => "Cursed!",
"grade" => 1,
"points" => 3, "secret" => true,
"description" => "The wrath of the Noxious Spawn - you accidentally managed to incur it . Your days are counted and your death inevitable . Sometime . Someplace."
],
'113' => [
"name" => "Demonbane",
"grade" => 2,
"points" => 6,
"description" => "You don't carry that stake just for decoration - you're prepared to use it. Usually you're seen hightailing through the deepest dungeons leaving a trail of slain demons. Whoever dares stand in your way should prepare to die."
],
'114' => [
"name" => "Demonic Barkeeper",
"grade" => 1,
"points" => 3,
"description" => "Thick, red - shaken, not stirred - and with a straw in it: that's the way you prefer your demon blood . Served with an onion ring, the subtle metallic aftertaste is almost not noticeable . Beneficial effects on health or mana are welcome."
],
'116' => [
"name" => "do Not Disturb",
"grade" => 1,
"points" => 1, "secret" => true,
"description" => "Urgh!Close the windows!Shut out the sun rearing its ugly yellow head, shut out the earsplitting laughter of your neighbour's corpulent children. Ahhh. Embrace sweet darkness and silence."
],
'117' => [
"name" => "Exemplary Citizen",
"grade" => 2,
"points" => 4,
"description" => "Every city should be proud to call someone like you its inhabitant. You're keeping the streets clean and help settling the usual disputes in front of the depot . Also, you probably own a cat and like hiking."
],
'118' => [
"name" => "Fool at Heart",
"grade" => 1,
"points" => 3,
"description" => " and remember: Never try to teach a pig to sing . It wastes your time and annoys the pig."
],
'119' => [
"name" => "Free Items!",
"grade" => 1,
"points" => 3, "secret" => true,
"description" => "Yay!Finders keepers, losers weepers!Who cares where all that stuff came from and if you had to crawl through garbage piles to get it ? It's FREE!"
],
'120' => [
"name" => "Godslayer",
"grade" => 2,
"points" => 4,
"description" => "You have defeated the Snake God's incarnations and, with a final powerful swing of the snake sceptre, cut off his life force supply . The story of power, deceit and corruption has come to an end - or... not ? "
],
'121' => [
"name" => "Gold Digger",
"grade" => 2,
"points" => 4, "secret" => true,
"description" => "Hidden treasures below the sand dunes of the desert - you have a nose for finding them and you know where to dig . They might not make you filthy rich, but they're shiny and pretty anyhow."
],
'122' => [
"name" => "Happy Farmer",
"grade" => 1,
"points" => 1, "secret" => true,
"description" => "Scythe swung over your shoulder, sun burning down on your back - you are a farmer at heart and love working in the fields. Or then again maybe you just create fancy crop circles to scare your fellow men."
],
'123' => [
"name" => "Heartbreaker",
"grade" => 1,
"points" => 1, "secret" => true,
"description" => "Trust? Love? Faithfulness? Pah! Antiquated sentiments. As long as you have fun, you do not mind stepping on lots of hearts. Preferably while wearing combat boots."
],
'124' => [
"name" => "Homebrewed",
"grade" => 1,
"points" => 1, "secret" => true,
"description" => "Yo-ho-ho and a bottle of rum - homebrewed, of course, made from handpicked and personally harvested sugar cane plants. Now, let it age in an oak barrel and enjoy it in about 10 years. Or for the impatient ones: Let's have a paaaarty right now!"
],
'125' => [
"name" => "Hunting with Style",
"grade" => 2,
"points" => 6,
"description" => "At daytime you can be found camouflaged in the woods laying traps or chasing big game, at night you're sitting by the campfire and sharing your hunting stories. You eat what you hunted and wear what you skinned. Life could go on like that forever."
],
'126' => [
"name" => "I Need a Hug",
"grade" => 1,
"points" => 2,
"description" => "You and your stuffed furry friends are inseparable, and you're not ashamed to take them to bed with you - who knows when you will wake up in the middle of the night in dire need of a cuddle ? "
],
'127' => [
"name" => "In Shining Armor",
"grade" => 2,
"points" => 6,
"description" => "With edged blade and fully equipped in a sturdy full plate armor, you charge at your enemies with both strength and valour . There's always a maiden to save and a dragon to slay for you."
],
'128' => [
"name" => "Joke's on You",
"grade" => 1,
"points" => 1, "secret" => true,
"description" => "Well - the contents of that present weren't quite what you expected. With friends like these, who needs enemies?"
],
'129' => [
"name" => "Keeper of the Flame",
"grade" => 1,
"points" => 2, "secret" => true,
"description" => "One of the Lightbearers. One of those who helped to keep the basins burning and worked together against the darkness. The demonic whispers behind the thin veil between the worlds - they were silenced again thanks to your help."
],
'130' => [
"name" => "Let the Sunshine In",
"grade" => 1,
"points" => 1, "secret" => true,
"description" => "Rise and shine! It's a beautiful new day - open your windows, feel the warm sunlight, watch the birds singing on your windowsill and care for your plants . What reason is there not to be happy ? "
],
'131' => [
"name" => "Life on the Streets",
"grade" => 2,
"points" => 4,
"description" => "You're a beggar, homeless, wearing filthy and ragged clothes. But that doesn't mean you have to beg anyone for stuff - and you still kept your pride . Fine feathers do not necessarily make fine birds - what's under them is more important."
],
'132' => [
"name" => "Make a Wish",
"grade" => 1,
"points" => 1, "secret" => true,
"description" => "But close your eyes and don't tell anyone what you wished for, or it won't come true!"
],
'133' => [
"name" => "Master of War",
"grade" => 2,
"points" => 6,
"description" => "You're not afraid to show your colours in the heat of battle . Enemies fear your lethal lance and impenetrable armor . The list of the wars you've won is impressive. Hail and kill!"
],
'134' => [
"name" => "Mastermind",
"grade" => 1,
"points" => 3,
"description" => "You feel you could solve the hardest riddles within a minute or so. Plus, there's a nice boost on your spell damage . All in a little bottle . Aftereffects - feeling slightly stupid . for further questions consult your healer or potion dealer."
],
'135' => [
"name" => "Mister Sandman",
"grade" => 1,
"points" => 2, "secret" => true,
"description" => "Tired... so tired... curling up in a warm and cosy bed seems like the perfect thing to do right now . Sweet dreams!"
],
'136' => [
"name" => "Modest Guest",
"grade" => 1,
"points" => 1, "secret" => true,
"description" => "You don't need much to sleep comfortably. A pile of straw and a roof over your head - with the latter being completely optional - is quite enough to relax. You don't even mind the rats nibbling on your toes."
],
'137' => [
"name" => "Mutated Presents",
"grade" => 1,
"points" => 1, "secret" => true,
"description" => "Muahahaha it's a... mutated pumpkin! After helping to take it down - you DID help, didn't you ? -you claimed your reward and got a more or less weird present . Happy Halloween!"
],
'138' => [
"name" => "Natural Sweetener",
"grade" => 1,
"points" => 1, "secret" => true,
"description" => "Liberty Bay is the perfect hangout for you and harvesting sugar cane quite a relaxing leisure activity . Would you like some tea with your sugar, hon ? "
],
'139' => [
"name" => "Nightmare Walker",
"grade" => 2,
"points" => 6,
"description" => "You do not fear nightmares, you travel in them - facing countless horrors and fighting the fate they're about to bring. Few believe the dark prophecies you bring back from those dreams, but those who do fight alongside you as Nightmare Knights."
],
'140' => [
"name" => "Nothing Can Stop Me",
"grade" => 1,
"points" => 1, "secret" => true,
"description" => "You laugh at unprepared adventurers stuck in high grass or rush wood. Or maybe you actually do help them out. They call you... 'Machete'."
],
'141' => [
"name" => "Number of the Beast",
"grade" => 1,
"points" => 2,
"description" => "Six. Six. Six."
],
'142' => [
"name" => "Of Wolves and Bears",
"grade" => 2,
"points" => 6,
"description" => "One with nature, one with wildlife. Raw and animalistic power, sharpened senses, howling on the highest cliffs and roaring in the thickest forests - that's you."
],
'143' => [
"name" => "One Thousand and One",
"grade" => 2,
"points" => 6,
"description" => "You feel at home under the hot desert sun with sand between your toes, and your favourite means of travel is a flying carpet . Also, you can probably do that head isolation dance move."
],
'144' => [
"name" => "Oops",
"grade" => 1,
"points" => 2, "secret" => true,
"description" => "So much for your feathered little friend!Maybe standing in front of the birdcage, squeezing its neck and shouting 'Sing! Sing! Sing!' was a little too much for it ? !"
],
'145' => [
"name" => "Out in the Snowstorm",
"grade" => 2,
"points" => 4,
"description" => "Snow heaps and hailstorms can't keep you from where you want to go. You're perfectly equipped for any expedition into the perpetual ice and know how to keep your feet warm . if you're a woman, that's quite an accomplishment, too."
],
'146' => [
"name" => "Peazzekeeper",
"grade" => 2,
"points" => 6,
"description" => "You're a humble warrior who doesn't need wealth or specialised equipment for travelling and fighting . You feel at home in the northern lands of Zao and did your part in fighting its corruption."
],
'147' => [
"name" => "Piece of Cake",
"grade" => 1,
"points" => 1,
"description" => "Life can be so easy with the right cake at the right time - and you mastered baking many different ones, so you should be prepared for almost everything life decides to throw at you."
],
'148' => [
"name" => "Ritualist",
"grade" => 2,
"points" => 6,
"description" => "You could be the author of the magnum opus 'How to Summon the Ultimate Beast from the Infernal Depths, Volume I' . or, if your mind and heart are pure, you rather summon beings to help others . or maybe just a little cat to have someone to cuddle."
],
'149' => [
"name" => "Rock Me to Sleep",
"grade" => 1,
"points" => 1, "secret" => true,
"description" => "Sleeping - you do it with style . You're chilling in your hammock, listening to the sound of the birds and crickets as you slowly drift away into the realm of dreams."
],
'150' => [
"name" => "Rocket in Pocket",
"grade" => 1,
"points" => 1, "secret" => true,
"description" => "Either you are not a fast learner or you find some pleasure in setting yourself on fire. Or you're just looking for a fancy title . In any case, you should know that passing gas during your little donkey experiments is not recommended."
],
'151' => [
"name" => "Rollercoaster",
"grade" => 1,
"points" => 1,
"description" => "Up and down and up and down... and then the big looping!Wait - they don't build loopings in Kazordoon. But ore wagon rides are stillfun!"
],
'152' => [
"name" => "Santa's Li'l Helper",
"grade" => 1,
"points" => 2, "secret" => true,
"description" => "Christmas is your favourite time of the year, and boy, do you love presents. Buy some nice things for your friends, hide them away until - well, until you decide to actually unwrap them rather yourself."
],
'153' => [
"name" => "Sharpshooter",
"grade" => 1,
"points" => 3,
"description" => "Improved eyesight, arrows and bolts flying at the speed of light and pinning your enemies with extra damage. All in a little bottle. No consumption of carrots required. For further questions consult your healer or potion dealer."
],
'154' => [
"name" => "Skull and Bones",
"grade" => 2,
"points" => 6,
"description" => "Wearing the insignia and dark robes of the Brotherhood of Bones you roam the lands spreading fear and pain, creating new soldiers for the necromantic army which is about to rise soon. Hail the Brotherhood."
],
'155' => [
"name" => "Slim Chance",
"grade" => 1,
"points" => 1,
"description" => "Okay, let's face it - as long as you believe it could potentially lead you to the biggest treasure ever, you won't let go of that map, however fishy it might look. There must be a secret behind all of this!"
],
'156' => [
"name" => "Swashbuckler",
"grade" => 2,
"points" => 6,
"description" => "Ye be a gentleman o' fortune, fightin' and carousin' on the high seas, out fer booty and lassies!Ye no be answerin' to no man or blasted monarchy and yer life ain't fer the lily - livered . Aye, matey!"
],
'157' => [
"name" => "Sweet Tooth",
"grade" => 1,
"points" => 2, "secret" => true,
"description" => "The famous 'Ode to a Molten Chocolate Cake' was probably written by you . Spending a rainy afternoon in front of the chimney, wrapped in a blanket while indulging in cocoa delights sounds just like something you'd do. Enjoy!"
],
'158' => [
"name" => "Swift Death",
"grade" => 2,
"points" => 6,
"description" => "Stealth kills and backstabbing are you specialty. Your numerous victims are usually unaware of their imminent death, which you bring to them silently and swiftly. Everything is permitted."
],
'159' => [
"name" => "The Cake's the Truth",
"grade" => 1,
"points" => 1, "secret" => true,
"description" => " and anyone claiming otherwise is a liar."
],
'160' => [
"name" => "The Day After",
"grade" => 1,
"points" => 2, "secret" => true,
"description" => "Uhm... who's that person who you just woke up beside? Broken cocktail glasses on the floor, flowers all over the room, and why the heck are you wearing a ring? Yesterday must have been a long, weird day..."
],
'161' => [
"name" => "The Undertaker",
"grade" => 1,
"points" => 2, "secret" => true,
"description" => "You and your shovel - a match made in heaven. Or hell, for that matter. Somewhere down below in any case. You're magically attracted by stone piles and love to open them up and see where those holes lead you . Good biceps as well."
],
'162' => [
"name" => "True Lightbearer",
"grade" => 2,
"points" => 5, "secret" => true,
"description" => "You're one of the most dedicated Lightbearers - without you, the demons would have torn the veil between the worlds for sure. You've lit each and every basin, travelling high and low, pushing back the otherworldly forces . Let there be light!"
],
'163' => [
"name" => "Warlock",
"grade" => 2,
"points" => 6,
"description" => "You're proficient in the darker ways of magic and are usually found sitting inside a circle of candles and skulls muttering unspeakable words. Don't carry things too far or the demons might come get you."
],
'164' => [
"name" => "Way of the Shaman",
"grade" => 2,
"points" => 6,
"description" => "Shaking your rattle and dancing around the fire to jungle drums sounds like something you like doing . Besides, dreadlocks are a convenient way to wear your hair - no combing required!"
],
'165' => [
"name" => "Wild Warrior",
"grade" => 2,
"points" => 6,
"description" => "Valour is for weaklings - it doesn't matter how you win the battle, as long as you're victorious . Thick armor would just hinder your movements, thus you keep it light and rely on speed and skill instead of hiding in an uncomfortable shell."
],
'166' => [
"name" => "With a Cherry on Top",
"grade" => 1,
"points" => 1, "secret" => true,
"description" => "You like your cake soft, with fruity bits and a nice sugar icing . and you prefer to make them by yourself . Have you ever considered opening a bakery ? You must be really good by now!"
],
'167' => [
"name" => "Yalahari of Power",
"grade" => 1,
"points" => 3,
"description" => "You defend Yalahar with brute force and are ready to lead it into a glorious battle, if necessary . Thanks to you, Yalahar will be powerful enough to stand up against any enemy."
],
'168' => [
"name" => "Yalahari of Wisdom",