From 4f7a18a133b2a850db86aaf0dcc7af1983ab754e Mon Sep 17 00:00:00 2001 From: Asbestosstar Date: Sat, 15 Jul 2023 07:23:31 -0600 Subject: [PATCH 1/3] Update index.md --- docs/items/index.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/items/index.md b/docs/items/index.md index 90fc62f3..f00d6350 100644 --- a/docs/items/index.md +++ b/docs/items/index.md @@ -1,3 +1,4 @@ + Items ===== @@ -13,10 +14,17 @@ Basic items that need no special functionality (think sticks or sugar) do not ne | Method | Description | |:------------------:|:----------------------------------------------| | `requiredFeatures` | Sets the required `FeatureFlag`s needed to see this item in the `CreativeModeTab` it is added to. | +| `food` | Makes the item eatable and is used to store information about the Hunger and Effects. | | `durability` | Sets the maximum damage value for this item. If it is over `0`, two item properties "damaged" and "damage" are added. | +| `defaultDurability` | Sets the Item Durability for if it has a Maximum Damage of 0. | `stacksTo` | Sets the maximum stack size. You cannot have an item that is both damageable and stackable. | | `setNoRepair` | Makes this item impossible to repair, even if it is damageable. | | `craftRemainder` | Sets this item's container item, the way that lava buckets give you back an empty bucket when they are used. | +| `rarity` | Sets the Item Name Color in the ToolTip based on Rarity. +| `fireResistant` | Makes it so the item is resistant to fire. +| `setNoRepair` | Makes the item impossible to Repair. + + The above methods are chainable, meaning they `return this` to facilitate calling them in series. From 08b7b6798bf2d136d691927397bc9903215406b0 Mon Sep 17 00:00:00 2001 From: Asbestosstar Date: Sat, 15 Jul 2023 07:32:27 -0600 Subject: [PATCH 2/3] remove extra spaces --- docs/items/index.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/items/index.md b/docs/items/index.md index f00d6350..2ecba27a 100644 --- a/docs/items/index.md +++ b/docs/items/index.md @@ -24,8 +24,6 @@ Basic items that need no special functionality (think sticks or sugar) do not ne | `fireResistant` | Makes it so the item is resistant to fire. | `setNoRepair` | Makes the item impossible to Repair. - - The above methods are chainable, meaning they `return this` to facilitate calling them in series. ### Advanced Items From 9ff80621fd0a92d3200aa9ffcb7420542a5ee461 Mon Sep 17 00:00:00 2001 From: Asbestosstar Date: Sat, 15 Jul 2023 07:33:21 -0600 Subject: [PATCH 3/3] remove top space --- docs/items/index.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/items/index.md b/docs/items/index.md index 2ecba27a..7bf2d140 100644 --- a/docs/items/index.md +++ b/docs/items/index.md @@ -1,4 +1,3 @@ - Items =====