Changes

2,137 bytes added ,  07:45, 10 June 2022
Copy Making Items to MC1.18 archive
{{Under construction}}

Along with blocks, items are a key component of most mods. While blocks make up the world around you, items are what let you change it.

== Creating an Item ==
=== Basic Items ===
Basic items that need no special functionality (think sticks or sugar) don’t need custom classes. You can create an item by instantiating the <code><nowiki>Item</nowiki></code> class with an <code><nowiki>Item$Properties</nowiki></code> object. This <code><nowiki>Item$Properties</nowiki></code> object can be made by calling the constructor and can be customised by calling its methods. For instance:
{| class="wikitable sortable" border=1
!Method !!Description
|-
| <code><nowiki>tab</nowiki></code> || Sets which <code><nowiki>CreativeModeTab</nowiki></code> (previously called creative tab) this item is under. Must be called if this item is meant to be shown on the creative menu. Vanilla tabs can be found in the class <code><nowiki>CreativeModeTab</nowiki></code>.
|-
| <code><nowiki>durability</nowiki></code> || Sets the maximum damage value for this item. If it is greater than ''0'', the properties ''damaged'' and ''damage'' are added to keep track of the current ''ItemStack'' damage.
|-
| <code><nowiki>stacksTo</nowiki></code> || Sets the maximum stack size. You cannot have an item that is both damagable and stackable.
|-
| <code><nowiki>setNoRepair</nowiki></code> || Makes this item impossible to repair, even if it is damageable.
|-
| <code><nowiki>craftRemainder</nowiki></code> || Sets this item’s container item. For example, milk buckets give you back an empty bucket when they are crafted.
|-
|}


The above methods are chainable, meaning they <code><nowiki>return this</nowiki></code> to facilitate calling them in series.

=== Advanced Items ===
Setting the properties of an item as above only works for simple items. If you want more complicated items, you should subclass ''Item'' and override its methods.

== Registering an Item ==
Items must be [[Registration/1.18|registered]] to function.


[[Category:Items/1.18|Category:Items]]
372

edits