-
Notifications
You must be signed in to change notification settings - Fork 8
/
features.json
2583 lines (2583 loc) · 117 KB
/
features.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
{
"automation": [
{
"name": "Chain Linking",
"image": "iron-chains.jpg",
"added": "1.14",
"removed": "1.18",
"desc": [
"When right clicking with Chains onto a boat or minecart, and then onto another, they'll link the two. Linked boats and minecarts will always remain at close distance, which allows you to make trains.",
"Prior to 1.16, an Iron Chain item was added by Quark. As Chains were added to the base game in 1.16, this item was removed.",
"Quark's Iron Chains prior to 1.16 can be used to craft chainmail armor, or placed down as a block that connects perfectly to Lanterns."
]
},
{
"name": "Chute",
"image": "chute.jpg",
"added": "1.14",
"desc": [
"The Chute is a new automation block. Items can be inserted into it via automation (Hopper, Dropper, etc), and any items inserted are instantly dropped under it, always precisely in the center.",
"The Chute can be disabled with a redstone signal or by placing a block under it.",
"The Chute can drop items through hollow logs."
]
},
{
"name": "Color Slime",
"image": "color-slime.jpg",
"added": "1.14",
"removed": "1.18",
"desc": [
"Slime blocks can be dyed Red and Blue. The primary color blocks (Red, Green, and Blue) can be combined to create secondary colors (Cyan, Magenta, and Yellow).",
"While being moved by pistons, two slime blocks will only connect if they're the same color, or if one is made of another (so Red won't connect to Blue, but it'll connect to Magenta). Any color of slime will connect to non-slime blocks around it normally."
]
},
{
"name": "Dispensers Place Blocks",
"image": "dispensers-place-blocks.jpg",
"added": "1.14",
"desc": [
"Dispensers are allowed to place blocks in the world. Any blocks that already had a placement behaviour, like TNT, are ignored.",
"The blocks are rotated so they're placed forward from the dispenser. Note that crops such as Wheat Seeds or Potatoes also count."
]
},
{
"name": "Ender Watcher",
"image": "ender-watcher.jpg",
"added": "1.14",
"desc": [
"The Ender Watcher is a new redstone input block. It emits a redstone signal if a player is looking directly at it.",
"In 1.15+, the signal is higher the closer to the center of the block the player is looking. In previous versions, it will always emit a full signal.",
"It's crafted with an Eye of Ender, Redstone, and Obsidian.",
"Note: Prior to 1.18, the Ender Watcher was crafted with Biotite (from the World module) instead of Obsidian (if enabled)."
]
},
{
"name": "Feeding Trough",
"image": "feeding-trough.jpg",
"added": "1.14",
"desc": [
"The Feeding Trough is a new block you can craft with some planks and fence gates. When right clicked, a menu will pop up where you can put food inside it.",
"Nearby animals will flock to the trough to eat the food within. This works just as if a player had fed the animal, but with a few differences:",
"*There's a chance the animal will need more than one bit of food to get in love mode;",
"*Animals bred with the trough will not produce XP;",
"*If there's more than 32 animals in a 10 block radius, the animals will eat, but never enter love mode.",
"1.18+: This block is considered to be one and a half blocks tall for animals so they won't get on it."
]
},
{
"name": "Gravisand",
"image": "gravisand.jpg",
"added": "1.14",
"desc": [
"Gravisand is a new sand variant, crafted with sand and an ender pearl.",
"Gravisand will not fall unless primed with redstone. However, if gravisand receives a signal, and can not fall, it'll instead float up. Additionally, gravisand will propagate the signal to any adjacent gravisand blocks, causing them to fall or float as well.",
"Gravisand allows for a variety of redstone components, especially as its magnetic properties have it constantly output a comparator signal of 15."
]
},
{
"name": "Iron Rod",
"image": "iron-rod.jpg",
"added": "1.14",
"desc": [
"Pistons pushing an Iron Rod will have it work as a drill of sorts, breaking any blocks in front in the direction the rod is facing. These can break anything the piston can push.",
"Iron Rods are crafted with 2 Iron Ingots and an End Rod."
]
},
{
"name": "Pistons Move Tile Entities",
"image": "pistons-move-tes.jpg",
"added": "1.14",
"desc": [
"Pistons are allowed to move Tile Entities (blocks with extra data attached, like Chests or Furnaces). Attempting to move a block to an invalid position will cause it to break and drop its contents, though.",
"For a block that pistons can't move, now that furnaces can't be used, look into Sturdy Stone in the Building category.",
"Note that some blocks such as Monster Spawners can't be moved this way, so you don't go and break the game!"
]
},
{
"name": "New Redstone Circuits",
"image": "new-redstone-circuits.jpg",
"added": "1.14",
"removed": "1.18",
"desc": [
"Two new redstone circuit components are added to the game, the Redstone Randomizer, and the Redstone Inductor:",
"*The Randomizer is crafted the same was as a comparator, but with Biotite (from the World category, or an Eye of Ender if disabled). When given a redstone signal from the back, it'll randomly enable either the left or right output.",
"*The Inductor is crafted made with Stone, Redstone, and Magma Cream. Its output value is the analog sum of all 3 input sides. It can also be locked by having a repeater or comparator pointing to it. While locked, it'll maintain the output value regardless of any changes."
]
},
{
"name": "Redstone Randomizer",
"image": "redstone-randomizer.jpg",
"added": "1.18",
"desc": [
"The Randomizer is a new redstone component and is crafted the same way as a comparator, but with Prismarine Crystals. When given a redstone signal from the back, it'll randomly enable either the left or right output."
]
},
{
"name": "Weather Sensor",
"image": "weather-sensor.jpg",
"added": "1.14",
"removed": "1.18",
"desc": [
"The Weather Sensor is crafted with Purpur Slabs, Biotite (from the World category, or Obsidian if not enabled) and Glass. It works like a Daylight Sensor, but it emits a full redstone signal if it's raining or snowing.",
"Similarly to the Daylight Sensor, right clicking it inverts its output. Lastly, if it's raining in the world, but the biome you're in has no rain, like a desert, the sensor will only emit a signal of 7."
]
},
{
"name": "Obsidian Pressure Plate",
"image": "obsidian-pressure-plate.jpg",
"added": "1.14",
"desc": [
"Pressure Plates made with obsidian will only trigger when Players walk over them."
]
},
{
"name": "Metal Buttons",
"image": "metal-buttons.jpg",
"added": "1.14",
"desc": [
"Combining a Wooden Button with either an Iron Ingot or a Gold Ingot creates a button of that type.",
"Drawing influence from Weighted Pressure Plates, Gold Buttons emit a very short pulse (2 redstone ticks), whereas Iron Buttons emit a very long pulse (5 seconds)."
]
},
{
"name": "Endermites Form Shulkers",
"image": "endermites-form-shulkers.jpg",
"added": "1.14",
"removed": "1.18",
"desc": [
"Similarly to how a Silverfish can bury into stone, Endermites can now bury into Purpur. When they do so, they'll transform themselves and the block into a Shulker at that position, making Shulker Shells renewable."
]
},
{
"name": "Chains Connect Blocks",
"image": "chains-connect-blocks.jpg",
"added": "1.16.3",
"desc": [
"Chains can now connect blocks together when a piston moves them. As you can see in the image, the chain block itself doesn't have to be moved by the piston, and will attach indirectly to other moved blocks.",
"Additionally, the sticking behaviour for chains connecting to slime blocks and other sticky sources has been changed: Chains will now only connect to them if they do so visually, which allows for some extra cool trickery."
]
},
{
"name": "Jukebox Automation",
"image": "jukebox-automation.jpg",
"added": "1.16.4",
"removed": "1.20",
"desc": [
"Dispensers are now able to place discs into Jukeboxes.",
"This includes ambience discs."
]
},
{
"name": "Crafter Backport",
"image": "crafter.jpg",
"added": "1.20",
"removed": "1.21",
"desc": [
"Backport of the crafter from the 1.21 snapshots.",
"Differs slightly from the Mojang version as it was made before the snapshot released.",
"Thanks to Emi for creating the backport!"
]
}
],
"building": [
{
"name": "Compressed Blocks",
"image": "compressed-blocks.jpg",
"added": "1.14",
"desc": [
"A bunch of blocks can now be crafted into compressed variants.",
"*Charcoal can be crafted into a Block of Charcoal, which will burn forever.",
"*Blaze Rods and Powder can be crafted into a Blaze Lantern. It'll also burn forever.",
"*Leather can be crafted into Bonded Leather.",
"*Sugar Cane, Bamboo, Cactus, Chorus Fruits, and Sticks can be made into various blocks that can be placed like a pillar.",
"*Apples, Golden Apples, Potatoes, Carrots, and Beetroots can be crafted into Crates. Golden Apple crates will work as a beacon base.",
"*Glow Berries (1.18+), Cocoa Beans, Sweet Berries, Nether Wart, and Gunpowder can be crafted into Sacks. If the Nether Wart Sack is enabled, the recipe for Nether Wart Blocks is changed to be 2x2."
]
},
{
"name": "Duskbound Blocks",
"image": "duskbound-blocks.jpg",
"added": "1.14",
"desc": [
"Purple looking blocks made from Purpur and Obsidian, fully featured with stair, slab and wall variants.",
"Also includes Duskbound Lamps, made with Duskbound Blocks and Ender Pearls.",
"1.16+ Only: Duskbound blocks and all variants are also immune to the dragon."
]
},
{
"name": "Framed Glass",
"image": "framed-glass.jpg",
"added": "1.14",
"desc": [
"Combine Iron Ingots and Glass, and you get yourself some fancy Framed Glass, great for some more rustic or medieval builds.",
"You can also craft Panes with these, of course.",
"1.16.4+ Only: Stained Framed Glass of all 16 colors can also be created, the same way you'd create normal Stained Glass."
]
},
{
"name": "Iron Grate",
"image": "grate.jpg",
"added": "1.14",
"desc": [
"The Iron Grate is a cool new block with multiple uses. Animals are afraid of walking on it, and will never do it, whereas items will just fall through the gaps.",
"Players, monsters, and other entities will just walk through normally.",
"Grates can be crawled under, similar to hollow logs.",
"1.16+ Only: Animals being held by a leash will also walk over the block just fine."
]
},
{
"name": "Item Frame Variants",
"image": "item-frame-variants.jpg",
"added": "1.14",
"removed": "1.18",
"desc": [
"Item Frames can now be displayed in two new fancy ways:",
"*First off, you can dye them any of the 16 colors of the minecraft rainbow.",
"*Secondly, you can craft a Glass Item Frame. Glass Item Frames will hide the frame around the item when you put it in, so you can have a display that only shows the item.",
"Glass Item Frames have some additional features unique to them, click on More Info to check them out!"
],
"expand": [
"#Glass Item Frames",
"*If you put a banner inside a Glass Item Frame, it'll sit flat with the wall with the pattern that's in it, allowing you to create a wallpaper of sorts.",
"*Shields display differently in Glass Item Frames, they sit flush with the wall and look nice.",
"*1.16.3+ Only: Glass Item Frames can attach to the front of a Sign that's placed on the floor. This will make the item show flush with the sign.",
"*1.16.4+ Only: Combining a Glass Item Frame with Glowstone Dust creates a Glowing Glass Item Frame - it glows in the dark!.",
"*1.16.4+ Only: Glass Item Frames can be right clicked through to open chests or other inventories.",
"*1.16.4+ Only: When a map is placed in a Glass Item Frame, it will update in real time. Perfect for spies!"
]
},
{
"name": "Glass Item Frames",
"image": "glass-item-frames.jpg",
"added": "1.18",
"desc": [
"You can now craft a Glass Item Frame. Glass Item Frames will hide the frame around the item when you put it in, so you can have a display that only shows the item.",
"Glass Item Frames also have some additional features unique to them, click on More Info to check them out!"
],
"expand": [
"#Additional Features",
"*If you put a banner inside a Glass Item Frame, it'll sit flat with the wall with the pattern that's in it, allowing you to create a wallpaper of sorts.",
"*Shields display differently in Glass Item Frames, they sit flush with the wall and look nice.",
"*Glass Item Frames can attach to the front of a Sign that's placed on the floor. This will make the item show flush with the sign.",
"*Combining a Glass Item Frame with a Glowing Ink Sac creates a Glowing Glass Item Frame, like the vanilla one.",
"*Glass Item Frames can be right clicked through to open chests or other inventories.",
"*When a map is placed in a Glass Item Frame, it will update in real time. Perfect for spies!"
]
},
{
"name": "Leaf Carpet",
"image": "leaf-carpet.jpg",
"added": "1.14",
"desc": [
"Leaf Carpet can be made with all types of leaves in the same recipe as wool carpet. It can be harvested by hand and has no collision box.",
"If Blossom Oaks (from the World category) are enabled, you can use their leaves as carpet too."
]
},
{
"name": "Lit Lamp",
"image": "lit-lamp.jpg",
"added": "1.14",
"removed": "1.18",
"desc": [
"Combining a Redstone Lamp with a Redstone Torch creates a Lit Redstone lamp, that's always emitting light."
]
},
{
"name": "Midori",
"image": "midori.jpg",
"added": "1.14",
"desc": [
"Midori Blocks are a green counterpart to Purpur. These are made with Moss Paste, with the same recipes as the Purpur blocks.",
"Moss Paste is a new item that is obtained by smelting Moss in a furnace.",
"(Midori means \"green\" in Japanese)",
"Note: Prior to 1.18, Moss Paste was called Cactus Paste and replaced Green Dye as the smelting output of Cactus. It was able to be crafted into Green Dye at a 1:1 rate."
]
},
{
"name": "More Brick Types",
"image": "more-brick-types.jpg",
"added": "1.14",
"removed": "1.18",
"desc": [
"New brick variants are added for a few blocks:",
"*Sandy Bricks can be crafted with Bricks and Sand.",
"*Snowy Bricks can be crafted with Snow.",
"*Magma Bricks can be crafted with Magma Blocks.",
"*Charred Nether Bricks can be crafted with Nether Bricks and a Fire Charge.",
"*Sandstone Bricks (for all sandstone types) can be crafted with Cut Sandstone.",
"*Blue Nether Bricks (1.16+ only) can be crafted with Nether Bricks and Warped Wart Blocks. Additionally, a similar recipe is added for Red Nether Bricks.",
"*Warped and Twisted Blackstone Bricks (1.16.4+ only) can be crafted by combining Blackstone Bricks with the respective vine.",
"*Additionally, all of these come in Slab, Stairs, and Wall variants."
]
},
{
"name": "More Brick Types",
"image": "more-brick-types-1.18.jpg",
"added": "1.18",
"desc": [
"New brick variants are added for a few blocks:",
"*Sandstone Bricks (for all sandstone types) can be crafted with Cut Sandstone.",
"*Cobblestone Bricks and their mossy variants are made just like you'd make Stone Bricks, except with Cobblestone. They can be combined with other blocks (1.16+ only) to create new color variants.",
"*Blackstone Bricks can be crafted with Cobblestone Bricks and Blackstone.",
"*Dirt Bricks can be crafted with Cobblestone Bricks and Dirt.",
"*Netherrack Bricks can be crafted with Cobblestone Bricks and Netherrack.",
"*Blue Nether Bricks can be crafted with Nether Bricks and Warped Wart Blocks. Additionally, a similar recipe is added for Red Nether Bricks.",
"*Additionally, all of these come in Slab, Stairs, and Wall variants."
]
},
{
"name": "More Stone Variants",
"image": "more-stone-variants.jpg",
"added": "1.14",
"removed": "1.18",
"desc": [
"Brick, Chiseled Brick, Pillar, and Pavement variants are available for all types of stone added by vanilla and Quark.",
"The Brick types come in Slab, Stair, and Wall variants, and the Chiseled Brick types look different for each type of stone."
]
},
{
"name": "More Stone Variants",
"image": "more-stone-variants-1.18.jpg",
"added": "1.18",
"desc": [
"Brick, Chiseled Brick, and Pillar variants are available for all types of stone added by vanilla and Quark.",
"The Brick types come in Slab, Stair, and Wall variants, and the Chiseled Brick types look different for each type of stone."
]
},
{
"name": "Nether Brick Fence Gate",
"image": "nether-brick-fence-gate.jpg",
"added": "1.14",
"desc": [
"A Fence Gate made of Nether Bricks. Crafted with Nether Brick blocks in the place of planks and Nether Brick Fences in the place of Sticks. The recipe outputs 2."
]
},
{
"name": "Paper Decor",
"image": "paper-decor.jpg",
"added": "1.14",
"removed": "1.18",
"desc": [
"Japanese style decoration can now be made with Paper and Bamboo.",
"*Paper Walls (\"Shoji\") come in three variants: Normal, Big, and Decorated. The latter can be crafted by adding a Sapling.",
"*Paper Lanterns (\"Chochin\") come in Normal and Decorated variants, the latter similarly crafted with a Sapling. Try hanging or propping them with fences!"
]
},
{
"name": "Bamboo Mats",
"image": "bamboo-mats.jpg",
"added": "1.16",
"removed": "1.18",
"desc": [
"Bamboo and Sticks can now be crafted into Bamboo Mats. These blocks can be placed in all horizontal directions, as well as vertically to create a \"box\" look."
]
},
{
"name": "Japanese Palette",
"image": "oriental-palette.jpg",
"added": "1.18",
"desc": [
"Japanese style decoration can now be made with Paper, Bamboo, and Sticks.",
"*Paper Walls (\"Shoji\") come in three variants: Normal, Big, and Decorated. The latter can be crafted by adding a Sapling.",
"*Paper Lanterns (\"Chochin\") come in Normal and Decorated variants, the latter similarly crafted with a Sapling. Try hanging or propping them with fences!",
"*Bamboo Mats (\"Tatami\") are a carpet sized block, crafted using Bamboo and Sticks. They can also be crafted into a full block sized version."
]
},
{
"name": "Iron Plates",
"image": "iron-plates.jpg",
"added": "1.14",
"removed": "1.18",
"desc": [
"Iron Plates can now be crafted using Iron Ingots. You can also craft Rusty Iron Plates using a Water Bucket as well."
]
},
{
"name": "Industrial Palette",
"image": "industrial-palette.jpg",
"added": "1.18",
"desc": [
"Industrial style decoration can now be made using Iron.",
"*Iron Plates can be crafted using Iron Ingots. You can also craft Rusty Iron Plates using a Water Bucket as well. They can further be crafted into variants such as stairs and pillars.",
"*You can also make Iron Ladders, using Iron Nuggets. They work like normal ladders, but fit the industrial style."
]
},
{
"name": "Cobblestone Bricks",
"image": "cobblestone-bricks.jpg",
"added": "1.15",
"removed": "1.18",
"desc": [
"Cobblestone Bricks and their mossy variants are made just like you'd make Stone Bricks, except with Cobblestone. They're a fancy new way to improve your rustic stone builds.",
"1.16+: Cobblestone Bricks can be combined with other blocks, as you can see in the image, to create new color variants."
]
},
{
"name": "Quilted Wool",
"image": "quilted-wool.jpg",
"added": "1.14",
"removed": "1.18",
"desc": [
"Crafting Wool with String creates Quilted Wool. Quilted Wool comes in all colors and has a framed design."
]
},
{
"name": "Rope",
"image": "rope.jpg",
"added": "1.14",
"desc": [
"Rope Coils can be crafted using String. This new block can be placed on the bottom face of a block, by players and dispensers, and dropped down by right clicking on the placed Rope block. Shift-right clicking, or right clicking with a non-rope item will pull the rope up.",
"If a block is at the end of the rope, it'll drop down and be pulled up alongside it. Lastly, as you'd expect, players can climb rope as if it were a ladder."
]
},
{
"name": "Shingles",
"image": "shingles.jpg",
"added": "1.14",
"desc": [
"Shingles are \"Tile\" style blocks for Terracotta and all its color variants inspired by Portuguese rooftops (\"Telha Lusa\"). They can all be turned into stairs and slabs, and look great for roofs.",
"4 Blocks are crafted with a 2x2 of the respective Terracotta block."
]
},
{
"name": "Soul Sandstone",
"image": "soul-sandstone.jpg",
"added": "1.14",
"desc": [
"Sandstone made of Soul Sand. All recipes are as expected.",
"Soul Sandstone can be turned into Stairs, Slabs, and Walls."
]
},
{
"name": "Stained Planks",
"image": "stained-planks.jpg",
"added": "1.14",
"removed": "1.18",
"desc": [
"Dyed Wooden Planks of all 16 colors, featuring a pastel color palette so you can actually build with them without making your eyes hurt! All include stair and slab variants."
]
},
{
"name": "Sturdy Stone",
"image": "sturdy-stone.jpg",
"added": "1.14",
"desc": [
"A hard stone block made with 4 Stone and 4 Cobblestone (outputs 4). The block has the Furnace Texture, and can not be moved by Pistons."
]
},
{
"name": "Tallow And Candles",
"image": "tallow-and-candles.jpg",
"added": "1.14",
"removed": "1.18",
"desc": [
"In an attempt to make pigs be useful in any way, they drop Tallow. Tallow can be crafted alongside String to create Candles, or as a furnace fuel.",
"Candles come in all 16 colors of the spectrum, and emit as much light as torches. Candles will also fall like sand if there's no block under them, which can have many fun uses.",
"1.16+ Only: Lastly, for Enchanting Table purposes, a candle equals one bookshelf."
]
},
{
"name": "Thatch",
"image": "thatch.jpg",
"added": "1.14",
"desc": [
"Thatch is created via a 2x2 of Wheat. It can be used for stairs and slabs or turned back into 4 Wheat. You can use it for some fancy medieval roof styles."
]
},
{
"name": "Turf",
"image": "turf.jpg",
"added": "1.14",
"removed": "1.18",
"desc": [
"Turf Blocks can be crafted using a few bits of Tall Grass.",
"These blocks have the grass texture and coloring on all sides, are available in stair and slab variants, and do not decay when a block is on top.",
"1.16+: Turf and Turf variants can hold any plants grass can, including Sugar Cane without nearby water if a Turf stair/slab is waterlogged."
]
},
{
"name": "Variant Bookshelves",
"image": "variant-bookshelves.jpg",
"added": "1.14",
"desc": [
"You can now make Bookshelves out of all wood types. All of these bookshelves work for the Enchanting Table too."
]
},
{
"name": "Variant Chests",
"image": "variant-chests.jpg",
"added": "1.14",
"desc": [
"Chests can be made of all the different wood types. Each one is styled differently for the type of wood you use.",
"To get the vanilla chest, you can craft a chest with more than one type of wood, or woods added by other mods.",
"1.16.3+ Only: These variant chests will also replace the chests found in structures in the world.",
"1.16.4+ Only: Variant Chests can be converted into Vanilla Chests by placing them in a crafting table.",
"Includes support for the Lootr mod."
]
},
{
"name": "Variant Ladders",
"image": "variant-ladders.jpg",
"added": "1.14",
"removed": "1.18",
"desc": [
"Ladders can be made of all the different wood types. To compensate for the fact that sticks do not come in different wood types, the recipe for ladders is changed to have a single plank of the corresponding wood type in the center.",
"You can also make Iron Ladders, using Iron Ingots. They work like normal ladders, except that they can stand by themselves as long as there is an Iron Ladder on top, even if there isn't a block behind."
]
},
{
"name": "Variant Ladders",
"image": "variant-ladders-1.18.jpg",
"added": "1.18",
"desc": [
"Ladders can be made of all the different wood types. To compensate for the fact that sticks do not come in different wood types, the recipe for ladders is changed to have a single plank of the corresponding wood type in the center."
]
},
{
"name": "Vertical Planks",
"image": "vertical-planks.jpg",
"added": "1.14",
"desc": [
"Putting 3 wooden planks in a vertical line creates 3 Vertical Wooden Planks. Doing the same reverts it.",
"If Stained Wooden Planks is enabled, vertical versions of those are also added."
]
},
{
"name": "Vertical Slabs",
"image": "vertical-slabs.jpg",
"added": "1.14",
"desc": [
"Do I have to explain this?",
"They exist for every vanilla and Quark block that has a slab, and can be crafted by placing 3 of the respective slab in a column."
]
},
{
"name": "More Potted Plants",
"image": "more-potted-plants.jpg",
"added": "1.14",
"desc": [
"17 new blocks can now be added to Flower Pots. The feature image shows a bunch, but you can also add the vanilla 2 tall flowers, and nether wart.",
"1.16.3+: Twisting vines, weeping vines, large ferns, tall grass, vines, and nether sprouts are also added."
]
},
{
"name": "Gold Bars",
"image": "gold-bars.jpg",
"added": "1.15",
"desc": [
"Gold Bars are just like Iron Bars, but with gold! They look great for nether builds."
]
},
{
"name": "Shallow Dirt",
"image": "shallow-dirt.jpg",
"added": "1.16",
"removed": "1.18",
"desc": [
"Right clicking with a Hoe on a Path block creates a new Shallow Dirt block. This block has the same texture as dirt, and is 14 pixels high, as opposed to Path, which is 15 pixels high.",
"Additionally, and perhaps more importantly, Shallow Dirt can be waterlogged, to create a cool puddle effect, as you can see in the image."
]
},
{
"name": "Tie Leads to Fences",
"image": "tie-leads-to-fences.jpg",
"added": "1.16",
"removed": "1.18",
"desc": [
"Leads can now be tied directly between two fences, rather than only fence-animal.",
"Additionally, if Paper Lanterns are enabled, you can also right click on one first, and then a fence, to tie the lantern to the fence."
]
},
{
"name": "Burn Vine Tips",
"image": "burn-vine-tips.jpg",
"added": "1.16.3",
"removed": "1.18",
"desc": [
"The tip of a vine can now be burnt with a Flint and Steel. When you do so, the vine will no longer be able to grow."
]
},
{
"name": "Shear Vine Tips",
"image": "shear-vine-tips.jpg",
"added": "1.18",
"desc": [
"The tip of a vine can now be right clicked with Shears. When you do so, the vine will no longer be able to grow."
]
},
{
"name": "Wooden Posts",
"image": "wooden-posts.jpg",
"added": "1.16.3",
"desc": [
"Wooden Posts can be crafted with Logs or Stripped Logs. These are slim log style blocks you can lay down vertically or horizontally. Chains and lanterns can also connect to them."
]
},
{
"name": "Hedges",
"image": "hedges.jpg",
"added": "1.16.4",
"desc": [
"Hedges can be crafted using an overworld log and the respective leaf type. They connect to each other like fences, and have the same bounding box. You can even put flowers on them!"
]
},
{
"name": "Stools",
"image": "stools.jpg",
"added": "1.16.4",
"desc": [
"Stools can be created the same way you'd make a Bed, but using slabs instead of full wood blocks. As you can expect, you can sit on them!",
"Additional stool features include being able to place blocks over them, which makes them get bigger to match, and being able to stay on them even when moved by pistons."
]
},
{
"name": "Celebratory Lamps",
"image": "celebratory-lamps.jpg",
"added": "1.16.4",
"desc": [
"New Lamp blocks can be crafted with your block of choice, glass, and a torch. They come in Stone and Stone Brick variants, and emit a light level of 15.",
"These blocks are a celebration of Vazkii's Mods' 10th Anniversary, from 2011 through 2021, starting with the Lamps mod. Check out the <a href='https://vazkii.net/archive/mcf/'>Archive!</a>"
]
},
{
"name": "Variant Furnaces",
"image": "variant-furnaces.jpg",
"added": "1.18",
"desc": [
"Furnaces crafted from Deepslate or Blackstone have new textures. Additionally, Blackstone Furnaces can emit soul fire particles if placed over a block that can light up with soul fire.",
"Otherwise, they both behave the same as normal Furnaces."
]
},
{
"name": "Raw Ore Bricks",
"image": "raw-ore-bricks.jpg",
"added": "1.19.2",
"desc": [
"Raw Ore blocks can be crafted into raw ore bricks.",
"These bricks can still be crafted back into 9 raw ore."
]
},
{
"name": "Bamboo Backport",
"image": "bamboo-backport.jpg",
"added": "1.19.2",
"removed": "1.20",
"desc": [
"Bamboo from the 1.19.3 experimental features is backported to 1.19.2.",
"This also includes all of the quark wood type features but not the raft."
]
},
{
"name": "More Mud Blocks",
"image": "mud-blocks.jpg",
"added": "1.19.2",
"desc": [
"There are a few new mud building blocks, this includes Mud Brick Lattice, Mud Brick Pillar and Carved Mud Brick."
]
},
{
"name": "Hollow Logs",
"image": "hollow-logs.jpg",
"added": "1.19.2",
"desc": [
"Hollow Logs can be crafted with four of their respective logs.",
"You can sneak next to a horizontal Hollow Log to climb inside.",
"You can also climb the inside of a vertical Hollow Log like a ladder."
]
},
{
"name": "Rainbow Lamps",
"image": "rainbow-lamps.jpg",
"added": "1.19.2",
"desc": [
"Rainbow Lamps can be made of corundum by default and powered by redstone.",
"They will color beacons while powered."
]
}
],
"client": [
{
"name": "Chest Searching",
"image": "chest-searching.jpg",
"added": "1.14",
"desc": [
"A filter button will now appear on the top right of chests you open. When you click it, a tab with a search bar will pop up, where you can type and filter items in the chest by your query. Items that don't match will be darkened.",
"You can also search for enchantment and potion names, or wrap the search in quotes to match entire names."
]
},
{
"name": "Greener Grass",
"image": "greener-grass.jpg",
"added": "1.14",
"desc": [
"Grass is greener on the Quark side. Biome colors are still respected, but are greener non the less.",
"There's also config options to enable Alpha style grass, which gives you the Minecraft Alpha vibe, or to manually set the grass color.",
"You can also manually adjust the color balance in the config menu."
],
"expand": [
"#Greener Grass Config Menu",
"!img/features/client/greener-grass/greener-gui.png"
]
},
{
"name": "Improved Mount HUD",
"image": "improved-mount-hud.jpg",
"added": "1.14",
"removed": "1.18",
"desc": [
"While on a mount, your food display is still shown. Furthermore, while on a horse, the jump bar is only shown while holding down the jump key, the XP bar is shown otherwise."
]
},
{
"name": "Improved Tooltips",
"image": "improved-tooltips.jpg",
"added": "1.14",
"desc": [
"A few tooltips are changed around the place with visual elements:",
"*Tools and armor have their attributes displayed with icons.",
"*Food shows how much it'll heal with icons, and will show when it'll give you negative effects.",
"*Shulker Boxes show their contents visually.",
"*Maps display in the tooltip.",
"*Enchanted Books show which items they can be applied to."
],
"expand": [
"#Tools and Armor",
"!img/features/client/improved-tooltips/attributes.jpg",
"#Food",
"!img/features/client/improved-tooltips/food.jpg",
"#Shulker Boxes",
"!img/features/client/improved-tooltips/shulker.jpg",
"#Maps",
"!img/features/client/improved-tooltips/map.jpg",
"#Enchanted Books",
"!img/features/client/improved-tooltips/books.jpg",
"#Furnace Fuel",
"!img/features/client/improved-tooltips/smelting-time-tooltips.jpg"
]
},
{
"name": "Usage Ticker",
"image": "usage-ticker.jpg",
"added": "1.14",
"desc": [
"A small interface addition shows up next to the hotbar when items are used, or armor takes damage. This shows how many items or blocks you have left, or how the status of your armor is."
]
},
{
"name": "Variant Animal Textures",
"image": "variant-animal-textures.jpg",
"added": "1.14",
"desc": [
"Cows, Pigs, and Chicken will now have randomized textures from a small pool of variants. Additionally, some animals may rarely show up with a special variant..."
],
"expand": [
"Here's a render with the new skins for your enjoyment:",
"!img/features/client/variant-animal-textures/render.png"
]
},
{
"name": "Mouse 4 as Back",
"image": "back-keybind.jpg",
"added": "1.14",
"desc": [
"Pressing Mouse 4 (by default, rebindable) will try to find a Back/Done/Cancel button in your current GUI and click it. This makes the button work as a \"Back\" button like in most programs."
]
},
{
"name": "Camera Mode",
"image": "camera.jpg",
"added": "1.15",
"desc": [
"Pressing F12 (by default, rebindable) will open Camera Mode.",
"In this new mode, you can take enhanced screenshots, by using over 20 image filters, and combining them with borders and overlays. You can even enable grid lines such as the Rule of Thirds or the Golden Ratio to help you take a perfect image!",
"Date format can be changed in the config."
]
},
{
"name": "Auto Walk Keybind",
"image": "auto-walk-1.18.jpg",
"added": "1.16.3",
"desc": [
"Pressing the rebindable key (unbound by default, Caps Lock prior to 1.18) will toggle Auto Walk until either you press it again or start walking manually. While in Auto Walk, Auto Jump is also enabled. Great for people with motor problems who can't hold down a button for too long!"
]
},
{
"name": "Microcrafting Helper",
"image": "microcrafting-helper.jpg",
"added": "1.18",
"desc": [
"A crafting queue system is added to help when crafting recipes involving multiple steps:",
"*If you try to craft an item using the recipe book but don't have all necessary ingredients, you can now right click the created \"ghost items\" to instead bring up the recipe for that item.",
"*The item you were previously trying to craft will now be put in a \"crafting queue\" which shows up above the crafting result",
"*Upon crafting the current item, the previous item in the queue is loaded again",
"<a href='https://streamable.com/2k512k'>Here</a> is a demo video to better demonstrate this feature."
]
},
{
"name": "Soul Candles",
"image": "soul-candles.jpg",
"added": "1.18.2",
"desc": [
"Candles placed and lit on soul sand or soul soil will now emit soul flames, just like how fire does."
]
},
{
"name": "Uses for Curses",
"image": "uses-for-curses.jpg",
"added": "1.18.2",
"desc": [
"Curses now have added effects giving them some usefulness.",
"Pumpkins with Curse of Vanishing will not show the pumpkin overlay when worn.",
"Player Heads with Curse of Binding will show the player model of it's owner on an armor stand."
]
},
{
"name": "Elytra Indicator",
"image": "elytra-indicator.jpg",
"added": "1.19.2",
"desc": [
"While wearing an Elytra, it will display on the left side of the armor bar.",
"It will replace an armor slot and push the rest to the right."
]
},
{
"name": "Long Range Pick Block",
"image": "long-range-pick-block.jpg",
"added": "1.19.2",
"desc": [
"Pick Block can select blocks at any distance."
]
},
{
"name": "Wool Shuts Up Minecarts",
"image": "quiet-minecarts.jpg",
"added": "1.19.2",
"desc": [
"Minecarts will produce a lot less sound when their rails are placed onto wool blocks."
]
},
{
"name": "Buckets Show Inhabitants",
"image": "buckets-show-inhabitants.jpg",
"added": "1.19.2",
"desc": [
"Buckets can display variants of mobs like crabs, axolotls and tropical fish."
]
}
],
"management": [
{
"name": "Chests In Boats",
"image": "chests-in-boats.jpg",
"added": "1.14",
"removed": "1.19",
"desc": [
"Right clicking a Chest onto a Boat adds the chest in as a passenger. To access the chest, simply enter the boat and open your inventory, just like you would for a horse. To remove the chest (and the items inside), break the boat."
]
},
{
"name": "Easy Transferring",
"image": "easy-transferring.jpg",
"added": "1.14",
"desc": [
"Two new buttons are added to chests: Insert, and Extract.",
"*The Insert button will try to put every item in your inventory (not hotbar) inside the chest.",
"*The Extract button will try to pull every item from the chest into your inventory.",
"If you hold Shift while pressing these buttons, they'll only move items that are on the other side. (For example, if your chest has Stone and Dirt, and you have Stone and Sand in your inventory, Insert with Shift held will only move the Stone)",
"1.16.4+: A new button is also added that locks your Shift button down as a toggle. Useful for people with muscle problems!"
]
},
{
"name": "F To Switch",
"image": "f-to-switch.jpg",
"added": "1.14",
"removed": "1.16",
"desc": [
"Pressing F on an item in the inventory swaps it with your off-hand item, just as if you'd pressed F outside of the inventory. This uses the same keybind used for that purpose."
]
},
{
"name": "Hotbar Changer",
"image": "hotbar-changer.jpg",
"added": "1.14",
"desc": [
"Pressing the Z key (rebindable) will show your entire inventory above your hotbar. You can then press 1, 2, or 3, to switch that respective inventory row with your hotbar. Pressing Z again will hide the 3 additional rows with no change."
]
},
{
"name": "Inventory Sorting",
"image": "inventory-sorting.jpg",
"added": "1.14",
"desc": [
"A \"Sort\" button is added to the inventory screen and Chests. Pressing this button sorts your inventory, excepting your hotbar.",
"Sorting is done via a category system, in which items are placed based on what category they fit in (food, tool, armor, block, etc.). Each category also has its own sorting rules, e.g. food will get sorted based on which is more filling; tools will get sorted based on which one is the best, or has more durability; potions and tipped arrows will be sorted based on their effects."
]
},
{
"name": "Shulker Box Right Click",
"image": "shulker-box-right-click.jpg",
"added": "1.14",
"removed": "1.18",
"desc": [
"While holding an item in your cursor (that isn't a Shulker Box), you can right click on top of a non-full Shulker Box to add the item to it."
]
},
{
"name": "Expanded Item Interactions",
"image": "expanded-item-interactions.jpg",
"added": "1.18",
"desc": [
"A few new ways to interact with the items in your inventory have been added.",
"*While holding an item in your cursor (that isn't a Shulker Box), you can right click on top of a non-full Shulker Box to add the item to it. Alternatively, you can also right click the shulker box on the item.",
"*Right clicking an armor item in an inventory will swap it for whatever armor you're currently holding.",
"*Items can now be right clicked onto a Lava Bucket to destroy them forever. Shulker Boxes and items that are immune to fire (eg. Netherite) can not be destroyed this way."
],
"expand": [
"Shulker Boxes can be opened with right click in your inventory:",
"!img/features/management/inventory-shulkers.jpg"
]
},
{
"name": "Item Sharing",
"image": "item-sharing.jpg",
"added": "1.14",
"desc": [
"Pressing Shift+T (or whatever your Chat key is set to) while looking at an item in an inventory links that item to chat. Other players can hover over it to check it out."
]
},
{
"name": "Right Click Armor",
"image": "right-click-armor.jpg",
"added": "1.16.3",
"removed": "1.18",
"desc": [
"Right clicking an armor item in an inventory will swap it for whatever armor you're currently holding."
]
},
{
"name": "Quick Armor Swapping",
"image": "armor-swapping.jpg",
"added": "1.18.2",
"desc": [
"Shift-right clicking an armor stand will swap its armor set for whatever armor you're currently wearing."
]
},
{
"name": "Automatic Tool Restock",
"image": "automatic-tool-restock.jpg",
"added": "1.19.2",
"desc": [
"When a tool breaks on your hotbar, it will be restocked by other items of the same type taken from your inventory.",
"It will prioritise tools with similar enchantments, such as silk touch."
]
}
],
"mobs": [
{
"name": "Foxhounds",
"image": "foxhounds.jpg",
"added": "1.14",
"desc": [
"Foxhounds are new hostile mobs that spawn in the Nether. These fierce doggos will attack you and set you on fire.",
"If you're brave enough, drink a fire resistance potion and feed them some Coal to tame them. Tamed Foxhounds work just like regular wolves, but with a few extra tidbits:",
"*They'll sleep on hot blocks like magma.",
"*If put on top of a furnace, they'll make the furnace faster. You can't put multiple doggos on a furnace to speed it up more, though.",
"*1.16+: If one would spawn in a Soul Sand Valley, you'll get one with blue soul fire particles and a blue texture."
]
},
{
"name": "Stonelings",
"image": "stonelings.jpg",
"added": "1.14",
"desc": [
"Stonelings are new passive mobs that spawn in the deep underground and in complete darkness. These little stone fairies will spawn in carrying an item, and will get startled if you get too close to them without sneaking and holding a Glow Shroom to tempt them.",
"If startled, they'll run away from you and eventually poof out of existence. If you manage to kill one, you'll get the item its carrying as well as a Heart of Diamond."
],
"expand": [
"A Heart of Diamond, when used on any stone block will let you create your own tamed Stoneling! Tamed Stonelings can hold items you give them, eat Stone (they love it!), and follow you if you hold a Glow Shroom.",
"Before 1.18: Stonelings could spawn outside of complete darkness and were not guaranteed to drop a Heart of Diamond.",
"Before 1.18.1: Stonelings were temped using diamonds instead of Glow Shrooms. This is still the case if the Glimmering Weald is disabled."
]