-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathJOHN_SMITH_LEGACY_1.7.10_CHANGELOG.txt
1664 lines (1305 loc) · 69.1 KB
/
JOHN_SMITH_LEGACY_1.7.10_CHANGELOG.txt
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
====================================================================================================
John Smith Legacy - Resource Pack Changelog
http://www.johnsmithlegacy.co.uk/
NOTE:- This Resource Pack is for Minecraft 1.7.10 or greater, requires mcpatcher to get the best
out of it and has limited support for Optifine.
====================================================================================================
-{1.2.24}- 26th December 2015 - 1.7.10--------------------------------------------------------------
JimStoneCraft
<UPDATED>
textures/entity/witch.png
textures/entity/villager/butcher.png
textures/entity/villager/farmer.png
textures/entity/villager/librarian.png
textures/entity/villager/priest.png
textures/entity/villager/smith.png
textures/entity/villager/villager.png
textures/items/spawn_egg.png
All the Villagers and a Witch.
Spawn Egg was 1px out of position.
-{1.2.23}- 13th November 2015 - 1.7.10--------------------------------------------------------------
JimStoneCraft
<ADDED or UPDATED>
font/glyph_sizes.bin
textures/blocks/alternates/smooth_blocks
textures/blocks/alternates/smooth_blocks/emerald_ore.png
textures/blocks/alternates/smooth_blocks/gold_ore.png
textures/blocks/alternates/smooth_blocks/iron_ore.png
textures/blocks/alternates/smooth_blocks/lapis_ore.png
textures/blocks/anvil_top_damaged_0.png
textures/blocks/anvil_top_damaged_1.png
textures/blocks/anvil_top_damaged_2.png
textures/blocks/brick.png
textures/blocks/cauldron_bottom.png
textures/blocks/cauldron_inner.png
textures/blocks/cauldron_side.png
textures/blocks/cauldron_top.png
textures/blocks/coal_ore.png
textures/blocks/cobblestone.png
textures/blocks/command_block.png
textures/blocks/command_block.png.mcmeta
textures/blocks/daylight_detector_side.png
textures/blocks/deadbush.png
textures/blocks/door_iron_lower.png
textures/blocks/door_iron_upper.png
textures/blocks/double_plant_grass_bottom.png
textures/blocks/double_plant_grass_top.png
textures/blocks/emerald_ore.png
textures/blocks/emerald_ore.png.mcmeta
textures/blocks/end_stone.png
textures/blocks/endframe_side.png
textures/blocks/endframe_top.png
textures/blocks/fern.png
textures/blocks/flower_dandelion.png
textures/blocks/flower_pot.png
textures/blocks/gold_ore.png
textures/blocks/hopper_top.png
textures/blocks/jukebox_side.png
textures/blocks/jukebox_top.png
textures/blocks/lapis_ore.png
textures/blocks/lapis_ore.png.mcmeta
textures/blocks/netherrack.png
textures/blocks/noteblock.png
textures/blocks/planks_acacia.png
textures/blocks/planks_oak.png
textures/blocks/red_sand.png
textures/blocks/redstone_ore.png
textures/blocks/redstone_ore.png.mcmeta
textures/blocks/sand.png
textures/blocks/sandstone_carved.png
textures/blocks/sandstone_normal.png
textures/blocks/sandstone_smooth.png
textures/blocks/sandstone_top.png
textures/blocks/sapling_spruce.png
textures/blocks/sponge.png
textures/blocks/stonebrick.png
textures/blocks/stonebrick_carved.png
textures/blocks/stonebrick_cracked.png
textures/blocks/tallgrass.png
textures/blocks/trip_wire.png
textures/blocks/trip_wire_source.png
textures/blocks/trip_wire_wood.png
textures/blocks/vine.png
textures/blocks/wooden_pressure_plate.png
textures/entity/endercrystal
textures/entity/endercrystal/endercrystal.png
textures/entity/endercrystal/endercrystal_beam.png
textures/entity/horse/horse_skeleton.png
textures/entity/slime/slime.png
textures/entity/wither/wither.png
textures/entity/zombie/zombie_villager.png
textures/entity/explosion.png
textures/font/ascii.png
textures/font/ascii_sga.png
textures/font/unicode_page_00.png
textures/font/unicode_page_01.png
textures/gui/container/anvil.png
textures/gui/container/beacon.png
textures/gui/container/brewing_stand.png
textures/gui/container/crafting_table.png
textures/gui/container/dispenser.png
textures/gui/container/enchanting_table.png
textures/gui/container/furnace.png
textures/gui/container/hopper.png
textures/gui/container/horse.png
textures/gui/container/inventory.png
textures/gui/container/stats_icons.png
textures/gui/container/villager.png
textures/gui/title/minecraft.png
textures/items/apple_golden.png
textures/items/blaze_powder.png
textures/items/bow_pulling_0.png
textures/items/bow_pulling_1.png
textures/items/bow_pulling_2.png
textures/items/bow_standby.png
textures/items/bucket_empty.png
textures/items/bucket_lava.png
textures/items/bucket_lava.png.mcmeta
textures/items/bucket_water.png
textures/items/bucket_water.png.mcmeta
textures/items/carrot_on_a_stick.png
textures/items/cauldron.png
textures/items/charcoal.png
textures/items/coal.png
textures/items/door_iron.png
textures/items/door_wood.png
textures/items/dye_powder_black.png
textures/items/egg.png
textures/items/emerald.png
textures/items/emerald.png.mcmeta
textures/items/fireball.png
textures/items/fireworks_charge.png
textures/items/fireworks_charge_overlay.png
textures/items/fish_clownfish_raw.png
textures/items/fish_pufferfish_raw.png
textures/items/flower_pot.png
textures/items/ghast_tear.png
textures/items/gold_ingot.png
textures/items/iron_ingot.png
textures/items/item_frame.png
textures/items/leather_boots.png
textures/items/leather_helmet.png
textures/items/leather_leggings.png
textures/items/minecart_chest.png
textures/items/minecart_furnace.png
textures/items/minecart_hopper.png
textures/items/minecart_normal.png
textures/items/minecart_tnt.png
textures/items/potion_bottle_splash.png
textures/items/pumpkin_pie.png
textures/items/quiver.png
textures/items/reeds.png
textures/items/seeds_wheat.png
textures/items/shears.png
textures/items/sign.png
textures/items/spawn_egg.png
textures/items/spider_eye_fermented.png
textures/items/stick.png
textures/items/stone_hoe.png
textures/items/wood_hoe.png
textures/items/wood_shovel.png
Large backdate update, all the things that have changed in the later version of the pack.
The most important are the font files as this fixes a long term issue with some books in the modded
game (Thaumonomicon, Lexica Botania and others).
glyph_sizes.bin, ascii.png, ascii_sga.png, unicode_page_00.png, unicode_page_01.png
-{1.2.22}- 30th August 2015 - 1.7.10----------------------------------------------------------------
JimStoneCraft
<ADDED>
sounds/random/levelup.ogg
textures/entity/horse/donkey.png
textures/entity/horse/horse_black.png
textures/entity/horse/horse_brown.png
textures/entity/horse/horse_chestnut.png
textures/entity/horse/horse_creamy.png
textures/entity/horse/horse_darkbrown.png
textures/entity/horse/horse_gray.png
textures/entity/horse/horse_markings_blackdots.png
textures/entity/horse/horse_markings_white.png
textures/entity/horse/horse_markings_whitedots.png
textures/entity/horse/horse_markings_whitefield.png
textures/entity/horse/horse_skeleton.png
textures/entity/horse/horse_white.png
textures/entity/horse/horse_zombie.png
textures/entity/horse/mule.png
textures/slime/magmacube.png
Older better sounding level up sound.
Horse and Magmacube.
JimStoneCraft
<UPDATED>
pack.mcmeta
mcpatcher/ctm/wooden_button/wooden_button.png
mcpatcher/ctm/wooden_button/stone_button.png
textures/entity/chest/christmas.png
textures/entity/chest/christmas_double.png
textures/entity/chest/normal.png
textures/entity/chest/normal_double.png
textures/entity/chest/trapped.png
textures/entity/chest/trapped_double.png
textures/creeper/creeper.png
textures/enderman/enderman.png
textures/ghast/ghast.png
textures/ghast/ghast_shooting.png
textures/environment/end_sky.png
textures/environment/snow.png
misc/shadow.png
models/armor/chainmail_layer_1.png
models/armor/chainmail_layer_2.png
models/armor/diamond_layer_1.png
models/armor/diamond_layer_2.png
models/armor/gold_layer_1.png
models/armor/gold_layer_2.png
models/armor/iron_layer_1.png
models/armor/iron_layer_2.png
models/armor/leather_layer_1.png
models/armor/leather_layer_1_overlay.png
models/armor/leather_layer_2.png
models/armor/leather_layer_2_overlay.png
painting/paintings_kristoffer_zetterstrand.png
All textures backdated from the newer releases of the Resource Packs.
-{1.0.21}- 2nd August 2014 - 1.7.10-----------------------------------------------------------------
JimStoneCraft
<UPDATED>
[JimStoneCraft] textures/particles/particles.png
textures/blocks/lava_flow.png.mcmeta
textures/blocks/lava_still.png.mcmeta
textures/blocks/portal.png.mcmeta
textures/blocks/water_still.png.mcmeta
textures/blocks/water_flow.png.mcmeta
Added ("interpolate": true,) to the lava, water and portal animations to make them animate smoother.
It would seem that you cannot have transparent pixels for the water splash particle so it's now
solid light blue, thanks to Edelan7 for the bug report.
-{1.0.20}- 26th June 2014 - 1.7.10------------------------------------------------------------------
JimStoneCraft
<UPDATED>
[JimStoneCraft] textures/misc/enchanted_item_glint.png
textures/items/*.*
Reverted the Enchant glint to the vanilla glint as this shows the potion colours better.
Realigned all the item textures to be in the middle or 1 pixel up and 1 pixel to the left if it's
an odd number.
JimStoneCraft
<REMOVED>
textures/items/horsesaddle.png
textures/gui/title/realms.png
textures/gui/realms/cross_icon.png
textures/gui/realms/expired_icon.png
textures/gui/realms/invitation_icons.png
textures/gui/realms/invite_icon.png
textures/gui/realms/off_icon.png
textures/gui/realms/on_icon.png
textures/gui/realms/op_icon.png
textures/gui/realms/plus_icon.png
textures/gui/realms/restore_icon.png
textures/gui/realms/toggle_off_icon.png
textures/gui/realms/toggle_on_icon.png
textures/gui/realms/user_icon.png
textures/gui/realms/world_icon.png
Removed the horsesaddle as it's no longer required.
Removed all the Realms textures as they are no longer part of the vanilla resource pack.
-{1.2.19}- 8th June 2014 - 1.7.10-------------------------------------------------------------------
JimStoneCraft
<ADDED>
[JimStoneCraft] textures/misc/unknown_pack.png
textures/gui/title/realms.png
textures/gui/realms/cross_icon.png
textures/gui/realms/expired_icon.png
textures/gui/realms/invitation_icons.png
textures/gui/realms/invite_icon.png
textures/gui/realms/off_icon.png
textures/gui/realms/on_icon.png
textures/gui/realms/op_icon.png
textures/gui/realms/plus_icon.png
textures/gui/realms/restore_icon.png
textures/gui/realms/toggle_off_icon.png
textures/gui/realms/toggle_on_icon.png
textures/gui/realms/user_icon.png
textures/gui/realms/world_icon.png
Unknown pack texture added.
Separated the Minecraft Realms logo.
All the Realms controls now have their own images.
JimStoneCraft
<UPDATED>
[JimStoneCraft] mcpatcher/ctm/dirt_podzol/0-2.png
mcpatcher/ctm/dirt_podzol/podzol.properties
textures/gui/title/minecraft.png
textures/gui/widgets.png
Renamed podzol to dirt_podzol and added one extra Podzol to the CTM.
Removed the Minecraft Realms logo from the minecraft.png image and also removed all the extras from
the Widgets image as they are now separate files.
-{1.2.18}- 23rd May 2014 - 1.7.9--------------------------------------------------------------------
JimStoneCraft
<UPDATED>
[JimStoneCraft] textures/particle/particle.png
textures/blocks/fire_layer_0.png
textures/blocks/fire_layer_1.png
textures/blocks/torch_on.png
New flame effect when using a furnace or a torch in the same style as the fire layer, the smoke and
flames are now 60% transparent.
Adjusted the potion swirls to make them thinner and more round, arrow firing also made thinner, both
are now 40% tranparent to make them less intrusive.
Water bubble and rain bounce drops also 40% tranparent.
Partially transparent pixels cannot be on the fire layer or torch blocks, pixels with 50% or less
transparency are just removed by Minecraft and pixels with 51% or more transparency are just made
solid, so I cleaned up the textures as they had transparent pixels that didn't show up anyway.
-{1.2.17}- 13th May 2014 - 1.7.9--------------------------------------------------------------------
JimStoneCraft
<ADDED>
[JimStoneCraft] mcpatcher/ctm/stone_slab/side.png
mcpatcher/ctm/stone_slab/stone_slab_sides.properties
mcpatcher/ctm/stone_slab/stone_slab_top_bottom.properties
mcpatcher/ctm/leaves_acacia/0-3.png
mcpatcher/ctm/leaves_acacia/leaves_acacia.properties
mcpatcher/ctm/leaves_big_oak/0-3.png
mcpatcher/ctm/leaves_big_oak/leaves_big_oak.properties
mcpatcher/ctm/leaves_birch/3.png
mcpatcher/ctm/leaves_jungle/0-3.png
mcpatcher/ctm/leaves_jungle/leaves_jungle.properties
mcpatcher/ctm/leaves_oak/3.png
mcpatcher/ctm/leaves_spruce/0-3.png
mcpatcher/ctm/leaves_spruce/leaves_spruce.properties
Added sides to the Stone Slabs rather than using the top texture for the sides.
Random CTM for the other four types of leaves, also added one extra leaf block to Oak and Birch to
match the other leaves.
JimStoneCraft
<UPDATED>
[JimStoneCraft] mcpatcher/ctm/nether_brick_fence/1.png
mcpatcher/ctm/nether_brick_fence/2.png
mcpatcher/ctm/nether_brick_fence/3.png
mcpatcher/ctm/nether_brick_fence/4.png
mcpatcher/ctm/wooden_fence/1.png
mcpatcher/ctm/wooden_fence/2.png
mcpatcher/ctm/wooden_fence/3.png
mcpatcher/ctm/wooden_fence/4.png
mcpatcher/ctm/leaves_acacia/0-3.png
mcpatcher/ctm/leaves_acacia/leaves_acacia.properties
mcpatcher/ctm/leaves_big_oak/0-3.png
mcpatcher/ctm/leaves_big_oak/leaves_big_oak.properties
mcpatcher/ctm/leaves_birch/0-2.png
mcpatcher/ctm/leaves_birch/leaves_birch.properties
mcpatcher/ctm/leaves_jungle/0-3.png
mcpatcher/ctm/leaves_jungle/leaves_jungle.properties
mcpatcher/ctm/leaves_oak/0-2.png
mcpatcher/ctm/leaves_oak/leaves_oak.properties
mcpatcher/ctm/leaves_spruce/0-3.png
mcpatcher/ctm/leaves_spruce/leaves_spruce.properties
textures/blocks/leaves_acacia.png
textures/blocks/leaves_acacia_opaque.png
textures/blocks/leaves_big_oak.png
textures/blocks/leaves_big_oak_opaque.png
textures/blocks/leaves_birch.png
textures/blocks/leaves_birch_opaque.png
textures/blocks/leaves_jungle.png
textures/blocks/leaves_jungle_opaque.png
textures/blocks/leaves_oak.png
textures/blocks/leaves_oak_opaque.png
textures/blocks/leaves_spruce.png
textures/blocks/leaves_spruce_opaque.png
textures/entity/steve.png
The middle of both sets of fences were nine pixels when it should have been only eight pixel wide.
Redone the all the leaves and also changed the background colours on the opaque leaves to match the
leaf colours.
Changed Steve back to the older texture but still with the new neck and body.
Updated Steve with a new bottom of the body and the neck (Thanks Brolok for pointing this out).
JimStoneCraft
<REMOVED>
[JimStoneCraft] mcpatcher/ctm/stone_slab/stone_slab.properties
-{1.2.16}- 24th April 2014 - 1.7.9------------------------------------------------------------------
JimStoneCraft
<ADDED>
[JimStoneCraft] textures/blocks/alternates/jstr/
mcpatcher/ctm/cobblestone/cobblestone_double_slab_top_bottom.properties
Maintaining the JSTR base pack makes little sense when it's almost the same as the Legacy pack,
it's just more uneeded work, so I've compaired the two packs and these are all the blocks that are
different in the JSTR.
My plan for the JSTR pack is to have the Legacy pack as the base then add the the extra mod
textures.
Added Double Cobblestone CTM to match the Cobblestone Slab.
JimStoneCraft
<UPDATED>
[JimStoneCraft] textures/blocks/coal_block.png
textures/blocks/mushroom_brown.png
textures/blocks/mushroom_red.png
textures/items/iron_sword.png
mcpatcher/ctm/cobblestone/cobblestone_sides.properties
mcpatcher/ctm/cobblestone/cobblestone_slab_top_bottom.properties
mcpatcher/ctm/cobblestone/cobblestone_top_bottom.properties
The Coal Block and Iron Sword looked better in the JSTR so they have been added to the Legacy pack.
Updated the Cobblestone CTM due to a properties file mistake.
-{1.2.15}- 11th April 2014 - 1.7.8------------------------------------------------------------------
JimStoneCraft
<ADDED>
[JimStoneCraft] mcpatcher/ctm/glass/glass_pane.properties
mcpatcher/ctm/stained_glass_black/stained_glass_pane_black.properties
mcpatcher/ctm/stained_glass_blue/stained_glass_pane_blue.properties
mcpatcher/ctm/stained_glass_brown/stained_glass_pane_brown.properties
mcpatcher/ctm/stained_glass_cyan/stained_glass_pane_cyan.properties
mcpatcher/ctm/stained_glass_gray/stained_glass_pane_gray.properties
mcpatcher/ctm/stained_glass_green/stained_glass_pane_green.properties
mcpatcher/ctm/stained_glass_light_blue/stained_glass_pane_light_blue.properties
mcpatcher/ctm/stained_glass_lime/stained_glass_pane_lime.properties
mcpatcher/ctm/stained_glass_magenta/stained_glass_pane_magenta.properties
mcpatcher/ctm/stained_glass_orange/stained_glass_pane_orange.properties
mcpatcher/ctm/stained_glass_pink/stained_glass_pane_pink.properties
mcpatcher/ctm/stained_glass_purple/stained_glass_pane_purple.properties
mcpatcher/ctm/stained_glass_red/stained_glass_pane_red.properties
mcpatcher/ctm/stained_glass_silver/stained_glass_pane_silver.properties
mcpatcher/ctm/stained_glass_white/stained_glass_pane_white.properties
mcpatcher/ctm/stained_glass_yellow/stained_glass_pane_yellow.properties
mcpatcher/ctm/flower_pot/flower_pot.properties
Added CTM properties for the glass panes.
Flower Pot random ctm now works correctly (finally).
JimStoneCraft
<UPDATED>
[JimStoneCraft] mcpatcher/ctm/cactus/cactus_bottom.properties
mcpatcher/ctm/cactus/cactus_sides.properties
mcpatcher/ctm/cactus/cactus_top.properties
textures/gui/icons.png
textures/gui/widgets.png
More CTM updated to the names format from the ID format.
Added the extra X to the Icons sheet.
New widget 1.7.8 buttons.
-{1.2.14}- 28th March 2014 - 1.7.5------------------------------------------------------------------
JimStoneCraft
<ADDED>
[JimStoneCraft] mcpatcher/color.properties
mcpatcher/sky/world0/sky_clouds1.png
mcpatcher/sky/world0/sky10.properties
mcpatcher/sky/world0/moon_phases.png
mcpatcher/sky/world0/moon_phases.properties
mcpatcher/ctm/stone/stone.properties
mcpatcher/ctm/wool_white/wool_white.properties
mcpatcher/ctm/wool_white/0-47.png
mcpatcher/ctm/brick/brick_block_sides.properties
mcpatcher/ctm/brick/brick_block_top_bottom.properties
mcpatcher/ctm/brick/brick_slab_sides.properties
mcpatcher/ctm/brick/brick_slab_top_bottom.properties
mcpatcher/ctm/brick/brick_slab_upper_sides.properties
mcpatcher/ctm/brick_stairs/brick_stairs_bottom_1.png
mcpatcher/ctm/brick_stairs/brick_stairs_bottom_1.properties
mcpatcher/ctm/brick_stairs/brick_stairs_bottom_2.png
mcpatcher/ctm/brick_stairs/brick_stairs_bottom_2.properties
mcpatcher/ctm/brick_stairs/brick_stairs_sides.png
mcpatcher/ctm/brick_stairs/brick_stairs_sides.properties
mcpatcher/ctm/brick_stairs/brick_stairs_top.png
mcpatcher/ctm/brick_stairs/brick_stairs_top.properties
mcpatcher/ctm/cobblestone/cobblestone_sides.properties
mcpatcher/ctm/cobblestone/cobblestone_slab_top_bottom.properties
mcpatcher/ctm/cobblestone/cobblestone_top_bottom.properties
mcpatcher/ctm/cobblestone_mossy/mossy_cobblestone_sides.properties
mcpatcher/ctm/cobblestone_mossy/mossy_cobblestone_top_bottom.properties
mcpatcher/ctm/cobblestone_stairs/stone_stairs_sides.png
mcpatcher/ctm/cobblestone_stairs/stone_stairs_sides.properties
mcpatcher/ctm/cobblestone_stairs/stone_stairs_top_bottom_1.png
mcpatcher/ctm/cobblestone_stairs/stone_stairs_top_bottom_1.properties
mcpatcher/ctm/cobblestone_stairs/stone_stairs_top_bottom_2.png
mcpatcher/ctm/cobblestone_stairs/stone_stairs_top_bottom_2.properties
mcpatcher/ctm/nether_brick/nether_brick_sides.properties
mcpatcher/ctm/nether_brick/nether_brick_slab_bottom.properties
mcpatcher/ctm/nether_brick/nether_brick_slab_sides.properties
mcpatcher/ctm/nether_brick/nether_brick_slab_top.properties
mcpatcher/ctm/nether_brick/nether_brick_top_bottom.properties
mcpatcher/ctm/nether_brick_stairs/nether_brick_stairs_sides.properties
mcpatcher/ctm/nether_brick_stairs/nether_brick_stairs_top_bottom.properties
mcpatcher/ctm/planks_oak/oak_stairs.properties
mcpatcher/ctm/planks_oak/planks_oak.properties
mcpatcher/ctm/planks_oak/wooden_slab_oak.properties
mcpatcher/ctm/sandstone/0-5.png
mcpatcher/ctm/sandstone/10-15.png
mcpatcher/ctm/sandstone/sandstone.properties
mcpatcher/ctm/sandstone/sandstone_bottom.png
mcpatcher/ctm/sandstone/sandstone_bottom.properties
mcpatcher/ctm/sandstone/sandstone_top.properties
mcpatcher/ctm/wood_acacia_log_end/wood_acacia_log_end.properties
mcpatcher/ctm/wood_birch_log_end/wood_birch_log_end.properties
mcpatcher/ctm/wood_darkoak_log_end/wood_darkoak_log_end.properties
mcpatcher/ctm/wood_jungle_log_end/wood_jungle_log_end.properties
mcpatcher/ctm/wood_oak_log_end/wood_oak_log_end.properties
mcpatcher/ctm/wood_spruce_log_end/wood_spruce_log_end.properties
[Alternates] mcpatcher/ctm/stone/0-4.png
Added Endermite spawn egg colours.
Extra cloud layer at triple speed.
New moon due to the black blackgrounds and now has more phases.
Lots of CTM updated to the names format from the ID format.
Random CTM for stone.
JimStoneCraft
<UPDATED>
[JimStoneCraft] mcpatcher/sky/world0/sky_polaris_north_star_night.png
mcpatcher/sky/world0/sky_shooting_star_e.png
mcpatcher/sky/world0/sky_shooting_star_n.png
mcpatcher/sky/world0/sky_shooting_star_ne.png
mcpatcher/sky/world0/sky_shooting_star_nw.png
mcpatcher/sky/world0/sky_shooting_star_s.png
mcpatcher/sky/world0/sky_shooting_star_se.png
mcpatcher/sky/world0/sky_shooting_star_sw.png
mcpatcher/sky/world0/sky_shooting_star_w.png
mcpatcher/sky/world0/sky9.properties
textures/enviroment/moon_phases.png
mcpatcher/ctm/deadbush/deadbush.properties
mcpatcher/ctm/dirt/dirt.properties
mcpatcher/ctm/flower_allium.properties
mcpatcher/ctm/flower_blue_orchid/flower_blue_orchid.properties
mcpatcher/ctm/flower_dandelion/flower_dandelion.properties
mcpatcher/ctm/flower_houstonia/flower_houstonia.properties
mcpatcher/ctm/flower_oxeye_daisy/flower_oxeye_daisy.properties
mcpatcher/ctm/flower_rose/flower_rose.properties
mcpatcher/ctm/flower_tulip_orange/flower_tulip_orange.properties
mcpatcher/ctm/flower_tulip_pink/flower_tulip_pink.properties
mcpatcher/ctm/flower_tulip_red/flower_tulip_red.properties
mcpatcher/ctm/flower_tulip_white/flower_tulip_white.properties
mcpatcher/ctm/stained_glass_black/stained_glass_black.properties
mcpatcher/ctm/stained_glass_blue/stained_glass_blue.properties
mcpatcher/ctm/stained_glass_brown/stained_glass_blue.properties
mcpatcher/ctm/stained_glass_cyan/stained_glass_cyan.properties
mcpatcher/ctm/stained_glass_gray/stained_glass_gray.properties
mcpatcher/ctm/stained_glass_green/stained_glass_green.properties
mcpatcher/ctm/stained_glass_light_blue/stained_glass_light_blue.properties
mcpatcher/ctm/stained_glass_lime/stained_glass_lime.properties
mcpatcher/ctm/stained_glass_magenta/stained_glass_magenta.properties
mcpatcher/ctm/stained_glass_orange/stained_glass_orange.properties
mcpatcher/ctm/stained_glass_pink/stained_glass_pink.properties
mcpatcher/ctm/stained_glass_purple/stained_glass_purple.properties
mcpatcher/ctm/stained_glass_red/stained_glass_red.properties
mcpatcher/ctm/stained_glass_silver/stained_glass_silver.properties
mcpatcher/ctm/stained_glass_white/stained_glass_white.properties
mcpatcher/ctm/stained_glass_yellow/stained_glass_yellow.properties
mcpatcher/ctm/grass/grass_top
mcpatcher/ctm/gravel/gravel.properties
mcpatcher/ctm/leaves/birch/leaves_birch.properties
mcpatcher/ctm/leaves_oak/leaves_oak.properties
mcpatcher/ctm/mob_spawner/mob_spawner_bottom.properties
mcpatcher/ctm/mob_spawner/mob_spawner_top.properties
mcpatcher/ctm/podzol/podzol.properties
mcpatcher/ctm/reeds/reeds.properties
mcpatcher/ctm/stone/stone.properties
mcpatcher/ctm/stone_slab/stone_slab.properties
mcpatcher/ctm/stonebrick/stonebrick.properties
mcpatcher/ctm/stonebrick_cracked/stonebrick_cracked.properties
mcpatcher/ctm/stonebrick_mossy/stonebrick_mossy.properties
mcpatcher/ctm/stonebrick_mossy/stonebrick_mossy_top.properties
mcpatcher/ctm/tallgrass/tallgrass.properties
mcpatcher/ctm/vine/vine.properties
mcpatcher/ctm/wooden_fence/fence_sides.properties
mcpatcher/ctm/wooden_fence/fence_top_bottom.properties
mcpatcher/ctm/nether_brick_fence/nether_brick_fence_sides.properties
mcpatcher/ctm/nether_brick_fence/nether_brick_fence_top_bottom.properties
Adjust the black backgrounds to transparent.
Doubled the duration speed for the cloud layer.
New moon due to the black blackgrounds and now has more phases.
Glass directories and properties files rename, updated the CTM to the names format from ID's.
JimStoneCraft
<REMOVED>
mcpatcher/ctm/brick/block44.properties
mcpatcher/ctm/brick/block44a.properties
mcpatcher/ctm/brick/block44c.properties
mcpatcher/ctm/brick/block45.properties
mcpatcher/ctm/brick/block45a.properties
mcpatcher/ctm/brick_stairs/block44.properties
mcpatcher/ctm/brick_stairs/block44a.properties
mcpatcher/ctm/brick_stairs/block44c.properties
mcpatcher/ctm/brick_stairs/block45.properties
mcpatcher/ctm/brick_stairs/block45a.properties
mcpatcher/ctm/cobblestone/block4.properties
mcpatcher/ctm/cobblestone/block4a.properties
mcpatcher/ctm/cobblestone/block44.properties
mcpatcher/ctm/cobblestone_mossy/cobblestone_mossy_top.properties
mcpatcher/ctm/cobblestone_stairs/0.png
mcpatcher/ctm/cobblestone_stairs/1.png
mcpatcher/ctm/cobblestone_stairs/2.png
mcpatcher/ctm/cobblestone_stairs/block67.properties
mcpatcher/ctm/cobblestone_stairs/block67a.properties
mcpatcher/ctm/cobblestone_stairs/block67b.properties
mcpatcher/ctm/nether_brick_stairs/block114.properties
mcpatcher/ctm/nether_brick_stairs/block114a.properties
mcpatcher/ctm/planks_oak/block5.properties
mcpatcher/ctm/planks_oak/block53.properties
mcpatcher/ctm/planks_oak/block126.properties
mcpatcher/ctm/sandstone_normal/0-5.png
mcpatcher/ctm/sandstone_normal.properties
mcpatcher/ctm/sandstone/sandstone_top/0-5.png
mcpatcher/ctm/sandstone/sandstone_top.properties
mcpatcher/ctm/sandstone_carved/sandstone_carved/block24.properties
mcpatcher/ctm/stone_button/block77.properties
mcpatcher/ctm/stonebrick_cracked/block98.properties
mcpatcher/ctm/stonebrick_cracked/block98a.properties
mcpatcher/ctm/stonebrick_mossy/stonebricksmooth_mossy_a.properties
mcpatcher/ctm/wool/wool_colored_white.properties
mcpatcher/ctm/wool/0-11.png
mcpatcher/ctm/wool/16-27.png
mcpatcher/ctm/wool/32-43.png
mcpatcher/ctm/wool/48-59.png
mcpatcher/ctm/tripwire/e_side.properties
mcpatcher/ctm/tripwire/e_top.png
mcpatcher/ctm/tripwire/e_top.properties
mcpatcher/ctm/tripwire/n_top.png
mcpatcher/ctm/tripwire/n_top.properties
mcpatcher/ctm/tripwire/nw_side.png
mcpatcher/ctm/tripwire/nw_side.properties
mcpatcher/ctm/tripwire/s.png
mcpatcher/ctm/tripwire/s.properties
mcpatcher/ctm/tripwire/w_top.png
mcpatcher/ctm/tripwire/w_top.properties
mcpatcher/ctm/wood_acacia_log_end/block162.properties
mcpatcher/ctm/wood_birch_log_end/block17.properties
mcpatcher/ctm/wood_darkoak_log_end/block162.properties
mcpatcher/ctm/wood_jungle_log_end/block17.properties
mcpatcher/ctm/wood_oak_log_end/block17.properties
mcpatcher/ctm/wood_spruce_log_end/block17.properties
Lots of CTM removed due to the changes from ID's to the names format.
-{1.2.13}- 20th March 2014 - 1.7.5------------------------------------------------------------------
JimStoneCraft
<ADDED>
[JimStoneCraft] mcpatcher/sky/world0/sky3.properties
mcpatcher/sky/world0/sky_polaris_north_star.png
mcpatcher/sky/world0/sky_polaris_north_star_night.png
mcpatcher/sky/world0/sky_shooting_star_e.png
mcpatcher/sky/world0/sky_shooting_star_n.png
mcpatcher/sky/world0/sky_shooting_star_ne.png
mcpatcher/sky/world0/sky_shooting_star_nw.png
mcpatcher/sky/world0/sky_shooting_star_s.png
mcpatcher/sky/world0/sky_shooting_star_se.png
mcpatcher/sky/world0/sky_shooting_star_sw.png
mcpatcher/sky/world0/sky_shooting_star_w.png
mcpatcher/sky/world0/sky13.properties - sky30.properties
mcpatcher/ctm/flower_allium.properties
mcpatcher/ctm/flower_blue_orchid.properties
mcpatcher/ctm/flower_dandelion.properties
mcpatcher/ctm/flower_houstonia.properties
mcpatcher/ctm/flower_oxeye_daisy.properties
mcpatcher/ctm/flower_tulip_orange.properties
mcpatcher/ctm/flower_tulip_pink.properties
mcpatcher/ctm/flower_tulip_red.properties
mcpatcher/ctm/flower_tulip_white.properties
[JonnnLeee] mcpatcher/ctm/flower_allium/0-3.png
mcpatcher/ctm/flower_blue_orchid/0-3.png
mcpatcher/ctm/flower_houstonia/0-3.png
mcpatcher/ctm/flower_oxeye_daisy/0-3.png
mcpatcher/ctm/flower_tulip_orange/0-3.png
mcpatcher/ctm/flower_tulip_pink/0-3.png
mcpatcher/ctm/flower_tulip_red/0-3.png
mcpatcher/ctm/flower_tulip_white/0-3.png
I noticed that the sky_sunflare2.png was not used so added a properties file for it and renumbered
the rest of the properties files to match.
The North Star Polaris (Pole Star) and nighttime shooting stars.
Added the wonderfully detailed CTM flowers by JonnnLeee.
JimStoneCraft
<UPDATED>
[JohnSmith] mcpatcher/sky/world0/sky_box.png
mcpatcher/sky/world0/sky_clouds.png
mcpatcher/sky/world0/sky_sunflare.png
mcpatcher/sky/world0/sky_sunflare1.png
mcpatcher/sky/world0/sky_sunflare2.png
mcpatcher/sky/world0/sky_sunflare3.png
[JimStoneCraft] sky1.properties - sky12.properties
textures/environment/sun.png
I noticed there were higher resolution versions of the sky images in a previous version of the
JohnSmith pack (v9.6) so I've added them to this pack.
Cleaned up the sky properties files.
Doubled the resolution of the Sun to better match the new hires images.
-{1.2.12}- 15th March 2014 - 1.7.5------------------------------------------------------------------
JimStoneCraft
<ADDED>
[JonnnLeee] textures/blocks/double_plant_paeonia_bottom.png
textures/blocks/double_plant_paeonia_top.png
textures/blocks/double_plant_rose_bottom.png
textures/blocks/double_plant_rose_top.png
textures/blocks/double_plant_sunflower_back.png
textures/blocks/double_plant_sunflower_bottom.png
textures/blocks/double_plant_sunflower_front.png
textures/blocks/double_plant_sunflower_top.png
textures/blocks/double_plant_syringa_bottom.png
textures/blocks/double_plant_syringa_top.png
textures/blocks/flower_allium.png
textures/blocks/flower_blue_orchid.png
textures/blocks/flower_houstonia.png
textures/blocks/flower_oxeye_daisy.png
textures/blocks/flower_paeonia.png
textures/blocks/flower_tulip_orange.png
textures/blocks/flower_tulip_pink.png
textures/blocks/flower_tulip_red.png
textures/blocks/flower_tulip_white.png
textures/blocks/alternates/coal_ore.png
textures/blocks/alternates/diamond_ore.png
textures/blocks/alternates/emerald_ore.png
textures/blocks/alternates/gold_ore.png
textures/blocks/alternates/iron_ore.png
textures/blocks/alternates/iron_ore.png.mcmeta
textures/blocks/alternates/lapis_ore.png
textures/blocks/alternates/lapis_ore.png.mcmeta
textures/blocks/alternates/redstone_ore.png
textures/blocks/alternates/redstone_ore.png.mcmeta
textures/blocks/alternates/stone.png
textures/blocks/alternates/mcpatcher/ctm/stone
Changed the flowers to the much more detail versions by JonnnLeee.
Added the smooth stone alternates for all the ores.
-{1.2.11}- 28th February 2014 - 1.7.5---------------------------------------------------------------
JimStoneCraft
<ADDED>
[JimStoneCraft] textures/gui/widgets.png
Added the earth to the widgets sheet.
JimStoneCraft
<UPDATED>
[JimStoneCraft] textures/blocks/endframe_eye.png
textures/items/leather_chestplate.png
textures/items/leather_chestplate_overlay.png
textures/models/leather_layer_1_overlay.png
Cleaned up the End Frame Ender Eye as it was one pixel out of position.
Leather Overlay now includes a belt and a collar, also on the item icons.
-{1.2.10}- 19th February 2014 - 1.7.4---------------------------------------------------------------
JimStoneCraft
<UPDATED>
[JimStoneCraft] textures/gui/container/brewing_stand.png
textures/gui/container/crafting_table.png
textures/gui/container/furnace.png
textures/gui/container/inventory.png
textures/gui/container/villager.png
textures/items/empty_armor_slot_boots.png
textures/items/empty_armor_slot_chestplate.png
textures/items/empty_armor_slot_helmet.png
textures/items/empty_armor_slot_leggings.png
textures/items/leather_boots.png
textures/items/leather_boots_overlay.png
textures/items/leather_chestplate.png
textures/items/leather_chestplate_overlay.png
textures/items/leather_helmet.png
textures/items/leather_helmet_overlay.png
textures/items/leather_leggings.png
textures/items/leather_leggings_overlay.png
Sorted out an alignment issue with the Furnace, Brewing Stand and villager GUI.
Also cleaned up and made the GUI screens more consistent.
Cleaned up positioning and some dirty pixels on the Armor icons, also adjusted the leather armor to
suit the icon positions.
This will really be the last 1.7.4 update until 1.8 comes out.
-{1.2.9}- 18th February 2014 - 1.7.4----------------------------------------------------------------
JimStoneCraft
<ADDED>
[JohnCooldude876] textures/entity/iron_golem.png
[JimStoneCraft] mcpatcher/colormap/lavadrop.png
mcpatcher/colormap/myceliumparticle.png
mcpatcher/colormap/redstone.png
mcpatcher/colormap/xporb.png
mcpatcher/colormap/melonstem.png
mcpatcher/colormap/pumpkinstem.png
mcpatcher/line/fishingline.png
mcpatcher/line/fishingline.properties
mcpatcher/line/lead.png
mcpatcher/line/lead.properties
mcpatcher/mob/skeleton/skeleton2 - 15.png
mcpatcher/mob/skeleton/wither_skeleton2 - 15.png
New Iron Golem.
Custom colours for Melon and Pumpkin stems, dripping lava, Mycelium particle effect, Redstone and XP
Orb.
Lead and Fishing Line textures.
Redone the Skeleton and Wither Skeleton CTM textures to add some more variety, there are now sixteen
versions of each Skeleton.
JimStoneCraft
<UPDATED>
[JimStoneCraft] textures/blocks/sapling_jungle.png
textures/gui/container/beacon.png
textures/entity/skeleton/skeleton.png
textures/entity/skeleton/wither_skeleton.png
Cleaned up the Jungle Sapling and Beacon button textures.
Redone the Skeleton and Wither Skeleton textures to match the new CTM files.
Moved all the helper files into it's own directory, this is more for texture authors than end users.
Added some more custom colours for the XP Bar, Ender Dragon and sign text.
Spawner Egg Colour added to the color.properties, also reorganised the file into an easier reading
layout.
This will be the last 1.7.4 update until 1.8 comes out.
-{1.2.8}- 8th January 2014 - 1.7.4------------------------------------------------------------------
JimStoneCraft
<UPDATED>
[JimStoneCraft] textures/blocks/leaves_spruce_opaque.png
textures/map/map_icons.png
textures/items/potato.png
textures/items/potato_baked.png
textures/items/potato_poisonous.png
mcpatcher/ctm/mob_spawner/mob_spawner_top.png
mcpatcher/ctm/mob_spawner/mob_spawner_top.properties
mcpatcher/ctm/mob_spawner/mob_spawner_bottom.png
mcpatcher/ctm/mob_spawner/mob_spawner_bottom.properties
mcpatcher/ctm/color.properties
<REMOVED> mcpatcher/font/ascii.properties
mcpatcher/font/unicode_page_00.properties
textures/font/ascii.properties
textures/font/unicode_page_00.properties
Cleaned up the Spruce Opaque leaves.
Made the Map Icons much clearer (32x32px for each icon now).
Cleaned up the top and bottom CTM properties for the monster spawners as there were some errors.
Tweaked the Potatos to be a little rounder.
I had no plans on testing this pack in Optifine but decided to do some limited testing anyway as
some people are having some issues.
In Minecraft 1.7 onwards, blocks are referred to by name rather than ID number.
Numerical IDs are supported for older blocks currently, but newer blocks will be name only.
Stone blocks for example can be referred to as:-
1 (not recommended)
minecraft:stone (full name)
stone (name without prefix)
The trouble is Optifine still uses ID's so this is why the custom colours are not working correctly.
I've temporarily change the names back to ID's (names are still in the color.properties files but
are commented out) as at least this is currently compatible with both Optifine and MCPatcher but
with new blocks coming along like Granite, these will not even have an ID number and go by just a
name so this will have to change to the newer system in the end anyway.
Some things like the trip wire hooks and lever do not work in Optifine (they will look default).
As the font can display wrong with Optifine, I've removed the two font kerning properties files.
-{1.2.7}- 25th December 2013 - 1.7.4----------------------------------------------------------------
JimStoneCraft
<ADDED>
[JimStoneCraft] textures/entity/chest/christmas_double.png
textures/entity/chest/christmas.png
mcpatcher/colormap/leaves_acacia.png
mcpatcher/colormap/leaves_birch.png
mcpatcher/colormap/leaves_dark_oak.png
mcpatcher/colormap/leaves_jungle.png
mcpatcher/colormap/leaves_oak.png
mcpatcher/colormap/leaves_spruce.png
mcpatcher/ctm/flower_allium/0.png - 11.png
mcpatcher/ctm/flower_allium/flower_allium.properties
mcpatcher/ctm/flower_blue_orchid/0.png - 11.png
mcpatcher/ctm/flower_blue_orchid/flower_blue_orchid.properties
mcpatcher/ctm/flower_houstonia/0.png - 11.png
mcpatcher/ctm/flower_houstonia/flower_houstonia.properties
mcpatcher/ctm/flower_oxeye_daisy/0.png - 11.png
mcpatcher/ctm/flower_oxeye_daisy/flower_oxeye_daisy.properties
mcpatcher/ctm/flower_tulip_orange/0.png - 11.png
mcpatcher/ctm/flower_tulip_orange/flower_tulip_orange.properties
mcpatcher/ctm/flower_tulip_pink/0.png - 11.png
mcpatcher/ctm/flower_tulip_pink/flower_tulip_pink.properties
mcpatcher/ctm/flower_tulip_red/0.png - 11.png
mcpatcher/ctm/flower_tulip_red/flower_tulip_red.properties
mcpatcher/ctm/flower_tulip_white/0.png - 11.png
mcpatcher/ctm/flower_tulip_white/flower_tulip_white.properties