-
Notifications
You must be signed in to change notification settings - Fork 0
/
selection.json
1103 lines (1103 loc) · 61 KB
/
selection.json
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
{
"IcoMoonType": "selection",
"icons": [
{
"icon": {
"paths": [
"M513.062 40.328c-260.125 0-471.75 211.625-471.75 471.734 0 260.125 211.625 471.75 471.75 471.75 260.094 0 471.719-211.625 471.719-471.75 0-260.109-211.625-471.734-471.719-471.734zM513.062 951.812c-242.469 0-439.75-197.266-439.75-439.75 0-242.469 197.281-439.734 439.75-439.734s439.719 197.266 439.719 439.734c0 242.484-197.25 439.75-439.719 439.75z",
"M552.594 440.766c-7.125 1.25-12.5 7.125-13.156 14.328-0.656 7.188 3.625 13.922 10.406 16.438 1 0.375 102.312 38.703 136.531 132.109 22.906 62.547 10.875 136.078-35.781 218.562-4.344 7.688-1.625 17.453 6.062 21.797 2.5 1.406 5.188 2.078 7.875 2.078 5.562 0 10.969-2.922 13.938-8.125 51.469-91.016 64.25-173.562 37.969-245.312-22.812-62.281-70.062-102.625-106.531-125.844 169.438-4.703 228.438 127.281 231.094 133.438 3.5 8.141 12.969 11.828 21 8.391 8.125-3.484 11.875-12.891 8.375-21.016-3.313-7.719-83.781-188.437-317.781-146.844z",
"M406.094 589.562c20.875 0 43.344-1.922 67.406-6.188 7.125-1.25 12.5-7.125 13.156-14.312 0.625-7.188-3.625-13.922-10.375-16.438-1.031-0.375-102.656-39.188-136.656-132.375-22.781-62.5-10.719-135.953 35.906-218.328 4.344-7.688 1.625-17.453-6.062-21.797-7.719-4.312-17.406-1.672-21.812 6.047-51.5 91.031-64.281 173.578-37.969 245.328 22.812 62.281 70.031 102.641 106.531 125.844-169.438 5.688-228.438-127.266-231.094-133.438-3.469-8.109-12.812-11.891-21.031-8.406-8.094 3.469-11.875 12.875-8.406 21 2.969 6.922 67.844 153.062 250.406 153.062z",
"M593.625 308.688c-62.281 22.812-102.625 70.062-125.844 106.547-5.125-169.453 127.281-228.469 133.438-231.109 8.125-3.484 11.875-12.891 8.375-21.016-3.469-8.156-12.969-11.844-21-8.391-7.719 3.312-188.312 83.766-146.844 317.828 1.25 7.109 7.125 12.5 14.312 13.141 0.5 0.047 0.969 0.062 1.438 0.062 6.656 0 12.688-4.125 15-10.453 0.375-1.031 38.719-102.344 132.125-136.562 62.469-22.906 136.031-10.891 218.562 35.781 7.656 4.281 17.406 1.672 21.812-6.047 4.344-7.688 1.625-17.453-6.062-21.797-91-51.484-173.531-64.297-245.313-37.984z",
"M570.031 538.453c-7.5-0.641-13.969 3.625-16.438 10.391-0.375 1.031-38.719 102.344-132.125 136.562-62.5 22.875-136.062 10.859-218.562-35.781-7.688-4.328-17.438-1.688-21.812 6.047-4.344 7.688-1.625 17.453 6.062 21.797 91 51.484 173.5 64.281 245.312 37.984 62.281-22.828 102.656-70.078 125.875-106.562 5.219 169.812-127.25 228.469-133.438 231.094-8.125 3.469-11.906 12.859-8.438 21 2.594 6.078 8.5 9.719 14.719 9.719 2.094 0 4.219-0.406 6.281-1.281 7.719-3.297 188.438-83.266 146.875-317.828-1.25-7.109-7.125-12.5-14.312-13.141z"
],
"attrs": [
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"bombos"
],
"colorPermutations": {
"6868681": [
0,
0,
0,
0,
0
]
}
},
"attrs": [
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
}
],
"properties": {
"order": 1,
"id": 19,
"prevSize": 64,
"code": 58880,
"name": "bombos"
},
"setIdx": 0,
"iconIdx": 0
},
{
"icon": {
"paths": [
"M510.406 967.047c215.844 0 391.438-175.594 391.438-391.422 0-157.25-92.484-296.811-236.375-358.914v-30.914c0-37.25-54.133-58.881-117.137-65.016 12.098-16.072 30.84-29.096 59.949-30.281 44.688-1.5 61.375 23.625 83.156 55.797 17.719 26.234 37.812 55.969 75.812 67.172 9.312 2.75 18.031 3.984 26.219 3.984 51.562-0.016 81.062-49 90.219-78.906 2.562-8.438-2.188-17.344-10.594-19.938-8.406-2.625-17.406 2.141-20 10.547-0.906 2.859-22.469 69.547-76.781 53.625-27-7.953-42.219-30.516-58.375-54.391-22.969-33.969-48.75-72.469-110.969-69.859-49.547 2.018-78.43 29.465-94.676 60.408-78.156-0.365-156.949 21.902-156.949 66.857v30.914c-143.891 62.104-236.375 201.664-236.375 358.914 0 215.828 175.594 391.422 391.438 391.422zM387.344 228.629c29.84 16.537 76.562 25.090 123.062 25.090s93.223-8.553 123.062-25.090v40.23c0 10.75-41.875 35.922-123.062 35.922s-123.062-25.172-123.062-35.922v-40.23zM499.777 150.285c-3.418 12.832-5.137 25.104-5.371 35.137-0.219 8.812 6.75 16.109 15.594 16.344 8.75 0.891 16.125-6.75 16.406-15.547 0.039-1.541 0.734-17.242 6.73-35.467 66.062 4.152 100.332 25.363 100.332 35.045 0 10.75-41.875 35.922-123.062 35.922s-123.062-25.172-123.062-35.922c-0-10.25 38.508-33.363 112.434-35.512zM355.344 251.695v17.164c0 44.594 78 67.922 155.062 67.922s155.062-23.328 155.062-67.922v-17.164c124.875 59.58 204.375 184.191 204.375 323.93 0 198.188-161.25 359.422-359.438 359.422s-359.438-161.234-359.438-359.422c0-139.738 79.5-264.35 204.375-323.93z",
"M315.406 491.25c38.281 0 69.438-31.156 69.438-69.438s-31.156-69.438-69.438-69.438-69.438 31.156-69.438 69.438 31.156 69.438 69.438 69.438zM315.406 384.375c20.656 0 37.438 16.797 37.438 37.438s-16.781 37.438-37.438 37.438-37.438-16.797-37.438-37.438 16.781-37.438 37.438-37.438z",
"M691.906 582.5c2.562 32.234 26 57.938 55.688 61.125 1.688 0.188 3.406 0.281 5.094 0.281 13.688 0 26.812-6.031 36.969-16.953 12.562-13.531 18.906-32.906 17.406-53.125-4.844-64.562-26.219-127.219-61.844-181.188-13.281-20.172-34.094-32.203-55.625-32.203-13.094 0-25.219 4.734-34.094 13.297-21.562 20.703-24.375 55.375-6.656 82.516 24.813 37.609 39.688 81.234 43.063 126.25zM677.719 396.781c3.719-3.594 8.5-4.344 11.875-4.344 8.312 0 20.25 4.688 28.938 17.828 32.625 49.438 52.188 106.812 56.594 165.938 0.875 11.391-2.406 21.953-8.906 28.984-4.031 4.328-8.844 6.719-13.531 6.719l-1.625-0.094c-14.219-1.531-25.938-15.234-27.25-31.781-3.781-50.359-20.469-99.266-48.219-141.344-9.125-13.969-8.219-31.984 2.125-41.906z"
],
"attrs": [
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"bombs"
],
"colorPermutations": {
"6868681": [
0,
0,
0
]
}
},
"attrs": [
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
}
],
"properties": {
"order": 2,
"id": 18,
"prevSize": 64,
"code": 58881,
"name": "bombs"
},
"setIdx": 0,
"iconIdx": 1
},
{
"icon": {
"paths": [
"M97.344 791.953c94.188 39.578 473.531 174.594 489.625 180.328 1.781 0.625 3.594 0.922 5.375 0.922 4.969 0 9.781-2.328 12.875-6.5l389.438-527.344c2.906-3.922 3.844-8.953 2.562-13.672-1.25-4.719-4.625-8.594-9.094-10.516l-67.625-29.141c-0.832-0.361-1.703-0.334-2.555-0.545-2.094-19.088-1.438-42.061 7.805-65.096 0.18-0.443 0.113-0.902 0.25-1.35l60.406-81.51c3.094-4.156 3.969-9.547 2.375-14.469s-5.469-8.766-10.406-10.328l-512.656-161.203c-6.375-2.031-13.25 0.156-17.375 5.344-13.625 17.281-334.562 423.984-384.687 504.25-16.438 26.281-25.219 51.984-29.656 74.578-16.094 58.406 3.781 131.234 63.344 156.25zM896.461 434.766l-317.609 422.209c-7.34-22.555-15.062-60.404 0.859-93.002l1.914 0.684c6.562 2.391 14.031 0.156 18.219-5.531l285.305-384.967c0.859 27.408 7.258 49.463 11.312 60.607zM135.309 716.625c-7.055-10.551-26.625-49.203 0.566-111.121l413.859 147.766c-18.734 41.674-10.164 86.492-1.375 113.447l-413.051-150.092zM466.625 85.375l480.719 151.156-366.125 494-444.406-158.656c-9.312-3.344-18.469-4.953-27.281-4.953-4.125 0-8.188 0.359-12.156 1.062 61.031-90.797 323.375-424.391 369.25-482.609zM65.562 641.75c0.781-2.641 1.688-5.25 2.688-7.797 5.008-12.914 15.469-31.342 34.973-34.59-35.273 87.287 7.996 138.83 9.965 141.121 0.184 0.211 0.453 0.277 0.641 0.477 0.91 0.953 2.027 1.646 3.176 2.359 0.77 0.477 1.453 1.055 2.277 1.389 0.199 0.080 0.328 0.248 0.531 0.322l446.938 162.406c1.812 0.656 3.656 0.969 5.469 0.969 2.883 0 5.621-1.018 8.133-2.531 0.773-0.463 1.312-1.064 2-1.654 0.879-0.75 1.93-1.229 2.648-2.189l341.938-454.547c2.305-3.061 3.109-6.678 2.977-10.229 0.164-2.533-0.070-5.107-1.195-7.584-0.047-0.105-1.082-2.668-2.375-6.279l30.594 13.186-370.406 501.562c-64.906-23.141-392.375-140.219-476.813-175.687-22.906-9.641-37.625-30.156-44.469-53.906-0.062-0.938-0.219-1.891-0.438-2.844-0.125-0.406-6.437-27.172 0.75-63.953z",
"M286.469 444.047l331.469 107.594c1.625 0.531 3.281 0.781 4.938 0.781 3.531 0 7-1.156 9.844-3.375 4.188-3.266 6.469-8.406 6.125-13.703l-18.875-279.484c-0.375-5.453-3.5-10.344-8.281-12.969-4.812-2.594-10.594-2.625-15.406 0.031l-312.594 171.891c-5.594 3.062-8.812 9.172-8.219 15.531 0.625 6.344 4.938 11.734 11 13.703zM472.719 370.547l91.031 28.344-90.719 55.297-0.313-83.641zM495.176 478.154l103.461-63.068 6.676 98.82-110.137-35.752zM595.957 375.41l-111.207-34.639 104.969-57.725 6.238 92.363zM440.711 364.99l0.336 95.592-109.516-35.551 109.18-60.041z"
],
"attrs": [
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"book-of-mudora"
],
"colorPermutations": {
"6868681": [
0,
0
]
}
},
"attrs": [
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
}
],
"properties": {
"order": 3,
"id": 17,
"prevSize": 64,
"code": 58882,
"name": "book-of-mudora"
},
"setIdx": 0,
"iconIdx": 2
},
{
"icon": {
"paths": [
"M575.062 441.469c11.688 0 23.219-0.062 34.531-0.156 69.406 337.234 150.156 508.203 240.062 508.219 4.812 0 9.688-0.484 14.562-1.469 34.969-7.047 60-34.844 74.406-82.609 54.719-181.141-57-644.203-104.969-692.188-34.125-34.109-244.5-35.094-268.375-35.094-89.094 0-386.938 7.172-477.938 99.422-18.125 18.359-27.156 39.141-26.844 61.766 1.312 94.297 174.438 142.109 514.562 142.109zM110.125 260.062c65.438-66.344 286.094-89.891 455.156-89.891 141.562 0 233.719 14.969 245.75 25.719 33.719 33.734 149.781 485.453 96.969 660.313-10.75 35.609-27.594 55.953-50.094 60.484-2.781 0.562-5.5 0.844-8.219 0.844-0.031 0-0.031 0-0.031 0-70.594-0.016-147.625-180.625-211.344-495.547-1.531-7.469-8.094-12.828-15.688-12.828-0.062 0-0.125 0-0.219 0-15.375 0.203-31.188 0.312-47.344 0.312-305.719 0-481.594-40.297-482.562-110.547-0.188-13.938 5.562-26.656 17.625-38.859z",
"M662.812 377.406c0.125 0 0.25 0 0.375 0 105.812-2.422 115.25-12.734 119.281-17.125 4-4.406 13.438-14.688 6.594-120.312-0.563-8.437-7.563-14.969-15.969-14.969-0.094 0-0.188 0-0.312 0-105.469 1.984-115.188 12.594-119.344 17.125-4.125 4.531-13.844 15.141-6.594 120.375 0.594 8.406 7.562 14.906 15.969 14.906zM677.938 264.547c12.281-3.234 47-6 80.062-7.141 1.656 32.953 1.906 67.625-0.125 80.359-12.5 3.141-47.062 5.922-80.031 7.172-1.75-33.047-2.062-67.859 0.094-80.391z"
],
"attrs": [
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"boomerang"
],
"colorPermutations": {
"6868681": [
0,
0
]
}
},
"attrs": [
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
}
],
"properties": {
"order": 4,
"id": 16,
"prevSize": 64,
"code": 58883,
"name": "boomerang"
},
"setIdx": 0,
"iconIdx": 3
},
{
"icon": {
"paths": [
"M82.229 224.988c0.537 0.775 0.863 1.65 1.553 2.34l30.25 30.215 6.812 6.973c0.152 0.156 0.377 0.215 0.535 0.365l311.055 310.688-86.562 86.568-120.246-6.355c-4.625-0.281-8.969 1.453-12.156 4.672l-98.344 98.359c-6.25 6.25-6.25 16.375 0 22.625l55.721 55.732-7.533 7.533c-6.25 6.25-6.25 16.375 0 22.625 3.125 3.125 7.219 4.688 11.312 4.688s8.188-1.562 11.312-4.688l6.729-6.729 57.24 57.229c3.125 3.125 7.219 4.688 11.312 4.688s8.188-1.562 11.312-4.688l98.344-98.359c3.219-3.203 4.906-7.625 4.656-12.156l-6.504-123.082 86.045-86.051 316.359 315.986c0.316 0.377 0.465 0.861 0.818 1.209l38.781 38.344c0.914 0.9 2.033 1.391 3.086 2.029 0.742 0.451 1.385 1.111 2.176 1.43 1.918 0.775 3.953 1.166 5.988 1.166 4.094 0 8.188-1.562 11.312-4.688 163.689-163.705 133.32-460.836-65.553-668.461l34.537-34.537c42.709 41.516 87.639 76.982 108.297 76.982 7.781 0 12.781-3.359 15.594-6.188 3-3 4.688-7.062 4.688-11.312v-194.672c0-8.844-7.156-16-16-16h-194.656c-4.25 0-8.312 1.688-11.312 4.688-4.938 4.938-9.469 14.172-2.875 30.078 7.988 19.299 38.287 56.822 73.719 93.721l-34.768 34.768c-112.484-106.645-255.43-167.957-395.326-167.957-107.156 0-203.281 37.125-270.688 104.547-6.188 6.203-6.25 16.219-0.125 22.5l3.104 3.176zM149.062 770.125l82-82 84.371 4.451-121.965 121.971-44.406-44.422zM261.219 883.891l-45.117-45.102 122.568-122.568 4.549 85.67-82 82zM156.477 254.699c27.607-20.82 65.965-32.355 113.461-32.355 115.158 0 249.338 61.693 354.445 161.266l-169.316 169.326-298.59-298.236zM647.188 406.055c158.625 165.822 201.242 384.072 135.307 473.922l-304.789-304.43 169.482-169.492zM821.969 919.404l-16.314-16.295c87.139-109.551 24.4-352.215-135.83-519.691l75.596-75.6c178.561 187.238 212.559 460.201 76.549 611.586zM899.156 131.469v158.766c-39.406-23.953-134.812-119.359-158.75-158.766h158.75zM349.938 126.766c131.521 0 266.232 57.883 372.705 158.578l-75.643 75.648c-110.977-105.354-253.807-170.648-377.062-170.648-56.5 0-103.406 14.078-136.906 40.875l-19.688-20.156c60.656-54.484 144-84.297 236.594-84.297z"
],
"attrs": [
{
"fill": "rgb(68, 68, 68)"
}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"bow-and-arrow"
],
"colorPermutations": {
"6868681": [
0
]
}
},
"attrs": [
{
"fill": "rgb(68, 68, 68)"
}
],
"properties": {
"order": 5,
"id": 15,
"prevSize": 64,
"code": 58884,
"name": "bow-and-arrow"
},
"setIdx": 0,
"iconIdx": 4
},
{
"icon": {
"paths": [
"M452.531 43.672c-201.781 0-358.062 100.828-380.031 245.203-26.625 174.75 100.344 230.578 212.344 279.844 54.891 24.137 111.281 49.213 149.707 87.121l-243.145 243.16c-6.25 6.25-6.25 16.375 0 22.625l63.25 63.266c3 3 7.062 4.688 11.312 4.688s8.312-1.688 11.312-4.688l258-257.986c20.656 7.238 42.176 10.986 64.531 10.986 74.188 0 153.906-40.5 230.531-117.125 120.781-120.797 155.5-261.266 86.5-349.344-110.406-144.734-279.656-227.75-464.312-227.75zM265.969 950.953l-40.625-40.641 231.922-231.939c14.969 13.895 30.617 25.363 46.902 34.395l-238.199 238.186zM807.719 598.141c-122.562 122.531-248.438 141.578-339.219 46.734-42.281-48.938-107.625-77.672-170.781-105.453-111.344-48.969-216.5-95.219-193.594-245.734 19.531-128.359 162.812-218.016 348.406-218.016 174.594 0 334.562 78.422 439 215.312 58.656 74.906 25 198.344-83.812 307.156z",
"M802.344 313.516c-51.406 0-120.875 37.531-181.281 97.953-40.125 40.109-70.906 85.125-86.656 126.734-17.312 45.781-14.688 83.156 7.406 105.25 12.219 12.234 29.75 18.703 50.688 18.703 51.406 0 120.875-37.531 181.281-97.953 88.719-88.719 122.781-188.453 79.25-231.984-12.25-12.234-29.781-18.703-50.688-18.703zM751.156 541.578c-53 52.984-116.75 88.578-158.656 88.578-12.438 0-21.875-3.141-28.062-9.328-12.469-12.484-12.531-38.469-0.094-71.297 14.188-37.453 42.344-78.453 79.344-115.438 53-52.984 116.75-88.578 158.656-88.578 12.406 0 21.875 3.141 28.062 9.328 25.406 25.406-0.875 108.359-79.25 186.734z",
"M496.656 251.109l-64.305-33.74c16.531-16.156 32.676-29.328 46.746-39.6l60.934 30.402c2.312 1.156 4.75 1.688 7.156 1.688 5.875 0 11.531-3.25 14.312-8.859 3.938-7.906 0.75-17.516-7.156-21.453l-44.527-22.217c7.578-4.504 12.477-7.039 12.746-7.174 7.938-3.891 11.219-13.469 7.312-21.406-3.875-7.875-13.406-11.234-21.375-7.328-1.867 0.914-14.387 7.188-32.445 19.062l-40.898-20.406c-7.969-3.984-17.562-0.719-21.469 7.172-3.938 7.906-0.75 17.516 7.156 21.453l25.82 12.885c-13.992 10.926-29.211 24.395-44.438 39.975l-47.867-25.117c1.047-0.859 1.688-1.367 1.766-1.43 7-5.375 8.344-15.406 2.969-22.422-5.344-6.969-15.375-8.359-22.406-3-0.977 0.742-5.844 4.59-12.812 10.855l-29-15.215c-7.75-4.031-17.5-1.109-21.594 6.734-4.125 7.828-1.094 17.5 6.719 21.609l20.094 10.545c-10.996 11.994-23.148 26.881-34.781 44.439l-39.375-22.766c-7.531-4.437-17.375-1.812-21.844 5.828-4.438 7.656-1.812 17.437 5.844 21.859l39.129 22.625c-8.465 15.982-16.051 33.387-21.691 52.377l-45.563-26.877c-7.594-4.453-17.437-1.984-21.906 5.656-4.5 7.609-1.969 17.422 5.656 21.906l54.523 32.162c-3.836 24.010-4.637 49.727-0.43 77.166 1.219 7.922 8.031 13.578 15.781 13.578 0.812 0 1.625-0.062 2.469-0.188 8.719-1.344 14.719-9.5 13.375-18.234-2.922-19.053-2.945-37.234-1.121-54.584l52.348 30.879c-0.789 4.371-1.879 8.518-2.508 13.002-1.219 8.75 4.875 16.828 13.625 18.062 0.75 0.109 1.5 0.156 2.25 0.156 7.844 0 14.688-5.781 15.812-13.781 0.008-0.070 0.031-0.135 0.039-0.205l28.93 17.064c2.562 1.5 5.344 2.219 8.125 2.219 5.469 0 10.812-2.812 13.781-7.875 4.5-7.609 1.969-17.422-5.656-21.906l-38.484-22.701c5.047-19.543 11.781-37.828 19.82-54.748l58.258 33.684c2.5 1.469 5.281 2.156 8 2.156 5.5 0 10.875-2.859 13.844-7.984 4.438-7.656 1.812-17.438-5.844-21.859l-59.004-34.117c11.074-18.381 23.41-34.785 36.16-49.508l72.125 37.844c2.375 1.234 4.906 1.828 7.438 1.828 5.75 0 11.312-3.109 14.156-8.562 4.125-7.828 1.094-17.5-6.719-21.609zM310.031 357.24l-53.633-31.635c5.094-19.287 12.312-37.117 20.773-53.244l53.148 30.73c-8.039 16.768-14.805 34.902-20.289 54.148zM345.453 274.904l-51.957-30.045c12.391-18.508 25.293-33.688 36.262-45.174l50.312 26.4c-12.203 14.662-23.937 30.889-34.617 48.818z"
],
"attrs": [
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"bug-net"
],
"colorPermutations": {
"6868681": [
0,
0,
0
]
}
},
"attrs": [
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
}
],
"properties": {
"order": 6,
"id": 14,
"prevSize": 64,
"code": 58885,
"name": "bug-net"
},
"setIdx": 0,
"iconIdx": 5
},
{
"icon": {
"paths": [
"M766.438 61.516c-12.875-2.062-25.938-3.109-38.875-3.109-120.656 0-222.094 86.625-241.156 205.953-6.688 41.844 7.594 105.734 13.25 128.422l-444.094 526.359c-5.375 6.344-4.969 15.734 0.906 21.625l21.344 21.375c3.094 3.109 7.188 4.688 11.312 4.688 3.656 0 7.312-1.25 10.312-3.766l530-447.188-0.375-0.453c7.75-9.219 20.031-38.531 59.031-131.797 2.875-6.812 0.688-14.703-5.281-19.078-23.469-17.188-35.219-45.438-30.719-73.703 6.594-41.453 45.281-70.547 87.844-63.672 20.25 3.234 38.031 14.156 50.062 30.75 12 16.594 16.844 36.875 13.594 57.125-4.5 28.266-24.469 51.438-52.125 60.484-8.219 2.688-12.812 11.422-10.375 19.734 40.438 137.172 56.656 137.172 67.375 137.172 1.969 0 4.812-0.531 6.625-1.234 81.375-31.141 140.469-103.828 154.188-189.688 10.312-64.484-5.125-129.125-43.438-182.016s-94.937-87.688-159.406-97.984zM937.656 336.453c-11.406 71.531-59.094 132.547-125.312 161.328-8.875-15.594-24.094-57.859-36.375-97.75 31.469-15.453 53.656-44.938 59.25-79.938 4.562-28.688-2.281-57.422-19.312-80.938-17.031-23.531-42.219-39-70.906-43.578-60.344-9.641-115.125 31.484-124.531 90.219-5.719 35.969 7 71.844 33.531 96.406-17.406 41.516-41.625 98.656-47.5 111.156l-516.438 435.75-0.594-0.562 439.969-521.453c3.406-4.016 4.594-9.469 3.219-14.547-0.219-0.797-21.625-79.469-14.625-123.125 16.562-103.734 104.688-179.016 209.531-179.016 11.25 0 22.625 0.922 33.812 2.703 56.062 8.953 105.25 39.203 138.562 85.156 33.281 45.969 46.688 102.156 37.719 158.188z"
],
"attrs": [
{
"fill": "rgb(68, 68, 68)"
}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"cane-of-byrna"
],
"colorPermutations": {
"6868681": [
0
]
}
},
"attrs": [
{
"fill": "rgb(68, 68, 68)"
}
],
"properties": {
"order": 7,
"id": 13,
"prevSize": 64,
"code": 58886,
"name": "cane-of-byrna"
},
"setIdx": 0,
"iconIdx": 6
},
{
"icon": {
"paths": [
"M512.25 41.703c-260.094 0-471.719 211.625-471.719 471.734 0 260.125 211.625 471.75 471.719 471.75 260.125 0 471.75-211.625 471.75-471.75 0-260.109-211.625-471.734-471.75-471.734zM512.25 953.188c-242.469 0-439.719-197.266-439.719-439.75 0-242.469 197.25-439.734 439.719-439.734s439.75 197.266 439.75 439.734c0 242.484-197.281 439.75-439.75 439.75z",
"M732.406 477.406l-255.547-32.617 58.859-261.961c1.688-7.578-2.312-15.281-9.469-18.266-7.156-3.016-15.438-0.422-19.656 6.156l-225.969 354.281c-2.938 4.625-3.312 10.438-1 15.391 2.344 4.969 7.031 8.391 12.469 9.094l255.547 32.617-58.859 261.93c-1.688 7.594 2.312 15.297 9.469 18.281 2 0.844 4.094 1.234 6.156 1.234 5.312 0 10.469-2.672 13.5-7.391l225.969-354.266c2.938-4.625 3.312-10.438 1-15.391-2.344-4.969-7.031-8.391-12.469-9.094zM540.062 761.922l42.688-189.953c0.059-0.256-0.031-0.5 0.016-0.756 0.047-0.258 0.203-0.465 0.234-0.729 0.102-0.805-0.148-1.543-0.168-2.33-0.023-1.121 0.012-2.217-0.238-3.285-0.227-0.994-0.676-1.857-1.086-2.777-0.422-0.955-0.789-1.9-1.387-2.752-0.59-0.84-1.34-1.49-2.082-2.205-0.734-0.709-1.406-1.434-2.277-1.998-0.91-0.594-1.941-0.924-2.973-1.326-0.742-0.291-1.359-0.785-2.164-0.967-0.25-0.057-0.484 0.029-0.734-0.016-0.262-0.047-0.469-0.215-0.734-0.25l-247.969-31.641 163.25-255.969-42.688 189.953c-0.062 0.271 0.031 0.529-0.016 0.801-0.047 0.244-0.203 0.434-0.234 0.684-0.102 0.807 0.152 1.545 0.172 2.334 0.023 1.119-0.016 2.211 0.234 3.279 0.23 0.994 0.68 1.859 1.086 2.779 0.426 0.955 0.789 1.898 1.387 2.752 0.59 0.846 1.348 1.498 2.094 2.215 0.73 0.705 1.398 1.424 2.262 1.984 0.914 0.594 1.945 0.93 2.98 1.332 0.746 0.289 1.355 0.785 2.16 0.965 0.25 0.057 0.484-0.027 0.734 0.016 0.262 0.047 0.469 0.215 0.734 0.25l247.969 31.641-163.25 255.969z",
"M267.844 246.391c-6.25-6.25-16.375-6.25-22.625 0-71.344 71.328-110.625 166.172-110.625 267.047s39.281 195.719 110.625 267.047c3.125 3.125 7.219 4.688 11.312 4.688s8.188-1.562 11.312-4.688c6.25-6.25 6.25-16.375 0-22.625-65.281-65.281-101.25-152.094-101.25-244.422s35.969-179.141 101.25-244.422c6.25-6.25 6.25-16.375 0-22.625z",
"M756.688 246.391c-6.25 6.25-6.25 16.375 0 22.625 65.281 65.281 101.25 152.094 101.25 244.422s-35.969 179.141-101.25 244.422c-6.25 6.25-6.25 16.375 0 22.625 3.125 3.125 7.219 4.687 11.312 4.687s8.188-1.562 11.312-4.688c71.344-71.328 110.625-166.172 110.625-267.047s-39.281-195.719-110.625-267.047c-6.25-6.25-16.375-6.25-22.625-0z"
],
"attrs": [
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"ether"
],
"colorPermutations": {
"6868681": [
0,
0,
0,
0
]
}
},
"attrs": [
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
}
],
"properties": {
"order": 8,
"id": 12,
"prevSize": 64,
"code": 58887,
"name": "ether"
},
"setIdx": 0,
"iconIdx": 7
},
{
"icon": {
"paths": [
"M802.656 63.75c-78.807 0-143.965 57.631-156.668 132.877-47.729-26.365-108.275-11.088-137.082 35.811-17.406 28.312-22.75 61.719-15.031 94.062 6.156 25.797 20.031 48.453 39.75 65.406l-466.906 467.875c-6.25 6.25-6.25 16.359 0 22.609l76.656 76.672c3.125 3.125 7.219 4.688 11.312 4.688s8.188-1.562 11.281-4.672l468.281-466.609c39.094 45.438 106.688 57.125 159.438 24.75 23.406-14.359 39.781-36.984 46.156-63.688 6.033-25.268 2.092-51.201-10.492-73.762 75.148-12.791 132.68-77.926 132.68-156.66 0-87.875-71.5-159.359-159.375-159.359zM154.719 925.141l-54.062-54.078 234.975-235.461 54.723 54.734-235.635 234.805zM803.176 350.416c-27.031-18.631-63.584-20.896-93.238-2.588-33.594 20.656-44.125 64.797-23.469 98.391 17.438 28.422 54.719 37.281 83.094 19.828 7.531-4.625 9.875-14.469 5.25-22-4.594-7.531-14.438-9.812-22-5.266-6.469 3.984-14.188 5.219-21.469 3.438-7.406-1.75-13.656-6.281-17.625-12.75-5.531-9-7.219-19.609-4.781-29.875 2.469-10.281 8.75-18.984 17.75-24.516 25.125-15.438 58.031-7.578 73.5 17.531 9.906 16.109 12.938 35.109 8.531 53.484-4.375 18.391-15.656 33.969-31.781 43.875-43.406 26.594-100.469 13.078-127.188-30.344-2.562-4.172-6.875-6.938-11.75-7.516-4.844-0.594-9.719 1.094-13.156 4.562l-211.824 211.078-54.787-54.797 211.205-211.641c3.469-3.453 5.156-8.312 4.562-13.172-0.562-4.859-3.312-9.188-7.5-11.75-21.031-12.938-35.781-33.297-41.5-57.312-5.75-24.031-1.781-48.844 11.156-69.891 20.469-33.25 64.219-43.578 97.375-23.234 25.062 15.422 32.938 48.391 17.531 73.5-11.469 18.562-35.906 24.359-54.406 12.953-6.469-3.969-11-10.219-12.75-17.609-1.781-7.391-0.531-15 3.438-21.469 4.625-7.516 2.281-17.375-5.219-22.016-7.5-4.594-17.344-2.312-22.031 5.234-8.469 13.734-11.062 29.953-7.344 45.656 3.75 15.719 13.406 29.016 27.156 37.469 16.25 10 35.406 13.047 54.062 8.656 18.594-4.438 34.344-15.844 44.344-32.125 18.365-29.898 16.008-66.734-2.93-93.791 0.387-69.893 57.293-126.662 127.273-126.662 70.25 0 127.375 57.141 127.375 127.359-0 70.041-56.85 127.018-126.855 127.307z",
"M746.406 146.844c-12.906 12.891-20.031 30.047-20.031 48.297s7.125 35.406 20.031 48.297c12.906 12.906 30.062 20 48.312 20 18.219 0 35.375-7.094 48.281-20 12.906-12.891 20-30.047 20-48.297s-7.094-35.406-20-48.297c-25.844-25.828-70.812-25.766-96.594-0zM820.375 220.812c-13.75 13.734-37.625 13.703-51.344 0-6.875-6.859-10.656-15.969-10.656-25.672s3.781-18.812 10.656-25.672 15.969-10.641 25.688-10.641c9.688 0 18.781 3.781 25.656 10.641s10.625 15.969 10.625 25.672-3.75 18.813-10.625 25.672z"
],
"attrs": [
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"fire-rod"
],
"colorPermutations": {
"6868681": [
0,
0
]
}
},
"attrs": [
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
}
],
"properties": {
"order": 9,
"id": 11,
"prevSize": 64,
"code": 58888,
"name": "fire-rod"
},
"setIdx": 0,
"iconIdx": 8
},
{
"icon": {
"paths": [
"M234.062 995.75c4.094 0 8.188-1.562 11.312-4.688l55.281-55.266c3-3 4.688-7.062 4.688-11.312s-1.688-8.312-4.688-11.312l-184.625-184.594c-6.25-6.25-16.375-6.25-22.625 0l-55.25 55.25c-6.25 6.25-6.25 16.375 0 22.625l184.594 184.609c3.125 3.125 7.219 4.687 11.313 4.687zM104.719 762.516l162 161.969-32.656 32.641-161.969-161.984 32.625-32.625z",
"M858.844 39.188c-74.906 0-159.562 24.609-163.125 25.672-6.906 2.016-11.625 8.422-11.5 15.625s5.062 13.438 12.031 15.219c29.922 7.668 107.867 32.094 149.215 61.461l-44.469 45.906c-37.234-21.908-92.832-13.609-128.465 22.039-20.219 20.219-32.625 46.016-34.906 72.625-1.766 20.578 2.648 39.789 12.5 55.775l-24.594 25.26c-37.223-22.006-92.945-13.729-128.625 21.965-20.219 20.219-32.625 46-34.906 72.625-1.75 20.668 2.68 39.973 12.609 55.998l-44.023 45.406-80.367-80.373c-6-6-16.625-6-22.625 0l-55.25 55.25c-6.25 6.25-6.25 16.375 0 22.625l184.594 184.609c3 3 7.062 4.688 11.312 4.688s8.312-1.688 11.312-4.688l55.25-55.25c6.25-6.25 6.25-16.375 0-22.625l-81.582-81.59 43.41-44.775c14.734 10.664 32.738 16.678 52.266 16.678 29.25 0 58.906-12.859 81.312-35.266 38.789-38.805 45.625-95.699 18.582-133.309l23.262-23.893c14.773 10.762 32.848 16.842 52.469 16.842 29.25 0 58.906-12.859 81.312-35.266 38.836-38.852 45.637-95.828 18.48-133.438l44.301-45.736c36.824 48.189 63.711 151.701 64 152.83 1.781 6.984 8.031 11.906 15.219 12.031 0.094 0 0.188 0 0.281 0 7.094 0 13.344-4.672 15.344-11.484 6.031-20.547 57.219-202.5-4.031-263.734-19.719-19.719-53.562-29.703-100.594-29.703zM468.25 722.938l-161.969-161.984 32.625-32.625 161.969 161.984-32.625 32.625zM607.594 511.422c-25.273 25.275-63.434 32.193-88.406 17.955l29-29.908c6.125-6.344 5.969-16.484-0.375-22.625-6.312-6.156-16.438-5.969-22.625 0.344l-26.895 27.74c-3.59-8.652-5.293-18.359-4.387-28.834 1.625-19.109 10.719-37.844 25.625-52.734 16.438-16.453 37.844-25.891 58.688-25.891 8.828 0 16.906 1.832 24.172 5.064l-28.797 29.576c-6.156 6.328-6.031 16.453 0.312 22.625 3.094 3.016 7.125 4.531 11.156 4.531 4.156 0 8.312-1.625 11.469-4.844l29.648-30.449c14.227 25.098 7.328 61.535-18.586 87.449zM783.219 335.797c-25.336 25.336-63.629 32.262-88.594 17.881l24.438-25.1c6.156-6.328 6.031-16.453-0.312-22.625-6.281-6.125-16.406-6.016-22.625 0.312l-22.289 22.893c-3.547-8.617-5.219-18.275-4.336-28.689 1.656-19.109 10.75-37.844 25.656-52.734 16.438-16.453 37.844-25.891 58.688-25.891 8.797 0 16.852 1.818 24.102 5.027l-27.977 28.879c-6.125 6.344-5.969 16.469 0.375 22.625 3.094 3 7.125 4.5 11.125 4.5 4.188 0 8.344-1.625 11.5-4.875l28.801-29.732c14.281 25.1 7.391 61.588-18.551 87.529zM946.219 267.484c-14.312-41.125-36.656-94.078-63.969-121.391-27.25-27.266-80.031-49.562-121.125-63.891 28.844-5.688 64.688-11.016 97.719-11.016 37.719 0 64.656 7.031 77.969 20.328 29.813 29.812 21.719 113.469 9.406 175.969z",
"M326.312 888.281c3.125 3.125 7.219 4.688 11.312 4.688s8.188-1.562 11.312-4.688c6.25-6.25 6.25-16.375 0-22.625l-186.562-186.531c-6.25-6.25-16.375-6.25-22.625 0s-6.25 16.375 0 22.625l186.563 186.531z",
"M370.719 843.859c3.125 3.125 7.219 4.688 11.312 4.688s8.188-1.562 11.312-4.688c6.25-6.25 6.25-16.375 0-22.625l-186.531-186.547c-6.25-6.25-16.375-6.25-22.625 0s-6.25 16.375 0 22.625l186.531 186.547z",
"M413.219 801.375c3.125 3.125 7.219 4.688 11.312 4.688s8.188-1.562 11.312-4.688c6.25-6.25 6.25-16.375 0-22.625l-186.562-186.531c-6.25-6.25-16.375-6.25-22.625 0s-6.25 16.375 0 22.625l186.563 186.531z"
],
"attrs": [
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"hookshot"
],
"colorPermutations": {
"6868681": [
0,
0,
0,
0,
0
]
}
},
"attrs": [
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
}
],
"properties": {
"order": 10,
"id": 10,
"prevSize": 64,
"code": 58889,
"name": "hookshot"
},
"setIdx": 0,
"iconIdx": 9
},
{
"icon": {
"paths": [
"M949.312 337.328v-247.75c0-2.082-0.422-4.154-1.23-6.109-1.621-3.918-4.742-7.039-8.66-8.66-1.953-0.809-4.027-1.23-6.109-1.23h-247.719c-8.844 0-16 7.156-16 16v103.422c-3.086-2.545-6.129-5.137-9.594-7.266-23.375-14.375-51-18.812-77.656-12.422-26.688 6.375-49.312 22.766-63.688 46.156-32.406 52.703-20.719 120.312 24.75 159.453l-466.812 468.078c-6.219 6.25-6.219 16.359 0.031 22.609l76.656 76.672c3.125 3.125 7.219 4.688 11.312 4.688s8.188-1.562 11.312-4.672l468.062-466.781c16.938 19.75 39.594 33.625 65.406 39.781 32.281 7.688 65.75 2.406 94.062-15.047 23.375-14.375 39.781-37 46.125-63.703 6.375-26.703 1.969-54.281-12.406-77.656-2.121-3.455-4.703-6.488-7.242-9.562h103.398c8.844-0 16-7.156 16-16zM831.5 214.016l85.812-85.812v171.625l-85.812-85.813zM808.875 191.391l-85.812-85.812h171.625l-85.813 85.812zM164.625 912.359l-54.062-54.078 234.914-235.555 54.711 54.711-235.563 234.922zM818.438 433.125c-4.375 18.391-15.656 33.969-31.75 43.875-21.062 12.953-46 16.906-69.875 11.172-24.031-5.734-44.375-20.484-57.312-41.516-2.562-4.172-6.875-6.938-11.75-7.516-4.844-0.578-9.719 1.109-13.188 4.562l-211.719 211.141-54.773-54.773 211.148-211.727c3.438-3.469 5.125-8.312 4.531-13.172-0.562-4.859-3.312-9.188-7.5-11.75-43.438-26.703-57.031-83.766-30.344-127.203 9.906-16.109 25.469-27.391 43.875-31.781 18.438-4.406 37.375-1.359 53.469 8.562 12.156 7.469 20.688 19.219 24 33.094s1 28.219-6.469 40.391c-11.406 18.531-35.719 24.422-54.375 12.969-13.344-8.219-17.531-25.766-9.344-39.109 4.625-7.516 2.281-17.375-5.25-22-7.438-4.656-17.344-2.312-22 5.25-17.438 28.375-8.562 65.656 19.844 83.109 16.312 10.016 35.531 13.047 54.062 8.656 18.562-4.438 34.312-15.844 44.312-32.125 7.613-12.363 11.461-26.176 12.184-40.275 0.863-1.969 1.379-4.121 1.379-6.412v-127.187l84.656 84.656-49.906 49.906c-6.25 6.25-6.25 16.375 0 22.625 3.125 3.125 7.219 4.688 11.312 4.688s8.188-1.562 11.312-4.688l49.906-49.906 84.688 84.688h-132.531c-2.508 0-4.797 0.688-6.906 1.713-12.055 1.461-23.785 5.268-34.438 11.818-16.281 10-27.688 25.75-32.125 44.328-4.438 18.594-1.375 37.797 8.625 54.078 17.469 28.375 54.75 37.266 83.125 19.812 7.531-4.625 9.875-14.469 5.25-22-4.594-7.562-14.438-9.797-22-5.266-13.312 8.266-30.875 4.047-39.125-9.312-5.531-9-7.219-19.609-4.75-29.875 2.438-10.266 8.75-18.984 17.75-24.516 12.188-7.469 26.469-9.766 40.375-6.453 13.875 3.312 25.625 11.828 33.094 23.984 9.906 16.109 12.938 35.094 8.531 53.484z"
],
"attrs": [
{
"fill": "rgb(68, 68, 68)"
}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"ice-rod"
],
"colorPermutations": {
"6868681": [
0
]
}
},
"attrs": [
{
"fill": "rgb(68, 68, 68)"
}
],
"properties": {
"order": 11,
"id": 9,
"prevSize": 64,
"code": 58890,
"name": "ice-rod"
},
"setIdx": 0,
"iconIdx": 10
},
{
"icon": {
"paths": [
"M628.094 166.541c-3.129-60.852-53.197-109.525-114.812-109.525-61.613 0-111.65 48.67-114.781 109.518-164.912 38.215-263.783 146.74-268.75 152.311-4.188 4.703-5.25 11.438-2.656 17.188 2.562 5.75 8.281 9.453 14.594 9.453h109.781c-6.082 33.354-41.633 248.811-0.813 505.547h-93.438c-8.844 0-16 7.156-16 16v88.219c0 8.844 7.156 16 16 16h712.125c8.844 0 16-7.156 16-16v-88.219c0-8.844-7.156-16-16-16h-93.076c8.596-50.369 38.91-259.887-1.344-505.547h109.951c6.312 0 12.031-3.703 14.594-9.453 2.594-5.75 1.531-12.484-2.656-17.188-4.967-5.57-103.824-114.082-268.719-152.303zM513.281 89.016c41.721 0 76.057 30.867 82.143 70.896-25.975-4.254-53.367-6.709-82.143-6.709-28.764 0-56.146 2.455-82.111 6.705 6.090-40.033 40.422-70.893 82.111-70.893zM853.344 939.25h-680.125v-56.219h680.125v56.219zM743.762 851.031h-460.76c-44.617-274.273 0.283-501.766 0.748-504.047 0.104-0.512-0.053-0.992 0-1.5h459c0.035 0.326-0.086 0.627-0.031 0.953 42.598 255.145 7.223 470.543 1.043 504.594zM181.656 313.484c51.188-44.312 169.562-128.281 331.625-128.281 161.625 0 280.219 83.969 331.531 128.281h-663.156z",
"M608.594 615.109c-14.125-34.734-21.906-53.875 2.469-85.719 5.375-7.016 4.062-17.062-2.969-22.438-6.906-5.312-17.062-4.078-22.406 2.969-35.562 46.391-21.562 80.812-6.719 117.25 7.812 19.25 16.688 41.078 20.125 68.484 4.188 33.531-18.406 70.859-53.75 88.75-17.531 8.859-63.25 24.812-109.219-18.672-53.469-50.547-24.656-106.75 15.375-169.672l3.75-5.859c19.438-30.703 25.031-78.453 26.062-115.812 20.125 37.953 39.281 97.016 15.188 161.719-3.062 8.281 1.125 17.5 9.406 20.578 8.375 3.141 17.5-1.141 20.594-9.422 48-129.016-46.781-233.594-50.844-237.984-4.656-5.062-12.031-6.547-18.281-3.75s-10.031 9.297-9.406 16.125c2.75 29.094 4.562 113-19.781 151.422l-3.656 5.797c-32.688 51.359-87.406 137.297-10.406 210.109 26.406 24.969 57.656 37.812 89.375 37.812 18.906 0 38-4.562 56.312-13.844 47.719-24.172 76.938-74.031 71.031-121.266-3.938-31.594-13.688-55.484-22.25-76.578z",
"M660.062 373.5c-27.562 0-50 22.438-50 50s22.438 49.984 50 49.984 49.969-22.422 49.969-49.984-22.406-50-49.969-50zM660.062 441.484c-9.938 0-18-8.062-18-17.984s8.062-18 18-18c9.906 0 17.969 8.078 17.969 18s-8.062 17.984-17.969 17.984z"
],
"attrs": [
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"lamp"
],
"colorPermutations": {
"6868681": [
0,
0,
0
]
}
},
"attrs": [
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
}
],
"properties": {
"order": 12,
"id": 8,
"prevSize": 64,
"code": 58891,
"name": "lamp"
},
"setIdx": 0,
"iconIdx": 11
},
{
"icon": {
"paths": [
"M877.852 283.006l45.68-45.678c3-3 4.688-7.062 4.688-11.312s-1.688-8.312-4.688-11.312l-111.938-111.922c-6-6-16.625-6-22.625 0l-45.648 45.676c-55.984-45.307-117.125-84.496-182.977-115.488-6.125-2.828-13.375-1.594-18.125 3.172l-222.156 222.172c-4.781 4.766-6.031 12.016-3.156 18.125 30.984 65.84 70.164 126.969 115.461 182.947l-397.086 397.084c-3 3-4.688 7.062-4.688 11.312s1.688 8.312 4.688 11.312l111.938 111.922c3.125 3.125 7.219 4.688 11.312 4.688s8.188-1.562 11.312-4.688l397.070-397.072c55.98 45.301 117.113 84.488 182.961 115.479 2.188 1.016 4.5 1.516 6.812 1.516 4.156 0 8.25-1.625 11.312-4.688l222.156-222.172c4.781-4.766 6.031-12.016 3.156-18.125-30.984-65.84-70.164-126.969-115.461-182.947zM800.281 136.719l89.312 89.297-31.969 31.969c-27.625-31.781-57.563-61.719-89.281-89.297l31.938-31.969zM297.906 817.703l-89.312-89.297 31.68-31.68 89.297 89.312-31.664 31.664zM244.781 870.828l-89.312-89.297 30.5-30.5 89.312 89.297-30.5 30.5zM158.531 957.078l-89.312-89.297 63.625-63.625 89.312 89.297-63.625 63.625zM352.195 763.414l-89.297-89.312 189.695-189.695c27.625 31.797 57.562 61.734 89.312 89.297l-189.711 189.711zM753.375 675.625c-64.711-31.484-124.875-70.873-179.406-116.738-18.945-15.902-37.301-32.637-54.883-50.184-0.242-0.242-0.52-0.457-0.762-0.699-17.77-17.775-34.707-36.396-50.855-55.613-45.883-54.549-85.281-114.727-116.781-179.453l206.156-206.172c64.789 31.523 125.023 70.959 179.609 116.896 18.762 15.771 36.938 32.359 54.363 49.732 0.586 0.584 1.184 1.156 1.77 1.74 17.516 17.562 34.234 35.914 50.164 54.865 45.883 54.549 85.281 114.725 116.781 179.453l-206.156 206.172z"
],
"attrs": [
{
"fill": "rgb(68, 68, 68)"
}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"magic-hammer"
],
"colorPermutations": {
"6868681": [
0
]
}
},
"attrs": [
{
"fill": "rgb(68, 68, 68)"
}
],
"properties": {
"order": 13,
"id": 7,
"prevSize": 64,
"code": 58892,
"name": "magic-hammer"
},
"setIdx": 0,
"iconIdx": 12
},
{
"icon": {
"paths": [
"M510.969 935.969c176.906 0 302.719-40.547 363.906-117.266 35.219-44.141 46.625-98.984 33.031-158.594-20.266-88.793-132.465-172.246-238.641-233.145 5.703-2.445 9.703-8.096 9.703-14.699 0-8.844-7.156-16-16-16h-86.648c0.23-2.266 0.68-4.469 0.68-6.797 0-5.004-0.652-9.84-1.699-14.531h87.668c8.844 0 16-7.156 16-16 0-8.566-6.758-15.412-15.219-15.842 24.223-57.258 110.75-122.092 145.375-144.111 3.625-2.312 6.188-5.984 7.062-10.203s0.031-8.609-2.344-12.188c-1.969-2.906-48.25-71.109-105.375-71.109-32.531 0-48.875 21.203-62 38.25-12.656 16.438-20.594 25.75-36.594 25.75s-23.969-9.312-36.625-25.766c-13.125-17.031-29.469-38.234-62-38.234s-48.875 21.203-62.031 38.234c-12.656 16.453-20.625 25.766-36.625 25.766-16.062 0-24.031-9.312-36.75-25.781-13.125-17.031-29.5-38.219-62.062-38.219-57.281 0-103.719 68.172-105.656 71.078-2.406 3.578-3.25 7.984-2.375 12.203s3.438 7.906 7.062 10.219c34.625 22.020 121.152 86.854 145.375 144.111-8.461 0.43-15.219 7.275-15.219 15.842 0 8.844 7.156 16 16 16h87.668c-1.047 4.691-1.699 9.527-1.699 14.531 0 2.328 0.449 4.531 0.68 6.797h-86.648c-8.844 0-16 7.156-16 16 0 6.352 3.77 11.725 9.125 14.309-105.953 60.297-217.492 143.293-238.062 233.535-13.594 59.609-2.188 114.453 33.031 158.594 61.187 76.719 187 117.266 363.906 117.266zM476.938 389.469c0-19.016 15.281-34.484 34.031-34.484s34.031 15.469 34.031 34.484-15.281 34.484-34.031 34.484-34.031-15.469-34.031-34.484zM392.203 342.938c-20.961-68.021-111.898-136.443-147.797-161.297 15.594-18.578 42.906-44.156 69.375-44.156 16.062 0 24.031 9.312 36.75 25.781 13.125 17.031 29.5 38.219 62.062 38.219 32.531 0 48.844-21.188 61.969-38.219 12.688-16.469 20.656-25.781 36.688-25.781 16 0 23.969 9.312 36.625 25.766 13.125 17.031 29.469 38.234 62 38.234 32.5 0 48.844-21.203 61.969-38.234 12.656-16.453 20.625-25.766 36.625-25.766 26.219 0 53.469 25.578 69.062 44.156-35.93 24.854-126.836 93.275-147.797 161.297h-71.723c-11.988-12.287-28.629-19.953-47.043-19.953s-35.055 7.666-47.043 19.953h-71.723zM145.219 667.234c16.438-72.078 112.5-156.891 270.469-238.812 0.078-0.039 0.117-0.115 0.195-0.156h41.703c2.070 2.881 4.234 5.693 6.727 8.201-3.375 6.49-6.633 13.389-9.938 20.83-17.781 39.859-37.938 85.047-105.188 92.156-8.781 0.922-15.156 8.797-14.219 17.578 0.875 8.219 7.812 14.328 15.875 14.328 0.562 0 1.125-0.031 1.719-0.094 85.594-9.031 112.938-70.359 131.031-110.953 2.855-6.385 5.547-12.16 8.266-17.537 6.090 1.871 12.422 3.178 19.109 3.178s13.020-1.307 19.109-3.178c2.719 5.377 5.41 11.152 8.266 17.537 18.094 40.594 45.438 101.922 131.031 110.953 0.594 0.062 1.156 0.094 1.719 0.094 8.062 0 15-6.109 15.875-14.328 0.938-8.781-5.438-16.656-14.219-17.578-67.25-7.109-87.406-52.297-105.188-92.156-3.305-7.441-6.562-14.34-9.938-20.83 2.492-2.508 4.656-5.32 6.727-8.201h41.531c0.496 0.336 0.824 0.824 1.367 1.109 91.312 48.031 247.75 142.812 269.469 237.859 11.5 50.484 2.469 94.75-26.844 131.516-54.125 67.859-174.469 105.219-338.906 105.219s-284.781-37.359-338.906-105.219c-29.312-36.766-38.344-81.031-26.844-131.516z"
],
"attrs": [
{
"fill": "rgb(68, 68, 68)"
}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"magic-powder"
],
"colorPermutations": {
"6868681": [
0
]
}
},
"attrs": [
{
"fill": "rgb(68, 68, 68)"
}
],
"properties": {
"order": 14,
"id": 6,
"prevSize": 64,
"code": 58893,
"name": "magic-powder"
},
"setIdx": 0,
"iconIdx": 13
},
{
"icon": {
"paths": [
"M886 110.516c-15.25-16.672-42.938-25.125-82.312-25.125-123.094 0-333.844 79.922-481.938 228.016-203.844 203.844-264.844 406.297-155.406 515.75 68.938 68.938 179.812 70.281 306.531 3.906 41.906 42.734 146.844 102.922 208.156 102.922h0.031c16.406 0 29.656-4.188 39.312-12.453 32.875-28.094 12.812-107.547-30.25-226.641-3.062-8.531-6.219-17.25-8.156-23.062 188.719-193.578 266.406-495.156 204.031-563.312zM653.031 657.562c-8.156 8.219-6.719 12.188 7 50.203 51.406 142.219 49.875 182.609 39.531 191.453-4.594 3.938-12.594 4.766-18.5 4.766 0 0 0 0-0.031 0-54.969 0-164.406-65.578-192-100.844-3.125-3.984-7.812-6.141-12.594-6.141-2.625 0-5.281 0.641-7.719 1.984-116.969 64.344-219.5 67.734-279.75 7.547-94.219-94.234-31.781-283.312 155.406-470.5 150.812-150.813 359.375-218.641 459.312-218.641 28.75 0 50.125 5.359 58.688 14.719 41.406 45.219-12.625 328.734-209.344 525.453z",
"M253.562 649.312c-26.5 20.25-31.594 58.297-11.344 84.828 11.562 15.109 29.094 23.766 48.125 23.766 13.375 0 26.062-4.297 36.719-12.438 12.844-9.812 21.094-24.047 23.219-40.078 2.125-16.016-2.094-31.906-11.906-44.734-19.625-25.719-59-31.031-84.812-11.344zM307.625 720.047c-12.219 9.297-30.719 6.75-39.969-5.328-9.531-12.5-7.156-30.438 5.344-39.969 5-3.844 11-5.875 17.281-5.875 8.969 0 17.219 4.078 22.656 11.203 4.625 6.047 6.625 13.547 5.625 21.094s-4.875 14.25-10.938 18.875z",
"M265.75 480.922c-28.375 21.703-33.844 62.438-12.156 90.812 12.375 16.172 31.156 25.453 51.531 25.453 14.312 0 27.906-4.609 39.281-13.312 28.375-21.688 33.812-62.422 12.156-90.812-21.031-27.5-63.125-33.266-90.813-12.141zM324.969 558.453c-14 10.672-35.312 7.734-45.938-6.156-10.969-14.359-8.219-34.969 6.156-45.938 5.75-4.406 12.625-6.75 19.844-6.75 10.344 0 19.844 4.703 26.094 12.875 10.969 14.375 8.219 34.984-6.156 45.969z",
"M513.688 440.984c-19.688-25.734-59.031-31.047-84.844-11.328-12.844 9.812-21.094 24.047-23.219 40.062-2.125 16.031 2.094 31.922 11.906 44.734 11.531 15.109 29.062 23.781 48.094 23.781 13.375 0 26.062-4.297 36.719-12.438 26.5-20.25 31.562-58.297 11.344-84.812zM482.906 500.375c-12.094 9.312-30.656 6.812-39.938-5.344-4.625-6.047-6.625-13.531-5.625-21.078s4.875-14.25 10.938-18.875c5-3.844 11-5.859 17.281-5.859 8.969 0 17.25 4.078 22.688 11.188 9.531 12.5 7.125 30.438-5.344 39.969z",
"M478.906 381.688c11.531 0 22.656-4.156 31.375-11.703 20-17.328 22.188-47.688 4.906-67.656-16.656-19.25-48.375-21.594-67.688-4.906-20 17.328-22.188 47.688-4.906 67.656 9.125 10.547 22.344 16.609 36.312 16.609zM468.438 321.609c2.906-2.5 6.594-3.891 10.438-3.891 4.656 0 9.062 2.016 12.094 5.531 5.75 6.656 5.031 16.781-1.625 22.547-6.438 5.516-17 4.766-22.531-1.641-5.75-6.656-5.031-16.781 1.625-22.547z",
"M680.531 390.828c-17.781 17.312-18.156 45.891-0.812 63.734 8.562 8.75 20 13.578 32.25 13.578 11.844 0 23-4.547 31.438-12.797 8.656-8.406 13.469-19.672 13.625-31.703s-4.406-23.406-12.781-31.984c-16.813-17.25-46.438-17.672-63.719-0.828zM721.062 432.438c-4.969 4.844-13.594 4.719-18.438-0.219-5.031-5.172-4.938-13.453 0.219-18.484 2.469-2.391 5.719-3.703 9.125-3.703 3.562 0 6.875 1.391 9.375 3.969 2.406 2.484 3.75 5.766 3.688 9.234-0.031 3.484-1.438 6.75-3.969 9.203z",
"M758.781 198.453c-8.656 8.406-13.469 19.672-13.625 31.703s4.406 23.406 12.781 31.984c8.562 8.781 20 13.625 32.281 13.625 11.812 0 22.969-4.547 31.438-12.797 17.781-17.312 18.156-45.891 0.812-63.734-16.844-17.219-46.531-17.563-63.688-0.781zM799.344 240.062c-5.031 4.906-13.594 4.797-18.5-0.266-2.406-2.484-3.75-5.766-3.688-9.234 0.031-3.484 1.438-6.75 3.969-9.203 2.438-2.391 5.656-3.703 9.094-3.703 3.562 0 6.875 1.406 9.344 3.922 5.031 5.172 4.938 13.453-0.219 18.484z",
"M727.656 340.078c9.969-9.719 15.562-22.719 15.75-36.641 0.156-13.906-5.094-27.047-14.781-37.016-19.437-19.906-53.75-20.312-73.625-0.953-9.969 9.719-15.562 22.719-15.75 36.641-0.156 13.906 5.094 27.047 14.781 37.016 9.906 10.141 23.156 15.719 37.312 15.719 13.656 0 26.562-5.25 36.312-14.766zM676.969 316.781c-3.75-3.844-5.781-8.906-5.719-14.266s2.219-10.375 6.094-14.125c3.75-3.672 8.719-5.688 13.969-5.688 5.469 0 10.562 2.156 14.375 6.062 3.75 3.844 5.781 8.906 5.719 14.266s-2.219 10.375-6.094 14.125c-7.656 7.5-20.875 7.281-28.344-0.375z",
"M593.844 699.078l-74.875 60.109c-6.875 5.547-7.969 15.609-2.438 22.5 3.156 3.938 7.781 5.984 12.469 5.984 3.531 0 7.062-1.156 10.031-3.516l74.875-60.109c6.875-5.547 7.969-15.609 2.438-22.5-5.5-6.875-15.562-7.953-22.5-2.469z"
],
"attrs": [
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"ocarina"
],
"colorPermutations": {
"6868681": [
0,
0,
0,
0,
0,
0,
0,
0,
0
]
}
},
"attrs": [
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
}
],
"properties": {
"order": 15,
"id": 5,
"prevSize": 64,
"code": 58894,
"name": "ocarina"
},
"setIdx": 0,
"iconIdx": 14
},
{
"icon": {
"paths": [
"M717.75 331.766v-65.703h50.25c8.844 0 16-7.156 16-16v-119.766c0-8.844-7.156-16-16-16h-506.688c-8.844 0-16 7.156-16 16v119.766c0 8.844 7.156 16 16 16h46.531v65.703l-99.938 80.797c-3.75 3.031-5.938 7.609-5.938 12.438v447.375c0 6.188 3.562 11.812 9.156 14.453l91.062 43.188c2.125 1.016 4.469 1.547 6.844 1.547h408.719c2.406 0 4.781-0.547 6.938-1.578l89.875-43.188c5.531-2.672 9.062-8.266 9.062-14.422v-447.375c0-4.828-2.188-9.406-5.938-12.438l-99.937-80.797zM333.906 351.844c3.75-3.031 5.938-7.609 5.938-12.438v-89.344c0-8.844-7.156-16-16-16h-46.531v-87.766h474.688v87.766h-50.25c-8.844 0-16 7.156-16 16v89.344c0 4.828 2.188 9.406 5.938 12.438l99.938 80.797v35.094h-557.656v-35.094l99.938-80.797zM714.094 899.562h-401.469l-78.656-37.312v-362.516h557.656v362.578l-77.531 37.25z",
"M382.094 264h258.844c8.844 0 16-7.156 16-16s-7.156-16-16-16h-258.844c-8.844 0-16 7.156-16 16s7.156 16 16 16z",
"M409.188 682.453c-46.812 0-84.906 38.094-84.906 84.906s38.094 84.906 84.906 84.906 84.906-38.094 84.906-84.906-38.094-84.906-84.906-84.906zM409.188 820.266c-29.188 0-52.906-23.734-52.906-52.906s23.719-52.906 52.906-52.906 52.906 23.734 52.906 52.906-23.719 52.906-52.906 52.906z",
"M607.031 623.469c-38.25 0-69.344 31.109-69.344 69.344s31.094 69.344 69.344 69.344 69.344-31.109 69.344-69.344-31.094-69.344-69.344-69.344zM607.031 730.156c-20.594 0-37.344-16.75-37.344-37.344s16.75-37.344 37.344-37.344 37.344 16.75 37.344 37.344-16.75 37.344-37.344 37.344z",
"M386.688 628.891c28.25 0 51.219-22.984 51.219-51.234 0-28.266-22.969-51.25-51.219-51.25s-51.25 22.984-51.25 51.25c0 28.25 23 51.234 51.25 51.234zM386.688 558.406c10.594 0 19.219 8.641 19.219 19.25s-8.625 19.234-19.219 19.234c-10.625 0-19.25-8.625-19.25-19.234s8.625-19.25 19.25-19.25z"
],
"attrs": [
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"potion"
],
"colorPermutations": {
"6868681": [
0,
0,
0,
0,
0
]
}
},
"attrs": [
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
}
],
"properties": {
"order": 16,
"id": 4,
"prevSize": 64,
"code": 58895,
"name": "potion"
},
"setIdx": 0,
"iconIdx": 15
},
{
"icon": {
"paths": [
"M510.719 983.812c260.094 0 471.719-211.625 471.719-471.75 0-260.109-211.625-471.734-471.719-471.734-260.125 0-471.75 211.625-471.75 471.734-0 260.125 211.625 471.75 471.75 471.75zM510.719 72.328c242.469 0 439.719 197.266 439.719 439.734 0 242.484-197.25 439.75-439.719 439.75s-439.75-197.266-439.75-439.75c0-242.469 197.281-439.734 439.75-439.734z",
"M266.281 263.078c65.281-65.281 152.094-101.234 244.438-101.234 92.312 0 179.125 35.953 244.406 101.234 3.125 3.125 7.219 4.688 11.312 4.688s8.188-1.562 11.312-4.688c6.25-6.25 6.25-16.375-0-22.625-71.312-71.328-166.156-110.609-267.031-110.609s-195.719 39.281-267.062 110.609c-6.25 6.25-6.25 16.375 0 22.625s16.375 6.25 22.625-0z",
"M755.125 751.922c-65.281 65.297-152.094 101.25-244.406 101.25-92.344 0-179.156-35.953-244.438-101.25-6.25-6.25-16.375-6.25-22.625 0s-6.25 16.375 0 22.625c71.344 71.344 166.188 110.625 267.062 110.625s195.719-39.281 267.031-110.625c6.25-6.25 6.25-16.375 0-22.625s-16.375-6.25-22.625 0z",
"M170.875 490.062c27.688 0 40.656 11.969 57.062 27.109 18.062 16.688 38.531 35.609 78.75 35.609 43.469 0 63.938-37.766 81.969-71.094 18.312-33.812 31.094-54.344 53.875-54.344 22.812 0 35.594 20.531 53.906 54.344 18.062 33.328 38.531 71.094 82.031 71.094 43.531 0 64-37.766 82.062-71.078 18.344-33.828 31.125-54.359 53.969-54.359 22.812 0 35.594 20.531 53.938 54.328 18.062 33.328 38.562 71.109 82.094 71.109 8.844 0 16-7.156 16-16s-7.156-16-16-16c-22.844 0-35.625-20.531-53.969-54.359-18.062-33.312-38.531-71.078-82.062-71.078s-64.031 37.781-82.094 71.109c-18.344 33.797-31.125 54.328-53.938 54.328s-35.594-20.531-53.906-54.344c-18.062-33.328-38.531-71.094-82.031-71.094s-63.969 37.781-82 71.109c-18.312 33.797-31.062 54.328-53.844 54.328-27.688 0-40.656-11.969-57.062-27.109-18.062-16.688-38.531-35.609-78.75-35.609-8.844 0-16 7.156-16 16s7.156 16 16 16z",
"M225.188 589.625c18.094 29.266 38.625 62.453 81.5 62.453 43.469 0 63.938-37.766 81.969-71.094 18.312-33.812 31.094-54.344 53.875-54.344 22.812 0 35.594 20.531 53.906 54.344 18.062 33.328 38.531 71.094 82.031 71.094 43.531 0 64-37.766 82.062-71.078 18.344-33.828 31.125-54.359 53.969-54.359 26.688 0 39.594 14.859 55.906 33.688 17.281 19.922 38.812 44.719 80.125 44.719 8.844 0 16-7.156 16-16s-7.156-16-16-16c-26.719 0-39.625-14.875-55.938-33.688-17.281-19.922-38.781-44.719-80.094-44.719-43.531 0-64.031 37.781-82.094 71.109-18.344 33.797-31.125 54.328-53.938 54.328s-35.594-20.531-53.906-54.344c-18.062-33.328-38.531-71.094-82.031-71.094s-63.969 37.781-82 71.109c-18.312 33.797-31.062 54.328-53.844 54.328-23.344 0-36.094-17.875-54.312-47.297-18.094-29.266-38.625-62.453-81.5-62.453-8.844 0-16 7.156-16 16s7.156 16 16 16c23.344-0 36.094 17.859 54.313 47.297z"
],
"attrs": [
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"quake"
],
"colorPermutations": {
"6868681": [
0,
0,
0,
0,
0
]
}
},
"attrs": [
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
}
],
"properties": {
"order": 17,
"id": 3,
"prevSize": 64,
"code": 58896,
"name": "quake"
},
"setIdx": 0,
"iconIdx": 16
},
{
"icon": {
"paths": [
"M716.656 205.438l-89.812 55.375h-227.719l-89.813-55.375c-2.531-1.547-5.437-2.375-8.406-2.375h-55c-8.844 0-16 7.156-16 16v340.094c0 121.75 217.75 273.766 283.094 273.766 65.312 0 283.062-152.016 283.062-273.766v-340.094c0-8.844-7.156-16-16-16h-55c-2.969 0-5.875 0.828-8.406 2.375zM764.062 235.062v324.094c0 105.547-207.719 241.766-251.062 241.766-43.375 0-251.094-136.219-251.094-241.766v-324.094h34.469l89.812 55.375c2.531 1.547 5.438 2.375 8.406 2.375h236.781c2.969 0 5.875-0.828 8.406-2.375l89.812-55.375h34.469z",
"M883.469 87.312h-142.75c-2.969 0-5.875 0.828-8.406 2.375l-96.75 59.656h-245.156l-96.75-59.656c-2.531-1.547-5.438-2.375-8.406-2.375h-142.75c-8.844 0-16 7.156-16 16v471.781c0 169.469 311.031 373.562 386.5 373.562 86.938 0 386.469-212.047 386.469-373.562v-471.781c0-8.844-7.156-16-16-16zM867.469 575.094c0 149.109-293.25 341.562-354.469 341.562s-354.5-192.453-354.5-341.562v-455.781h122.219l96.75 59.656c2.531 1.547 5.438 2.375 8.406 2.375h254.219c2.969 0 5.875-0.828 8.406-2.375l96.75-59.656h122.219v455.781z",
"M387.281 431.453c-8.844 0-16 7.156-16 16v109.688c0 8.844 7.156 16 16 16h251.406c8.844 0 16-7.156 16-16v-109.688c0-8.844-7.156-16-16-16h-251.406zM622.688 541.141h-219.406v-77.688h219.406v77.688z"
],
"attrs": [
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"shield"
],
"colorPermutations": {
"6868681": [
0,
0,
0
]
}
},
"attrs": [
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
}
],
"properties": {
"order": 18,
"id": 2,
"prevSize": 64,
"code": 58897,
"name": "shield"
},
"setIdx": 0,
"iconIdx": 17
},
{
"icon": {
"paths": [
"M959.5 82.688c-0.156-8.641-7.094-15.609-15.75-15.75l-190.25-3.062c-0.336 0.025-0.582 0.172-0.914 0.209-0.414 0.018-0.797-0.15-1.211-0.1-1.398 0.164-2.602 0.77-3.855 1.262-0.426 0.156-0.91 0.242-1.316 0.43-1.609 0.799-2.965 1.895-4.203 3.152-0.301 0.305-0.719 0.41-1 0.75l-437.207 519.887-1.168-0.371-82.875-148.172c-3.406-6.078-10.438-9.281-17.188-7.859-6.844 1.406-11.969 7.062-12.688 14l-20.094 191.281c-0.781 7.484 3.75 14.5 10.875 16.859l65.953 21.797-178.641 178.625c-3 3-4.688 7.062-4.688 11.312s1.688 8.312 4.688 11.312l80.219 80.219c3 3 7.062 4.688 11.312 4.688s8.312-1.688 11.312-4.688l178.625-178.639 21.781 65.936c2.188 6.609 8.344 10.984 15.188 10.984 0.531 0 1.094-0.031 1.656-0.094l191.281-20.094c6.938-0.719 12.625-5.859 14.031-12.688 1.375-6.828-1.781-13.781-7.875-17.188l-148.156-82.875-0.371-1.168 519.902-437.207c0.070-0.059 0.094-0.152 0.16-0.213 1.641-1.422 2.953-3.176 3.91-5.174 0.219-0.467 0.254-0.98 0.43-1.467 0.453-1.244 0.992-2.455 1.125-3.834 0.031-0.354-0.117-0.666-0.105-1.016 0.012-0.277 0.172-0.52 0.168-0.797l-3.063-190.25zM930.273 255.514l-141.867-13.92-17.141-145.422 156.484 2.516 2.523 156.826zM282.961 801.059l-57.586-57.578 17.992-17.99 57.586 57.574-17.992 17.994zM242.352 841.676l-57.582-57.594 17.98-17.977 57.586 57.578-17.984 17.992zM201.738 882.289l-57.598-57.584 18-17.998 57.586 57.594-17.988 17.988zM159.5 924.531l-57.594-57.594 19.609-19.609 57.602 57.586-19.617 19.617zM323.578 760.439l-57.586-57.574 14.625-14.625 43.289 14.307 14.293 43.27-14.621 14.623zM525.875 810.016l-128.312 13.469-45.812-138.625c-1.594-4.812-5.344-8.594-10.156-10.172l-138.656-45.812 13.5-128.328 61.344 109.688c2 3.547 5.25 6.203 9.125 7.438l92.469 29.375 29.375 92.484c1.219 3.875 3.906 7.141 7.438 9.125l109.687 61.359zM407.375 629.469c-1.562-4.953-5.438-8.828-10.406-10.406l-60.172-19.113 404.906-481.482 16.453 139.674c0.875 7.469 6.812 13.312 14.312 14.047l134.711 13.213-480.695 404.221-19.109-60.152z",
"M724.125 283.562l-307 306.984c-6.25 6.25-6.25 16.375 0 22.625 3.125 3.125 7.219 4.688 11.312 4.688s8.188-1.562 11.312-4.688l307-306.984c6.25-6.25 6.25-16.375 0-22.625s-16.375-6.25-22.625-0z"
],
"attrs": [
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
}
],
"isMulticolor": false,
"grid": 0,
"tags": [
"sword"
],
"colorPermutations": {
"6868681": [
0,
0
]
}
},
"attrs": [
{
"fill": "rgb(68, 68, 68)"
},
{
"fill": "rgb(68, 68, 68)"
}
],
"properties": {
"order": 19,
"id": 1,
"prevSize": 64,
"code": 58898,
"name": "sword"
},
"setIdx": 0,
"iconIdx": 18
},
{