forked from clienthax/chococraft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MinecraftForumOP.txt
989 lines (782 loc) · 53.7 KB
/
MinecraftForumOP.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
[img]http://www.arno-saxena.de/pictures/chococraft/banner_title.png[/img]
[size=2]banner made by [url="http://www.minecraftforum.net/user/223231-galindorf/"]galindorf[/url][/size]
[b][size=5]UPDATED FOR MINECRAFT 1.6.X and 1.5.X[/size][/b]
Version 3.0.3 for mc1.6.X
Requires: [url="http://www.minecraftforge.net/"]Forge[/url] [url="http://files.minecraftforge.net/"]9.11.0.884+[/url]
Tested with: [url="http://www.minecraftforge.net/"]Forge[/url] [url="http://files.minecraftforge.net/"]9.11.1.916[/url]
Version 2.8.9 for mc1.5.X
Requires: [url="http://www.minecraftforge.net/"]Forge[/url] [url="http://files.minecraftforge.net/"]7.8.0.684+[/url]
Tested with: [url="http://www.minecraftforge.net/"]Forge[/url] [url="http://files.minecraftforge.net/"]7.8.1.737[/url]
This Mod is the continuation of [url="http://www.minecraftforum.net/user/1051245-eddiev/"]EddieV's[/url] mod. The original thread can be found [url="http://www.minecraftforum.net/topic/952372-"]here[/url]. I've officially taken over the helm with Eddie's kind blessings. As of version 3.0.1 [url="http://www.minecraftforum.net/topic/1687830-"]Micdoodle[/url] has joined the developer team.
This mod adds a mob called Chocobo to the game. This includes different coloured mob types with different attributes in their grown-up and juvenile form.
The most basic type can be found in the wild and can be tamed by using "Gysahl Greens" on them. Gysahl Greens is a plant found in the wild, but also can be planted by sowing Gysahl Seeds. Gysahl Seeds can be received by crafting from Gysahl Greens or by harvesting planted Gysahl Greens.
Chocobos can be breed and procreate. The offspring will be a Chicobo, the juvenile form of a Chocobo. After a while a Chicobo will grow into a Chocobo. Chicobos will be born wild and have to be tamed. Chicobos will inherit the type from one of their parents or mutate into new types. Thus by repeatedly breeding Chocobos all normal types of Chocobos can be acquired from tamed wild Chocobos. There are a few special Chocobo types though, which can only be acquired by special means.
As of version 2.0.4 this mod is in working condition for SMP.
[color=#ff0000][b]ACHTUNG! CAUTION! ¡CUIDADO! चेतावनी! ATTENZIONE! береги́сь!
This version of Chococraft is not compatible to versions pre 2.0.0 (pre mc 1.3.2). It will destroy your saved world if old Chocobos are included. Thus, if you want to use an old world with the new version of this mod, you should first start minecraft without the Chococraft mod, enter and save your world, thus removing all traces of older versions of Chococraft and only then start minecraft with the new version of Chococraft and tame new Chocobos.[/b][/color]
[color=#ff0000][b]This version of Chococraft will remove all Chocobos from worlds pre 2.8.5. Items in the Chocobo saddlebag and packbag inventories will be lost. ChocoCraft items stored in normal chests or player inventories are not affected.[/b][/color]
[color=#ff0000][b]At the moment a hit on the left shift-key will dismount the player from the Chocobo. While the former dismount by right click on the Chocobo is not working. This will be reverted to the old behaviour as soon as we find a solution to this issue[/b][/color]
Downloads:
[url="http://www.arno-saxena.de/minecraft/Chococraft_3.0.3.zip"]Torojimas ChocoCraft 3.0.3 for minecraft [color=#00dd00]1.6.4[/color][/url]
[url="http://www.arno-saxena.de/minecraft/Chococraft_2.8.9.zip"]Torojimas ChocoCraft 2.8.9 for minecraft [color=#00dd00]1.5.2[/color][/url]
[url="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=3RZTLRHB5GZUL&lc=BE&item_name=Torojima%27s%20ChocoCraft&item_number=0003¤cy_code=EUR&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted"][img]https://www.paypalobjects.com/en_US/BE/i/btn/btn_donateCC_LG.gif[/img][/url]
[url="http://flattr.com/thing/1456257/Torojimas-ChocoCraft"]Donate on Flattr[/url]
Follow [twitter]Torojima[/twitter] on Twitter.
Follow [twitter]micdoodle8[/twitter] on Twitter.
Downloads so far: [img]http://www.arno-saxena.de/minecraft/chocoboDownloads.png[/img]
crackedEggs parachute mod:
[spoiler]When flying a Chocobo, I would like to recommend the use of [url="http://www.minecraftforum.net/user/77049-crackedegg/"]crackedEggs[/url] [url="http://www.minecraftforum.net/topic/585469-"]parachute mod[/url] (version 410 or newer). Especially if you are using this mod on a server. On a connection failure while flying on high altitude, you will automatically dismount and fall to your death. One of crackedEggs parachutes in any spot in your inventory will auto-deploy if you're falling and thus prevent any harm from falling damage. (has to be switched on in the respective config file).[/spoiler]
Old versions:
[spoiler][url="http://www.arno-saxena.de/minecraft/Chococraft_2.7.3.zip"]minecraft 1.5.1 ChocoCraft 2.7.3[/url]
[url="http://www.arno-saxena.de/minecraft/Chococraft_2.5.3.zip"]minecraft 1.4.7 ChocoCraft 2.5.3[/url]
[url="http://www.arno-saxena.de/minecraft/Chococraft_2.4.2.zip"]minecraft 1.4.6 ChocoCraft 2.4.2[/url]
[url="http://www.arno-saxena.de/minecraft/Chococraft_2.3.9.zip"]minecraft 1.4.5 ChocoCraft 2.3.9[/url]
if somebody is in need of even older versions, please send me a note and I can provide a copy of the following versions:
minecraft 1.4.4: ChocoCraft 2.2.3
minecraft 1.4.2: ChocoCraft 2.1.3
minecraft 1.3.2: ChocoCraft 2.0.5
minecraft 1.2.5: ChocoCraft 1.6.10
minecraft 1.2.4: ChocoCraft 1.5.2
minecraft 1.2.3: ChocoCraft 1.4.1u
[/spoiler]
VIDEOS:
[spoiler][url="http://www.minecraftforum.net/user/2279620-supersaijinkyle/"]Supersaijinkyle[/url] has done a statistical analysis on breeding Chocobos. If you're planing to breed Chocobos, this one is a must!
[media]http://www.youtube.com/watch?v=8MzRn5nR_DI[/media]
[url="http://www.minecraftforum.net/user/26535-arkenor/"]Arkenore[/url] is in the middle of a great "lets play" series, eventually with Chocobos mostly with Ars Magica, Mo'Creatures and a few other mods, they seem to be compatible.
[media]http://www.youtube.com/watch?v=JSL4r3vOtGc[/media]
[url="http://www.minecraftforum.net/user/1520892-thediamondminecart/"]TheDiamondMinecart[/url] has done a nice review, using the 2.7.1 version.
[media]http://www.youtube.com/watch?v=u2tMN5QEXig[/media]
[url="http://www.minecraftforum.net/user/1831208-rainnero/"]RainNero[/url] has done a very good mod spotlight using the 2.4.2 version. Great as an introduction to everybody new to ChocoCraft.
[media]http://www.youtube.com/watch?v=mX6JmEi-iqI[/media]
[url="http://www.minecraftforum.net/user/18014-huskymudkipz/"]HuskyMUDKIPZ[/url] has done a very brief mod spotlight using the 2.3.8 version (so they still show the loverly and golden gysahl recipes).
[media]http://www.youtube.com/watch?v=uoUSLqInH38[/media]
jakingtonham has done a spotlight using the 2.3.8 version (I think, not much documentation here and I've found the video only by a youtube search):
[media]http://www.youtube.com/watch?v=w6HWKkKAU1c[/media]
[url="http://www.minecraftforum.net/user/1213426-robplaysminecraft/"]robplaysminecraft[/url] has done a video using the 2.3.7 version. Tho there are some glitches in the documentation:
- Packbags go on [b]unsaddled[/b] Chocobos! (why does nobody get that, it's described in the behaviour paragraph, isn't it??)
- only different gender Chocobos can be breed, the gender is indicated by the plume!
[media]http://www.youtube.com/watch?v=WSIZVuQ3MJk[/media]
[url="http://www.minecraftforum.net/user/1723035-shiftthemine/"]ShiftTheMine[/url] has done a video using the 2.1.2 version
[media]http://www.youtube.com/watch?v=6aRs1iAmgzk[/media]
[url="http://www.minecraftforum.net/user/1680849-privatespeakz/"]PrivateSpeakz[/url] has done a video using the 2.1.0 version
[media]http://www.youtube.com/watch?v=bGORV3UVo2o[/media]
[url="http://www.youtube.com/user/SupremoPete"]Supremo Pete[/url] is doing a video series about him playing minecraft with many different mods. Here is the link to episode 18 where he's starting to include ChocoCraft. He'll start to breed them and using the Chocopedia, maybe he'll use them some more one of these days...
[media]http://www.youtube.com/watch?v=9nEGK6B7PnY[/media]
[url="http://www.youtube.com/user/Gackomas"]Gackomas[/url] has done a video using the 1.6.4 version. This is for the last mc version, but it shows the functionality of the mod quite well, so I keep it for now.
[media]http://www.youtube.com/watch?v=abGRrtryQb0[/media]
pre v2.0.0 Videos
[spoiler][url="http://www.minecraftforum.net/user/1276763-aggressionssbb/"]aggressionssbb[/url] has made a whole series of videos while playing with the Chococraft mod. Here is the first one. Make sure to watch the rest of it on [url="http://www.youtube.com/playlist?list=PLF03FD65BE93F73C2&feature=mh_lolz"]his youtube chocobo playlist[/url]!
[media]http://www.youtube.com/watch?v=W3bvAlq5kpo[/media]
[/spoiler]
old Chocobo Model Videos:
[spoiler]EddieV's original video:
[media]http://www.youtube.com/watch?v=U_JWa8LzSas[/media]
[media]http://www.youtube.com/watch?v=ZWHMNQvtIHE[/media]
Thanks to [url="http://www.minecraftforum.net/user/772620-jeff-theking/"]Jeff_theking[/url] on Apr 11, 2012
[media]http://www.youtube.com/watch?v=RZXyXX2uHs4[/media]
Thanks to rsmalec
[media]http://www.youtube.com/watch?v=k2GhtKxZX4g[/media]
Thanks to InTheLittleWood[/spoiler][/spoiler]
CHANGELOG:
[spoiler]v.3.0.3 mc 1.6.4 by Torojima
1. hight issue solved
2. chicobo mutation colour bug fixed
3. same gender procreation bug fixed
4. moved disguise skin to assets folder
5. x,x position Chunk generated bug fixed
v.3.0.2 mc 1.6.4 by Torojima
1. breeding bug fixed
2. alternative recipe for lead (chocobo feather instead of slime ball)
3. sound bug fixed
4. ascending and descending speed of flying chocobo tweaked
v.3.0.1 mc 1.6.4 by Torojima and Micdoodle
1. update to mc1.6.4
v.2.8.9 mc 1.5.2 by Torojima
1. x,x position Chunk generated bug fixed
2. cleanup of mutation colour determination method
3. distanceToNextWild method optimised
v.2.8.8 mc 1.5.2 by Torojima
1. Chocobo check space suitable before teleport to player
2. Removed wrong saddle recipe
3. Corrected typo on Chocopedia
v.2.8.7 mc 1.5.2 by Torojima
1. Chocopedia now available in dungeon loot.
2. Chicobos need 3x3x3 area to grow into Chocobos
3. Chocopedia readable book
4. Chocopedia available as Zombie, Skeleton, Witch and Villager drop
v.2.8.6 by Torojima
1. changed gysahl mutation rate from procent to permille. (default values are equivalent to the values before)
2. changed the straw recipe from shapeless one wheat to four straw mats to two wheat next to each other for eight straw mats.
3. added Chocopedia creation through use of Chocobo feather on bookshelf.
4. added Chocopedia creation through use of writable book on chocobo.
v.2.8.5 by Torojima
1. removed third party despawn workaround
2. changed entity id's from global to mod-specific (this will destroy all present Chocobos, sorry)
v.2.8.4 by Torojima
1. compatibility bug with MoC fixed
2. additional compatibility with mc 1.5.1
3. chocobos can only die if player is around (third party despawn countered)
v.2.8.3 by Torojima
1. wild chocobo can despawn, switchable from config file
2. wild gysahl green generation rate settable from config file
v.2.8.2 by Torojima
1. missing Gysahl texture bug fixed
v.2.8.1 by Torojima
1. updated to mc 1.5.2
v.2.7.3 by Torojima
1. fixed bonemeal bug
2. fixed inventory-drop-from-shift-click-on-action-bar-bug
v.2.7.2 by Torojima
1. fixed straw harvest bug
2. new Chocopedia icon
3. fixed vanilla feather and vanilla saddle hijack
4. added gysahl pickles
v.2.7.1 by Torojima
1. updated to mc 1.5.1
v.2.6.2 by Torojima
1. icon debugging
v.2.6.1 by Torojima
1. updated to mc 1.5
2. Fixing Server crash when world filled with Chicobos created by older versions of ChocoCraft is loaded.
3. Changed purple(nether) Chocobo skins to ShadoxLunik's version.
4. added shapeless recipe vanilla saddle plus chocobo feather will craft a chocobo saddle.
v.2.5.3 by Torojima
1. Chicobo read spawn data error fixed
2. omit damage from suffocating in walls
v.2.5.2 by Torojima
1. enabled change player feature in smp
2. fixed switch to wander on save or grow up
3. fixed black and white can't jump high (now they can)
4. moved config file into config folder
5. added saddled can wander flag to config file
v.2.5.1 by Torojima
1. updated to mc 1.4.7
2. fixed chicobo teleport to player zero on server
v.2.4.2 by Torojima
1. fixed dedicated server crash
v.2.4.1 by Torojima
1. updated to mc 1.4.6
2. preventing bonemeal use on fully grown Gysahl green
3. fixing shift click in inventory
4. sound file found from within zip file (no need for extraction anymore)
5. ids in config/ChocoCraft.cfg file
v.2.3.9 by Torojima
1. breeding gysahls not craftable anymore, but mutations of domestic growing of gysahl greens
2. fixed sprinting mount bug
3. rider buffs can be disabled in the config file
v.2.3.8 by Torojima
1. owner change in Chocopedia in smp
2. breeding delay time in config file
3. grow up time in config file
v.2.3.7 by Torojima
1. removed Chicobo interaction crash
v.2.3.6 by Torojima
1. Different-Dimension-Chocobo-Mounting-Issue fixed, now Chocobos can be mounted in different dimensions than the surface one.
2. Two Purple Chocobos will produce a purple Chocobo egg when breed
3. Re-Introduced the purple Chocobo egg. It will spawn a Chocobo on right click.
4. Chibi Gysahl disabled
5. feather and silk right click only possible for owner
v.2.3.5 by Torojima
1. Chicobos can swim
2. Chocobo items as dungeon loot
3. "random love rush" bug fixed
4. straw will break if supporting block is removed
5. hearts particles show on straw healing
6. Chicobos follow player zero bug fixed
7. growing Chicobos loos status bug fixed
8. shorter breeding delay for male Chocobos
v.2.3.4 by Torojima
1. Chocobo pen healing Chocobos
2. right click with silk for follow/stay toggle
3. changed name of Chocobo Cake to Gysahl Cake
v.2.3.3 by Torojima
1. fixed mounting movement twitching
v.2.3.2 by Torojima
1. added water speed factor
2. added rider abilities
3. enabled purple chocobo (but not spawning)
4. fixed server crash
v.2.3.1 by Torojima
1. Updated for mc 1.4.5
older changelogs:
[spoiler]v.2.2.3 by Torojima
1. Added proximity threshold and chunk radius total threshold to custom spawning.
v.2.2.2 by Torojima
1. fixed server crash
2. fixed Chocobo mounting crash
3. increased Chocobo leg stack limit to 64
v.2.2.1 by Torojima
1. Updated for mc 1.4.4
2. custom spawning
3. added arrow recipe using Chocobo feathers
v.2.1.3 by Torojima
1. wild Chocobos will not despawn
2. pack bags working
v.2.1.2 by Torojima
1. Bonemeal use on Ghysal Green stem will actually use a bonemeal unit
2. Chicobos follow toggled by feather use
3. fixed crash in server version due to introduction of config file
v.2.1.1 by Torojima
1. added config file
v.2.1.0 by Torojima
1. updated for mc 1.4.2
2. enable Chocopedia buttons only if player is owner of the Chocobo
3. not following/wander as default after taming
v.2.0.5 by Torojima
1. Rearranging of Chocopedia and added owner info
2. Chocobos follow owner in SMP, not first player in world player stack
3. working saddle bags (pack bags still disabled)
v.2.0.4 by Torojima
1. refactored network packet handling
2. disabled name display when Chocobo is mounted
3. fixed Chicobos not growing up bug
v.2.0.3b by Torojima
1. fixed server spawn problem
v.2.0.3a by Torojima
1. fixed latest server crash
v.2.0.3 by Torojima
1. names show regardless of sattle status
2. different colour Chocobos can mate and procreate
3. made all Chocobos faster when mounted
v.2.0.2a by Torojima
1. fixed a bug created by fixing the last server crash bug
v.2.0.2 by Torojima
1. fixed another server bug
2. Chocobo items in creative
v.2.0.1 by Torojima
1. removed server-mod bug
2. corrected rider position, now rider is no longer sitting *in* the Chocobo
3. fixed to many Chocobos spawn in new worlds bug
v.2.0.0 by Torojima
1. Updated to Minecraft version 1.3.2
2. Switched from ModLoader to Forge
3. Completely refactored the class structure
4. Temporarily switched off Purple Chocobos, Saddle- and Pack-Bags and Chocobo Whistle
v.1.6.10 by Torojima and LeonBlade
1. added feather drop chance parameters to the config file (increased the drop rate in the default values)
2. shift-click to open pack inventory
3. reduced speed on water for non blue Chocobos
4. introducing coloured feathers
v.1.6.9 by Torojima
1. removed a bug in the nomenclature of one of the config file entries, pawnMinGroup will now be known as spawnMinGroup [img]http://static.minecraftforum.net//public/style_emoticons/default/biggrin.png[/img]
2. added pack Chocobos with bigger inventory, but can not be used as mount.
3. added entries for spawn time cycle and spawn threshold to the config file
v.1.6.8 by Torojima
1. Saddle-bagged Chocobos will drop saddle, saddlebags and content of the saddlebags when set free.
2. fixed bug causing disappearing of Chocobos at grow-up.
v.1.6.7 by Torojima
1. Major cleanup of EntityChocobo and derived EntityNetherChocobo classes. (Moving similar classes from EntityNetherChocobo to EntityChocobo for better maintenance, this should not be noticeable by the player).
2. Added item Chocobo saddle bags item.
3. Chocobo saddle bags can be put on a saddled Chocobo, thus giving a Chocobo an inventory accessible by shift-right-clicking the respective Chocobo.
v.1.6.6 by Torojima
1. Recipes have been changed, so they do not need the empty spaces above or beside them, now smaller recipes can be crafted in the 2x2 grid.
2. Recipe for Ghysal Cake has been changed to milk, Ghysal green, milk, sugar, egg, sugar, wheat, Ghysal green and wheat.
3. Added Chocobo Saddle Bags item which can be put on a saddled Chocobo (undocumented)
4. Added Saddlebagged Chocobo Skins
5. Switched ModLoader Spawning of Nether Chocobos back on. For now, Nether Chocobos only spawn in new generated chunks.
v.1.6.5 by Torojima
1. Saddled Chocobos will drop the saddle if killed
2. Bug in purple Chocobos flying fixed
3. Bug in purple Chocobos riding position fixed
4. Bug preventing Chicobos to change texture when tamed fixed
v1.6.4 by Torojima
1. Tamed wolves will not attack tamed chocobos.
2. Chocobo fertilizer recipe changed to bone meal and chocobo feather.
v1.6.3 by Torojima
1. Fixed floating rider bug
2. Wing flutter can be switched off by flag in config file.
v1.6.2 by Torojima
1. Changed chocobo model
v1.6.1 by Torojima
1. Changed recipes for loverly ghysal and Chocopedia
v1.6.0 by Torojima
1. Patched for Minecraft version 1.2.5
v1.5.2 by Torojima
1. Added independend spawning class
2. modified configuration file
v1.5.1u by Torojima
1. Fixed the Chocobo-skin bug
v1.5.0u by Torojima
1. Patched for Minecraft version 1.2.4
v1.4.1u by Torojima
1. Added declaration of item ids to the config file
v1.4.0u by Torojima
1. Added a config file which includes name display switch, spawn biome list for standard Chocobos and spawn properties
v1.3.1u by Torojima
1. Patched for Minecraft version 1.2.3
v1.2 by EddieV
1. Added Chocobo Abilities
2. Added a new type of Chocobo - the Purple Chocobo
3. The Purple Chocobo spawns only in the Nether
4. Breeding a Purple Chocobo with one of any other color, will make the Purple Chocobo behave as a normal yellow one
5. Breeding two Purple Chocobos will drop a Nether Chocobo Egg
6. Nether Chocobo Eggs will hatch into a Purple Chicobo when thrown.
7. Adjusted the speed of the chocobos due to the introduction of abilities.
8. The rider of the Chocobo won't receive fall damage as of now.
9. Fixed an issue where a tamed Chocobo would get a new name when re-tamed.
10. Fixed an issue where Minecraft would crash when players entered The Nether
11. Fixed an issue where the mutation chance by use of Golden Gysahls was lower than intended
v1.1.1: by EddieV
1. Added new item Chocobo Tweezers that allows players to pluck out a feather from a tamed or saddled Chocobo.
2. Feathers can only be plucked out every once in a while, and they have a 75% change of being plucked out
3. If the player fails to pluck out the feather, the tamed/saddled chocobo will become wild
4. Added a new item Chocopedia that offers players some control over a tamed/saddled chocobo or chicobo
5. Using the Chocopedia, players can name the chocobo, hide the name individually and make them follow or stay (tamed chocobos will still roam while not following). The Chocopedia also presents information about the chocobo's health and if he already can breed or needs to wait more.
6. Gold, Pink and Red Chocobos now won't receive any fall damage.
7. Extended the default Chocobo name list to 55 different names.
8. Fixed the ID of the Chocobo Fertilizer to be compatible with Millenaire mod
9. Fixed an issue where Chocobo Feathers wouldn't spawn
10. Fixed an issue where Chocobo and Chicobo's health wasn't working as intended.
11. Fixed an issue where players weren't able to cure Chocobos even when hurt.
v1.1: by EddieV
1. Added a config file for players to change the mod's properties
2. Included Custom Mob Spawner API for better control on Chocobo Spawning
3. Adjusted spawning rate of Gysahl Greens
4. Adjusted spawning rate of Chocobos
5. Chocobos now only spawn at forests, plains and mountains (includes snowy mountains)
6. A maximum of 50 Chocobos will spawn (can be changed through the config file)
7. Chocobos will despawn if too far from player (tamed or saddled Chocobos and Chicobos will always remain)
8. Tamed Chicobos now remain tamed after growing up
9. Chocobos won't lose ownership anymore, even when playing offline
10. Adjusted Chocobo Feather spawning rate
11. The player can now pick up items while on a Chocobo
12. Added new item Chibi Gysahl - an item that will force a Chicobo to not grow up
13. Added new item Gysahl Seeds - can be planted and will grow into Gysahl Greens
14. Added new item Chocobo Fertilizer - used to instantly grow Gysahl Seeds into Gysahl Greens
15. Added 15 Choco Achievements
16. Chocobos and Chicobos can now be named once tamed. The name wilfl show above their head
17. Fixed a bug where Gysahl Greens wouldn't show up on Creative mode
18. Fixed Chicobos behaviour - now they'll follow correctly and not push the player
19. Fixed a bug where Saddled Chocobos wouldn't move to mate
v1.0.1: by EddieV
1. Slightly increased the size of Chocobos and Chicobos.
2. Adjustments to the bounding boxes were made to improve riding animations and interactions.
3. Adjustments were made to how close the Chocobo will follow his owner, due to the increased size.
4. Chocobos won't Kweh as often.
5. Saddled Chocobos texture was adjusted to remove glitch through the wings.
6. Chocobos will now fit through doors.
7. When following the owner, Chocobos will stop wandering to facilitate movement and instructions.
8. Fixed an issue where saddled Chocobos would remain stationary even when freed.
9. Fixed an issue where Chocobos kept pushing the owner when following.
10. Fixed an issue where following orders would be reset when loading the game.
11. Fixed an issue where Red or Pink Gysahls would not be consumed when used.
v1.0: by EddieV
1. Fixed an issue where you weren't able to get a Pink Chocobo.
2. White/Black Chocobos are now faster than the previous ones, but still slower than Gold.
3. Fixed the spawning rate of Chocobo packs.
[/spoiler]
[/spoiler]
Chocobos and their behaviour:
[spoiler]Types of Chocobos:
[spoiler]There are currently 9 types of Chocobos:
Yellow, Green, Blue, Black, White, Gold, Pink, Red and Purple
[img]http://www.arno-saxena.de/pictures/chococraft/chocobo_colours_org.png[/img]
Picture by [url="http://www.minecraftforum.net/user/524192-uncletravis/"]uncletravis[/url]
The average Chocobos are yellow, so all the wild ones you'll encounter will be of this type. Chocobos can be found in forests, plains and mountains (including snowy forests and mountains).
The other types can be obtained by breeding.
There are also rumors of there being 3 secret types. [img]http://static.minecraftforum.net//public/style_emoticons/default/rolleyes.gif[/img]
[spoiler][img]http://www.arno-saxena.de/pictures/chococraft/chocobo_pink_red.png[/img]
Screenshot by [url="http://www.minecraftforum.net/user/524192-uncletravis/"]uncletravis[/url][/spoiler][/spoiler]
What's the difference between each type of Chocobo?
[spoiler] 1. Yellow Chocobos are the average chocobos and have no clear abilities.
2. Green Chocobos have the ability to climb, which means that they don't need to jump in order to go up a block that is one step higher.
3. Blue Chocobos have the ability to cross water, which means that they don't won't sink in water and will travel fast in water.
4. White Chocobos have the ability to climb and cross water, and are faster than the previous ones.
5. Black Chocobos have the ability to jump high, climb and cross water, and are as fast as the white ones.
6. Gold/Pink/Red Chocobos have the ability to fly, climb and cross water, don't take fall damage, and are the fastest chocobos.
7. Purple Chocobos have the ability to fly, climb and cross lava, don't take fall damage, are as fast as white and black chocobos, and are immune to fire. They will be found only in The Nether or End.
[/spoiler]
Where can I find Gysahl Greens?
[spoiler][img]http://www.arno-saxena.de/pictures/chococraft/pic_gysahl_in_wild.png[/img]
1. Gysahl Greens can be found around the world, in places where flowers can grow (mainly forests, plains and mountains)
2. You can also craft Gysahl Seeds to plant in your farm.
3. For the seeds to grow instantly, you can use Chocobo Fertilizer
[/spoiler]
How to obtain a Chocopedia?
[spoiler]1. you can craft a Chocopedia using the recipe given in the recipes list.
2. you can right click a bookshelf with a chocobo feather. This will consume a chocobo feather and the bookshelf and produce a Chocopedia at it's place.
3. you can right click a Chocobo with a writable book, this will transform the writable book into a Chocopedia.
[/spoiler]
How do I tame a Chocobo?
[spoiler][img]http://www.arno-saxena.de/pictures/chococraft/pic_choco_in_wild.png[/img]
1. find a pack of wild Chocobos
2. Feed one some Gysahl Greens
3. You will see some hearts and a red collar when the Chocobo is tamed
[/spoiler]
What happens when a Chocobo is tamed?
[spoiler] 1. you can use the Chocopedia on it
2. the Chocobo can be saddled using a Chocobo Saddle.
3. can be equipped with a transport pack.
4. can be healed using Gysahl Greens.
5. will heal while resting in a Chocobo pen.
6. can be made to follow its owner with help of the Chocopedia or a right click with a feather. (Default after taming is not following)
[/spoiler]
How to build a Chocobo pen?
[spoiler] Every area covered with straw and equipped with a water filled cauldron will count as a Chocobo pen. If a hurt Chocobo will stand on the straw near the cauldron it will automatically heal over time.
[img]http://www.arno-saxena.de/pictures/chococraft/pic_straw_in_pen.png[/img]
Screenshot by [url="http://www.minecraftforum.net/user/173045-torojima/"]Torojima[/url][/spoiler]
What happens when a Chocobo is saddled?
[spoiler][img]http://www.arno-saxena.de/pictures/chococraft/pic_saddled.png[/img]
Screenshot by [url="http://www.minecraftforum.net/user/173045-torojima/"]Torojima[/url]
1. the Chocobo will stay where left (will follow again if set in Chocopedia)
2. can be ridden by right-clicking on it (hold shift for slower manoeuvring fast Chocobos.)
3. can be equipted with saddle bags by left-clicking with one
4. can drop its saddle by clicking on "drop gear" in Chocopedia
[img]http://www.arno-saxena.de/pictures/chococraft/pic_chocobo_riding.png[/img]
Screenshot by [url="http://www.minecraftforum.net/user/1099767-poloniumradon/"]PoloniumRadon[/url][/spoiler]
What happens when a Chocobo is equipted with saddle bags?
[spoiler] 1. the Chocobo can store and transport up to 36 item stacks. Saddle bags can be accessed by shift-right-click.
2. can drop saddle and saddle bags by clicking on "drop gear" in Chocopedia
[/spoiler]
What happens when a Chocobo is equipted with a transport pack?
[spoiler] 1. the Chocobo can store and transport up to 54 item stacks (but can no longer be equipped with a saddle). Transport bags can be accessed by shift-right-click.
2. can drop the pack bag by clicking on "drop gear" in Chocopedia
[/spoiler]
What happens when a Chocobo dies?
[spoiler] 1. the Chocobo will drop a Raw Chocobo Leg which can be cooked (and is yummy)
[/spoiler]
How can I obtain a Chocobo Feather?
[spoiler] 1. Chocobo Feathers are occasionally dropped by wild or tamed Chocobos.
[/spoiler]
How can I obtain Loverly or Golden Gysahls?
[spoiler] 1. Obtain wild Gysahl Greens
2. craft Gysahl seeds from Gysahl Greens and plant them in tilted earth
3. wait for the Gysahl to fully grow
4. harvest Gysahl. Loverly and Golden Gysahls are a domestic mutation of Gysahl Greens. Thus, when harvesting your planted Gysahls, you will notice if the plant has grown into a Loverly or Golden Gysahl. Unfortunately Loverly and Golden Gysahl are infertile, thus they do not contain any seeds and can not be crafted into seeds, their only purpose is to work as an aphrodisiac for Chocobos.
[/spoiler]
How can I breed two Chocobos?
[spoiler][img]http://www.arno-saxena.de/pictures/chococraft/pic_chocobo_hearts.png[/img]
Screenshot by [url="http://www.minecraftforum.net/user/524192-uncletravis/"]uncletravis[/url]
1. First you have to obtain Loverly Gysahls or Golden Gysahls by farming. Both are a domestic mutation of the normal Gysahl Green.
2. select two tamed Chocobos of different gender to be breed. You can only choose Chocobos you own.
3. wait until the status in the Chocopedia changes from "can not breed" to "can breed". Chocobos need some time after breeding (and after growing up) to be ready to breed again.
4. both Chocobos have to be fed Loverly Gysahls or Golden Gysahls. After that, they'll procreate and a Chicobo will born. There is a certain chance of breeding a mutation, thus a different colored Chocobo will be born.
5. by feeding both Chocobos with Golden Gysahls, the probability of a mutation will increase noticeably.
[/spoiler]
When will a Chicobo grow into a Chocobo?
[spoiler][img]http://www.arno-saxena.de/pictures/chococraft/pic_chocobo_chicobo.png[/img]
1. Chicobos are young Chocobos, so after some time they will eventually grow up
2. Chicobos can also be fed a Gysahl Cake to grow up instantly, but only after they have been tamed.
[/spoiler]
How can I get the other types of Chocobos?
[spoiler]I'll put a new spoiler tag on this, since these are the exact breeding instructions to get the other types. So be warned! If you want to experiment and find out about how to get the other types DO NOT READ THIS. You've been warned.
[spoiler] 1. Yellow + Yellow = Green or Blue
2. Green + Blue = White
3. Yellow + White = Black
4. Black + White =(Golden Gysahls REQUIRED)= Gold
I won't tell you how to get the other two types anyway >[img]http://static.minecraftforum.net//public/style_emoticons/default/smile.png[/img] All I can say is it is not through breeding, but by forcing a Gold chocobo to be another one ;P[/spoiler][/spoiler]
And why do I want a Chocobo?
[spoiler][img]http://www.arno-saxena.de/pictures/chococraft/pic_riding.png[/img]
Screenshot by [url="http://www.minecraftforum.net/user/524192-uncletravis/"]uncletravis[/url]
1. Chocobos are cute
2. They are a fast way to travel
3. KWEH!
[img]http://www.arno-saxena.de/pictures/chococraft/pic_chocobo_riding_view.png[/img]
Screenshot by [url="http://www.minecraftforum.net/user/1099767-poloniumradon/"]PoloniumRadon[/url][/spoiler][/spoiler]
Items and Blocks:
[spoiler] 1. [img]http://www.arno-saxena.de/pictures/chococraft/item_gysahl_green.png[/img] Gysahl Greens - Gysahl Greens are the most important block in ChocoCraft. They are used to tame Chocobos and to create various other greens. Just like flowers, Gysahl Greens will grow randomly across the map and can be collected and even planted again.
2. [img]http://www.arno-saxena.de/pictures/chococraft/item_choco_leg_raw.png[/img] Raw Chocobo Leg - This piece of meat is dropped by the most unfortunate Chocobos. Just like regular chicken legs, they can be cooked on a furnace.
3. [img]http://www.arno-saxena.de/pictures/chococraft/item_choco_leg_cooked.png[/img] Cooked Chocobo Leg - By eating this yummy chocobo leg, you'll reduce your famine. A Chocobo Leg reduces famine even more than a cooked chicken leg, healing just as much as a cooked pork chop.
4. [img]http://www.arno-saxena.de/pictures/chococraft/item_choco_feather.png[/img]Chocobo Feather - Chocobo Feathers are very attractive items to Chocobos. They can be used to build saddles, whistles, and even special types of gysahls. Tamed and wild Chocobos will occasionaly drop these.
5. [img]http://www.arno-saxena.de/pictures/chococraft/item_saddle.png[/img] Chocobo Saddle - Tamed Chocobos can only be ridden once they are saddled with these special saddles.
6. [img]http://www.arno-saxena.de/pictures/chococraft/item_saddle_bags.png[/img] Chocobo Saddle Bags - Saddled Chocobos can be equipted with one of these to give them some transport and storage capacities. Once saddle bags are fitted onto a Chocobo, they can be accessed by shift-right-clicking the Chocobo. (can be used on Chocobo, but inventories are disabled at the moment)
7. [img]http://www.arno-saxena.de/pictures/chococraft/item_choco_pack_bags.png[/img] Chocobo Pack Bags - Tamed Chocobos can be equipted with one of these to give them some transport and storage capacities. Once pack bags are fitted onto a Chocobo, they can be accessed by right-clicking the Chocobo. (can be used on Chocobo, but inventories are disabled at the moment)
8. [img]http://www.arno-saxena.de/pictures/chococraft/item_whistle.png[/img] Chocobo Whistle - (no function yet, will be used in future to call last ridden Chocobo to the current player position).
9. [img]http://www.arno-saxena.de/pictures/chococraft/item_gysahl_loverly.png[/img] Loverly Gysahl - Loverly Gysahls are a special domestic mutation of Gysahl Greens. When growing Gysahl seeds in tilted earth, there is a chance the crop will grow into a Loverly Gysahl. This form of the plant does not appear in the wild. Loverly Gysahls are used to make a Chocobo fall in love and look for a partner to procreate.
10. [img]http://www.arno-saxena.de/pictures/chococraft/item_gysahl_golden.png[/img] Golden Gysahl - Just like Loverly Gysahls, Golden Gysahls are used to make Chocobos procreate. Like Loverly Gysahls this is a domestic mutation of Gysahl Greens. These romantic herbs are known to increase the chances of adquiring a new type of Chocobo.
11. [img]http://www.arno-saxena.de/pictures/chococraft/item_gysahl_cake.png[/img] Gysahl Cake - Chicobos just love gysahl greens and cakes, and when you join both, they're get really happy. Gysahl Cakes give joy to a Chicobo, making him grow up instantly into one big and beautiful Chocobo.
12. [img]http://www.arno-saxena.de/pictures/chococraft/item_gysahl_rawpickles.png[/img] Raw Gysahl Pickles - First step towards some tasty cooked Gysahl pickles.
13. [img]http://www.arno-saxena.de/pictures/chococraft/item_gysahl_pickles.png[/img] After cooking raw Gysahl pickles you will receive this tasty Gysahl pickles. It will not only taste marvelous, but also reduce your famine a little.
14. [img]http://www.arno-saxena.de/pictures/chococraft/item_gysahl_pink.png[/img] Pink Gysahl - Weird synthetic gysahls are known to cause extreme effects to Chocobos. So beware.
15. [img]http://www.arno-saxena.de/pictures/chococraft/item_gysahl_red.png[/img] Red Gysahl - Weird synthetic gysahls are known to cause extreme effects to Chocobos. So beware.
16. [img]http://www.arno-saxena.de/pictures/chococraft/item_gysahl_seed.png[/img] Gysahl Seeds - Seeds made from Gysahl Greens. Can be planted to build a Gysahl Green farm and can be fertilized with bone meal.
17. [img]http://www.arno-saxena.de/pictures/chococraft/item_chocopedia.png[/img] Chocopedia - Notebook that keeps information about the Chocobos. Allows player to name their chocobo, check on information about health and breeing status and even give orders.
18. [img]http://www.arno-saxena.de/pictures/chococraft/item_straw.png[/img] Straw - Straw cover for a Chocobo pen.[/spoiler]
19. [img]http://www.arno-saxena.de/pictures/chococraft/item_straw.png[/img] Purple Chocobo Egg - Produced by breeding purple male and female Chocobo.[/spoiler]
Recipes:
[spoiler] 1. [img]http://www.arno-saxena.de/pictures/chococraft/item_saddle.png[/img] Chocobo Saddle = 1 Leather, 2 Strings, 1 Chocobo Feather
[img]http://www.arno-saxena.de/pictures/chococraft/crafting_saddle.png[/img]
2. [img]http://www.arno-saxena.de/pictures/chococraft/item_saddle_bags.png[/img] Chocobo Saddle Bags = 3 Leather, 1 Chocobo Feather
[img]http://www.arno-saxena.de/pictures/chococraft/crafting_saddle_bags.png[/img]
3. [img]http://www.arno-saxena.de/pictures/chococraft/item_choco_pack_bags.png[/img] Chocobo Pack Bags = 4 Silk, 2 Cloth, 1 Leather, 1 Chocobo Feather
[img]http://www.arno-saxena.de/pictures/chococraft/crafting_pack_bags.png[/img]
4. [img]http://www.arno-saxena.de/pictures/chococraft/item_whistle.png[/img] Chocobo Whistle = 1 Gold Ingot, 1 Chocobo Feather
[img]http://www.arno-saxena.de/pictures/chococraft/crafting_whistle.png[/img]
5. [img]http://www.arno-saxena.de/pictures/chococraft/item_gysahl_seed.png[/img] Gysahl Seeds = 1 Gysahl Green
[img]http://www.arno-saxena.de/pictures/chococraft/crafting_seeds.png[/img]
6. [img]http://www.arno-saxena.de/pictures/chococraft/item_gysahl_cake.png[/img] Gysahl Cake = 2 Milk, 2 Wheat, 2 Sugar, 2 Gysahl Green, 1 Egg
[img]http://www.arno-saxena.de/pictures/chococraft/crafting_cake.png[/img]
7. [img]http://www.arno-saxena.de/pictures/chococraft/item_gysahl_rawpickles.png[/img] Raw Gysahl Pickles = 1 Gysahl Green, 1 Sugar
[img]http://www.arno-saxena.de/pictures/chococraft/crafting_pickles_raw.png[/img]
8. [img]http://www.arno-saxena.de/pictures/chococraft/item_chocopedia.png[/img] Chocopedia = 1 Book, 2 Ink Sac, 4 Chocobo Feathers, 1 Lapis Lazuli and 1 Gold Nugget
[img]http://www.arno-saxena.de/pictures/chococraft/crafting_chocopedia.png[/img]
9. [img]http://www.arno-saxena.de/pictures/chococraft/item_arrow.png[/img] 4 Arrows = 1 Flint, 1 Stick and 1 Chocobo Feather
[img]http://www.arno-saxena.de/pictures/chococraft/crafting_arrow.png[/img]
10. [img]http://www.arno-saxena.de/pictures/chococraft/item_straw.png[/img] 8 Straw = 2 Wheat
[img]http://www.arno-saxena.de/pictures/chococraft/crafting_straw.png[/img]
[/spoiler]
Screenshots:
[spoiler]Different types of Chocobos:
[img]http://www.arno-saxena.de/pictures/chococraft/chocobo_colours_org.png[/img]
Screenshot by [url="http://www.minecraftforum.net/user/524192-uncletravis/"]uncletravis[/url]
Okay, maybe there are more than 6:
[img]http://www.arno-saxena.de/pictures/chococraft/chocobo_pink_red.png[/img]
Screenshot by [url="http://www.minecraftforum.net/user/524192-uncletravis/"]uncletravis[/url]
Gysahl Greens:
[img]http://www.arno-saxena.de/pictures/chococraft/pic_gysahl_in_wild.png[/img]
Ready to Ride:
[img]http://www.arno-saxena.de/pictures/chococraft/pic_saddled.png[/img]
Screenshot by [url="http://www.minecraftforum.net/user/173045-torojima/"]Torojima[/url]
Riding view:
[img]http://www.arno-saxena.de/pictures/chococraft/pic_chocobo_riding_view.png[/img]
Screenshot by [url="http://www.minecraftforum.net/user/1099767-poloniumradon/"]PoloniumRadon[/url]
Golden big bird next to a proud owner:
[img]http://www.arno-saxena.de/pictures/chococraft/pic_riding.png[/img]
Screenshot by [url="http://www.minecraftforum.net/user/524192-uncletravis/"]uncletravis[/url]
Love in the air:
[img]http://www.arno-saxena.de/pictures/chococraft/pic_chocobo_hearts.png[/img]
Screenshot by [url="http://www.minecraftforum.net/user/524192-uncletravis/"]uncletravis[/url]
Proud of his offspring:
[img]http://www.arno-saxena.de/pictures/chococraft/pic_chocobo_chicobo.png[/img]
Chocobo Names:
[img]http://www.arno-saxena.de/pictures/chococraft/pic_name_display.png[/img]
Chocopedia:
[img]http://www.arno-saxena.de/pictures/chococraft/pic_chocobo_gui.png[/img]
Screenshot by [url="http://www.minecraftforum.net/user/1099767-poloniumradon/"]PoloniumRadon[/url]
Straw in pen:
[img]http://www.arno-saxena.de/pictures/chococraft/pic_straw_in_pen.png[/img]
Screenshot by [url="http://www.minecraftforum.net/user/173045-torojima/"]Torojima[/url][/spoiler]
Known Issues and Bugs:
[spoiler] 1. Chocobos love to stare in the face of people. It's not as much dangerous as it is creepy.
If you happen to find any more bug or issue, please report it on this thread and I'll look into it ASAP [img]http://static.minecraftforum.net//public/style_emoticons/default/smile.png[/img] [/spoiler]
Config Files:
[spoiler] As of 1.4.1u, ChocoCraft allows you to customize the mod by editing the config file.
There are two config files, both located in the config folder in the main minecraft folder. One is called "chocobo_config.txt", the other one "ChocoCraft.cfg".
"ChocoCraft.cfg" will host the default values for item and block ids.
"chocobo_config.txt" will host all flags and settings regarding everything else of the ChocoCraft mod.
There are comments to describe the meaning and usage of the settings in "chocobo_config.txt" in the file itself. You can add your own comments by starting the respective line in the text with "//".
To reset the values and the comments, in case the config file has been updated by me or you have edited it beyond recognition, just delete the file and run minecraft once with the ChocoCraft mod active.
Since the entries involved with the Chocobo spawning are the most obscure, here a more detailed explanation to make it clear:[list]
[*][b]spawnTimeDelay[/b] Default is 200, this is the time in minecraft-ticks between two attempts of the ChocoboSpawner to spawn wild Chocobos into the world.
[*][b]spawnProbability[/b] Default is 2, this is the probability out of 100 for each spawn attempt the ChocoboSpawner will actually try to spawn wild Chocobos into the world. So as default only 2% of the times a spawn attempt will be started.
[*][b]spawnGroupMin[/b] and [b]spawnGroupMax[/b] Default is 2 and 4. This limits the size of Chocobo flocks spawn in one attempt into the world.
[*][b]spawnTotalMax[/b] Default is 3, this is the max amount of active wild Chocobos, so if in the currently loaded Chunks three active wild Chocobos are around, there will be no further wild Chocobo spawning.
[*][b]spawnLimitChunkRadius[/b] Default is 100, this is the radius of blocks the Chocobos for the [b]spawnTotalMax [/b]limit are searched in.
[*][b]distanceNextWild[/b] Defaults to 300, this is the minimum distance between two wild Chocobo flocks. If a flock of Chocobos is less then 300 clicks away, there will be no further spawning.
[/list]
[/spoiler]
Current default Id's:
[spoiler]Chocobo saddle 22601
Gysahl seeds 22602
Loverly Gysahl 22603
Golden Gysahl 22604
Pink Gysahl 22605
Red Gysahl 22606
(Chibi Gysahl 22607) disabled
Gysahl Cake 22608
Raw Chocobo leg 22609
Cooked Chocobo leg 22610
Chocobo Feather 22611
Chocobo saddle bags 22612
Chocobo pack bags 22613
Chocobo Whistle 22614
Chocopedia 22615
Nether Chocobo egg 22616
Chocobo disguise helmet 22617
Chocobo disguise body 22618
Chocobo disguise legs 22619
Chocobo disguise boots 22620
Gysahl green (block) 1551
Gysahl stem (block) 1552
Straw (block) 1553
Entity Ids:
Yellow Chocobo 600
Green Chocobo 601
Blue Chocobo 602
White Chocobo 603
Black Chocobo 604
Gold Chocobo 605
Red Chocobo 606
Ping Chocobo 607
Purple Chocobo 608
Chicobo (any colour) 609
[/spoiler]
Ideas for Future Development:
[spoiler] 1. Special Gui when riding Chocobo that will show his current health and name
2. Yellow Chocobo spawn eggs
3. dynamic abilities (???)
4. idle animation for saddled and waiting Chocobos
5. maybe: double wide chocobo fence doors
6. brown chocobo (slow, but more health than the others)
If you have any more suggestions, comments or ideas, keep 'em coming [img]http://static.minecraftforum.net//public/style_emoticons/default/smile.png[/img][/spoiler]
How to Install:
[spoiler]1. Install the latest Forge by following the instructions found on the Forge page. The link can be found above the link to this mod near the top of this page.
2. With Forge installed, put the ChocoCraft .zip file in your minecraft "mods" folder (in zipped form, not extracted!).
controlling mod loading sequence:
[spoiler]Certain mods can interact with ChocoCraft, but you have to make sure they are loaded in the mod loading sequence before ChocoCraft. For example Chocobos can spawn in the biomes provided by the [url="http://www.minecraftforum.net/topic/1090288-142-extrabiomesxl-330/page__hl__%20xlbiomes"]extrabiomesxl[/url] mod, if the respective names are added in the chocobo config file. But for that to work, the biomesxl mod has to be loaded before ChocoCraft by the Forge modloader.
Mods which are placed in the mods folder are loaded in alphabetic sequence according to their name. Thus, if you want to make sure a certain mod is loaded before another one, just add a number prefix to each mod filename in the mods folder, for example:
01_someMod.zip
02_someOtherMod.zip
03_Chococraft_2.1.4.zip
will have the mods loaded in the sequence someMod, someOtherMod, Chococraft. Whereas
01_Chococraft_2.1.4.zip
03_someOtherMod.zip
05_someMod.zip
will have the mods loaded in the sequence Chococraft, someOtherMod, someMod.
[/spoiler]
[/spoiler]
How to Install server version:
[spoiler]Chococraft version 2.0.4+ is needed
1. Install Forge v4.1.4.297 or newer into a minecraft server.
2. Run the server once. (And stop it again)
3. Put the Chococraft_x.x.x.zip into the mods folder in the server folder
4. run the server again. Now Clients with Chococraft_x.x.x.zip installed can connect to the server and enjoy riding Chocobos through the landscape.
[/spoiler]
compatible mods:
[spoiler]These mods have been tested with ChocoCraft for for the version indicated in brackets. (This does not imply any sort of cooperation between the mods)
Eiter by me all :
[spoiler]- Forge
- Rei Minimap (1.4.7)
- ToManyItems (1.4.7)
- FamiliarsAPI (1.4.6)
- MobSpawnControls (1.4.6)
- Parachute (1.4.7)
- Thaumcraft 3 (1.4.7)
- Backpack (1.4.7)
- Millénaire (1.4.7)
- More Village Biomes (1.4.7)
- CraftGuide (1.4.7)
- thx helicopter (1.4.7)
- Steamship (1.4.7)
- XP Books (1.4.7)[/spoiler]
and by other players (again for the mc version in brackets. Normally this indicates a compatibility with the current version too, please give me a note if you discover it otherwise):
[spoiler] - BC3.* (1.4.7, don't know if really all, but many)
- better first person (1.4.7)
- BuildCraft (1.4.7)
- Chest Transporter (1.4.7)
- Chicken Chunkloader (1.4.7)
- ChickenBones Core (1.4.7)
- Wireless Redstone by ChickenBones (1.4.7)
- CJB Measure and Moreinfo (1.4.7)
- Coloured Beds Mod (1.4.7)
- Condensed Blocks (1.4.7)
- Creepers no Creeping (1.4.7)
- Damage Indicators (1.4.7)
- Davidee's Toggle Sprint/Sneak V1.4.6.0 (1.4.6)
- denLib (1.4.7)
- Diamond Buckets Plus (1.4.7)
- Dimensional Anchor by Immibis (1.4.7)
- Dynamic Lights 1.4.6 (1.4.6)
- Easybreeding (1.4.6)
- Ellian's MaterialDetector v1.39 (1.4.6)
- Enchanting Plus (1.4.7)
- Ender Storage (1.4.7)
- Enhanced Books (1.4.6)
- Extended Workbench (1.4.7)
- ExtraBiomes (1.4.6)
- Factorization (1.4.7)
- Fancy Fences (1.4.7)
- Fishnet (1.4.6)
- Flan's Mod (WWII) (1.4.7)
- Flat Bedrock (1.4.7)
- Flower Propagation (1.4.6)
- Flowercraft (1.4.7)
- Forestry (1.4.7)
- Forgotten Nature (1.4.6)
- Haycraft (1.4.7)
- iChun's Portal Gun 1.4.6v2 (1.4.6)
- Immibis Core (1.4.7)
- Industrialcraft 2 (1.4.6)
- IC2.* (1.4.7, don't know if really all, but many)
- InGame Mod List (1.4.7)
- Inventory Tweaks (1.4.7)
- Iron Chest (1.4.7)
- Jammy's Furniture (1.4.7)
- Lava Fix (1.4.7)
- Legendary Beasts (1.4.6)
- McCapes (1.4.6)
- Metallurgy (1.4.6)
- Minefactory Reloaded 2 (1.4.7)
- Mo'Creatures (1.4.6)
- More Bows (1.4.7)
- More Pistons (1.4.7)
- Mystcraft (1.4.7)
- Netherocks (1.4.6)
- NotEnoughItems (1.4.7)
- NEI Plugins (1.4.7)
- NEI Red Power Plugin (1.4.7)
- OmniTools (1.4.7)
- Optifine (1.4.7)
- Plugins for Forestry (1.4.7)
- PortalGun (1.4.7)
- Power Converters 2 (1.4.7)
- Power Crystal's Core (1.4.7)
- Railcraft (1.4.7)
- Red Power 2 (1.4.7)
- Shibby's Fly ModPack (1.4.7)
- Simpleores (1.4.6)
- Slabcraft (1.4.7)
- Soul Shards (1.4.6)
- Special Armor (1.4.7)
- Staircraft (1.4.7)
- Steves Carts (1.4.7)
- Thermal Expansion (1.4.7)
- Traincraft (1.4.7)
- TreeCapitator (1.4.7)
- Tubestuff by Immibis (1.4.7)
- Twilight Forest (1.4.7)
- Useful Food (1.4.7)
- Watermelon Gen (1.4.6)
- Weaponmod (1.4.6)
- What's My Light Level 1.4.6/1.4.7[pre] (1.4.6)
[/spoiler]
[/spoiler]
incompatible mods:
[spoiler]found out by me or other players. If I find the time I'll investigate if this incompatibilities can be removed.
- tropicraft (messing up the spawning and crashing when breeding Chocobos, 1.4.7)
- Divine RPG (messing up forge mob id assignment 1.4.7)
- Ars Magica (using multiple *bonemeal* events for the effect of growing multiple plants without actually using *bonemeal*, this will screw up the usage of the active player item 1.4.7)
[/spoiler]
Acknowledgments:
[spoiler]1. Chococraft has been created by [url="http://www.minecraftforum.net/user/1051245-eddiev/"]EddieV[/url]
2. [url="http://www.minecraftforum.net/topic/1687830-"]Micdoodle[/url] for joining the developing team from v.3.0.1 onwards.
3. Chocobos are creatures from Square Enix's Final Fantasy franchise, which later became main characters on their own games. As such, I do not own any right on them.
4. The banner has been created by [url="http://www.minecraftforum.net/user/223231-galindorf/"]galindorf[/url]
5. The design of the new Chocobo model has been created by [url="http://www.minecraftforum.net/user/758250-firas333/"]firas333[/url].
6. Pictures of new Chocobos made by [url="http://www.minecraftforum.net/user/524192-uncletravis/"]uncletravis[/url] and [url="http://www.minecraftforum.net/user/1099767-poloniumradon/"]PoloniumRadon[/url].
7. Server testing by [url="http://www.minecraftforum.net/user/1795528-sparks314/"]sparks314[/url]
8. The old models of the Chocobos were HIGHLY inspired by the Moa creatures in The Aether Mod.
9. The models of the Chicobos were HIGHLY inspired by the chicks present in Baby Animals Mod.
10. [url="http://www.minecraftforum.net/user/1200917-shadoxlunik/"]ShadoxLunik[/url] for the new purple/nether Chocobo skin
11. [url="http://www.minecraftforum.net/user/525357-weltallofid/"]weltallofid[/url] for making a symmetric saddled skin.
12. [url="http://www.minecraftforum.net/user/26535-arkenor/"]Arkenore[/url] for the brilliant title phrase :D
13. [url="http://www.minecraftforum.net/user/21540-leonblade/"]LeonBlade[/url] for helping with v.1.6.10.
[/spoiler]
Modpacks:
[spoiler]Since I have been asked a few times for permission to add my mod to a mod-pack, here my general terms. If they are meet, you can send me a message asking for permission. If they are not meet, dont bother ...
- no money will be made from the download of the mod-pack (URL-shortener, click-counter etc...)
- Link to the ChocoCraft OP on www.minecraftforum.net will be provided in a text file included with the mod-pack (text file of mods list is sufficient)
- Link to the ChocoCraft OP will be provided on your community/server web page if available
- Modpack users will be informed about the latest version of ChocoCraft, thus I don't want to hear every to often about bugs fixed in the current official version, but not in the pack version.
- I can revoke my permission any time (which I don't intend to do unprovoked without the modpacker doing anything objectionable)
[/spoiler]
Banner/Sig:
[code][url="http://www.minecraftforum.net/topic/1119809-124-eddievs-chococraft-150u-torojimas-unofficial-update/"][img]http://www.arno-saxena.de/pictures/chococraft/banner_signature.png[/img][/url][/code]
Copyright:
[spoiler]TERMS AND CONDITIONS
0. USED TERMS
MOD - modification, plugin, a piece of software that interfaces with the Minecraft client to extend, add, change or remove original capabilities.
MOJANG - Mojang AB
OWNER - , Original author(s) of the MOD. Under the copyright terms accepted when purchasing Minecraft ([url="http://www.minecraft.net/copyright.jsp"]http://www.minecraft.net/copyright.jsp[/url]) the OWNER has full rights over their MOD despite use of MOJANG code.
USER - End user of the mod, person installing the mod.
1. LIABILITY
THIS MOD IS PROVIDED 'AS IS' WITH NO WARRANTIES, IMPLIED OR OTHERWISE. THE OWNER OF THIS MOD TAKES NO RESPONSIBILITY FOR ANY DAMAGES INCURRED FROM THE USE OF THIS MOD. THIS MOD ALTERS FUNDAMENTAL PARTS OF THE MINECRAFT GAME, PARTS OF MINECRAFT MAY NOT WORK WITH THIS MOD INSTALLED. ALL DAMAGES CAUSED FROM THE USE OR MISUSE OF THIS MOD FALL ON THE USER.
2. USE
Use of this MOD to be installed, manually or automatically, is given to the USER without restriction.
3. REDISTRIBUTION
This MOD may only be distributed where uploaded, mirrored, or otherwise linked to by the OWNER solely. All mirrors of this mod must have advance written permission from the OWNER. ANY attempts to make money off of this MOD (selling, selling modified versions, adfly, sharecash, etc.) are STRICTLY FORBIDDEN, and the OWNER may claim damages or take other action to rectify the situation.
4. DERIVATIVE WORKS/MODIFICATION
This mod is provided freely and may be decompiled and modified for private use, either with a decompiler or a bytecode editor. Public distribution of modified versions of this MOD require advance written permission of the OWNER and may be subject to certain terms.
[/spoiler]
Check out my other mod:
[url="http://www.minecraftforum.net/topic/1803250-"][img]http://www.arno-saxena.de/pictures/buildhelper/buildhelper_icon.png[/img][/url]