diff --git a/docs/all-plugins/the-item-lookup-system/index.md b/docs/all-plugins/the-item-lookup-system/index.md index fed084247..e68f80580 100644 --- a/docs/all-plugins/the-item-lookup-system/index.md +++ b/docs/all-plugins/the-item-lookup-system/index.md @@ -66,10 +66,11 @@ tags: Sometimes custom item IDs are namespaced. In order to make this work, you have to specify them like `plugin:namespace__key`, where **two underscores** denote where the `:` would normally go. | Plugin | Item Lookup Key | -| ---------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | +|------------|------------------------------------------------------------------------------------------------------------------------------------------------------| | ItemsAdder | `itemsadder:__`, example below. | | Oraxen | `oraxen:`, e.g. `oraxen:alumite_pickaxe` | | ItemBridge | `itembridge:saved__` for items you've saved within ItemBridge. You can use `itembridge:__` for plugin items supported in ItemBridge. | +| Nexo | `nexo:` | | #### ItemsAdder @@ -88,26 +89,26 @@ ItemsAdder items are namespaced, so for example, the above would be `itemsadder: Items can have modifiers applied to them. For example, lets say you're configuring the GUI for EcoSkills. You want it to be a player head with a texture, but you're not sure how to do that, because it looks like you have to just specify a material. Actually, in all eco plugins, wherever it asks for a material, it's actually doing a lookup. You can specify any of the following modifiers to it: -- **Enchantments:** You can specify an enchantment with `:` -- **Stack Quantity:** You can specify a stack quantity by using the amount, e.g. `iron_ingot 32` -- **Skull Texture:** If the material is a player head, you can specify the texture with `texture:`. A list of skulls and textures can be found [here](https://minecraft-heads.com/). -- **Player Head:** If the material is a player head, you can specify a player using `head:`. You can also use placeholders, e.g. `head:%player%` -- **Reforge:** You can specify the reforge by adding `reforge:` to the key. - **Name:** You can specify the display name of an item with `name:`. You can have multiple words by surrounding the name with quotes: `name:"Long Name"` +- **Enchantments:** You can specify an enchantment with `:` +- **Enchantment Glint:** You can give an enchantment glint with `glint` - **Item Flags:** You can specify flags for the item to have, by dropping in any of [these values](https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/inventory/ItemFlag.html) (not case sensitive) - **Unbreakable:** You can make an item unbreakable by having the word `unbreakable` in the flags - **Custom Model Data:** You can specify custom model data with `custom_model_data:` -- **Spawner Entity:** You can specify the spawner entity with `entity:` +- **Stack Quantity:** You can specify a stack quantity by using the amount, e.g. `iron_ingot 32` +- **Max Stack Size:** You can set the max stack size with `max_stack_size:` +- **Durability:** You can set the item durability with `max_damage:` - **Leather Armor Color:** You can specify the leather armor color with `color:#hex`, e.g. `color:#303030` - -These modifiers are only available on **Paper 1.21+**: - - **Armor Trims:** You can specify armor trims with `trim::`, e.g. `trim:emerald:snout` -- **Fire Resistance:** You can make an item fire resistant with `fire_resistant` -- **Enchantment Glint:** You can give an enchantment glint with `glint` +- **Fire Resistance:** You can make an item fire-resistant with `fire_resistant` +- **Player Head:** If the material is a player head, you can specify a player using `head:`. You can also use placeholders, e.g. `head:%player%` +- **Skull Texture:** If the material is a player head, you can specify the texture with `texture:`. A list of skulls and textures can be found [here](https://minecraft-heads.com/). +- **Reforge:** You can specify the reforge by adding `reforge:` to the key. +- **Spawner Entity:** You can specify the spawner entity with `entity:` +- **Glider:** You can make any chestplate slot item a glider (work like an elytra) with `glider` +- **Item Model:** You can set the item model (different to custom-model-data) with `item_model::`, e.g. `item_model:nexo:dragon_helmet`. For minecraft items, you can skip the namespace +- **Tooltip Style:** You can set the tooltip style with `tooltip_style::`, e.g. `tooltip_style:nexo:epic_tooltip`. - **Item Name:** You can set the item name (different to display name) with `item_name:` -- **Durability:** You can set the item durability with `max_damage:` -- **Stack Size:** You can set the max stack size with `max_stack_size:` So, lets say you have an EcoMobs mob, and you want it to drop a rare custom weapon with extra modifiers already applied. Without the Item Lookup system, this wouldn't be possible, but thanks to it, you can just do this: `ecoitems:enlightened_blade razor:4 unbreaking:3 criticals:2 fire_aspect:2 reforge:mighty unbreakable hide_attributes custom_model_data:2` diff --git a/docs/ecoitems/tools-and-foods.md b/docs/ecoitems/tools-and-foods.md index 51c0edd5e..bc96ef3ef 100644 --- a/docs/ecoitems/tools-and-foods.md +++ b/docs/ecoitems/tools-and-foods.md @@ -3,8 +3,6 @@ title: Tools + Foods sidebar_position: 2 --- -#### Everything in this page requires Paper 1.21+ - 1.21 added Item Components, allowing you to make custom tools and foods. EcoItems provides support for this, where you can add an extra section to your config to make an item into a tool or a food. ### Example Tool Config @@ -59,8 +57,6 @@ tool: ### Example Food Config ```yaml -# An example food item (requires Paper 1.21+) - item: item: cooked_beef glint item_name:"Enchanted Steak" lore: [ ] diff --git a/docs/effects/all-effects/add_durability.md b/docs/effects/all-effects/add_durability.md index 82f078713..fa3a75d52 100644 --- a/docs/effects/all-effects/add_durability.md +++ b/docs/effects/all-effects/add_durability.md @@ -1,7 +1,4 @@ # `add_durability` -:::infoRequires: -Server Version 1.21+ -::: :::dangerTriggered Effect This effect requires a [Trigger](https://plugins.auxilor.io/effects/all-triggers) to activate. diff --git a/docs/effects/all-effects/block_reach.md b/docs/effects/all-effects/block_reach.md index 3fb73809e..dd03c5cb0 100644 --- a/docs/effects/all-effects/block_reach.md +++ b/docs/effects/all-effects/block_reach.md @@ -1,7 +1,4 @@ # `block_reach` -:::infoRequires: -Server Version 1.21+ -::: :::dangerPermanent Effect This effect is permanent and does not require a trigger. diff --git a/docs/effects/all-effects/burning_time_multiplier.md b/docs/effects/all-effects/burning_time_multiplier.md index 600f298c0..e8a41d954 100644 --- a/docs/effects/all-effects/burning_time_multiplier.md +++ b/docs/effects/all-effects/burning_time_multiplier.md @@ -1,7 +1,4 @@ # `burning_time_multiplier` -:::infoRequires: -Server Version 1.21+ -::: :::dangerPermanent Effect This effect is permanent and does not require a trigger. diff --git a/docs/effects/all-effects/entity_reach.md b/docs/effects/all-effects/entity_reach.md index cfee1724c..4eeea9fbe 100644 --- a/docs/effects/all-effects/entity_reach.md +++ b/docs/effects/all-effects/entity_reach.md @@ -1,7 +1,4 @@ # `entity_reach` -:::infoRequires: -Server Version 1.21+ -::: :::dangerPermanent Effect This effect is permanent and does not require a trigger. diff --git a/docs/effects/all-effects/explosion_knockback_resistance_multiplier.md b/docs/effects/all-effects/explosion_knockback_resistance_multiplier.md index b0363fab6..d72ee14b2 100644 --- a/docs/effects/all-effects/explosion_knockback_resistance_multiplier.md +++ b/docs/effects/all-effects/explosion_knockback_resistance_multiplier.md @@ -1,7 +1,4 @@ # `explosion_knockback_resistance_multiplier` -:::infoRequires: -Server Version 1.21+ -::: :::dangerPermanent Effect This effect is permanent and does not require a trigger. diff --git a/docs/effects/all-effects/gravity_multiplier.md b/docs/effects/all-effects/gravity_multiplier.md index 1a7d5dad7..723882efb 100644 --- a/docs/effects/all-effects/gravity_multiplier.md +++ b/docs/effects/all-effects/gravity_multiplier.md @@ -1,7 +1,4 @@ # `gravity_multiplier` -:::infoRequires: -Server Version 1.21+ -::: :::dangerPermanent Effect This effect is permanent and does not require a trigger. diff --git a/docs/effects/all-effects/increase_step_height.md b/docs/effects/all-effects/increase_step_height.md index 7d1080c57..36affcdb8 100644 --- a/docs/effects/all-effects/increase_step_height.md +++ b/docs/effects/all-effects/increase_step_height.md @@ -1,7 +1,4 @@ # `increase_step_height` -:::infoRequires: -Server Version 1.21+ -::: :::dangerPermanent Effect This effect is permanent and does not require a trigger. diff --git a/docs/effects/all-effects/jump_strength_multiplier.md b/docs/effects/all-effects/jump_strength_multiplier.md index ab16d8115..d3e935372 100644 --- a/docs/effects/all-effects/jump_strength_multiplier.md +++ b/docs/effects/all-effects/jump_strength_multiplier.md @@ -1,7 +1,4 @@ # `jump_strength_multiplier` -:::infoRequires: -Server Version 1.21+ -::: :::dangerPermanent Effect This effect is permanent and does not require a trigger. diff --git a/docs/effects/all-effects/mining_efficiency.md b/docs/effects/all-effects/mining_efficiency.md index 77688af17..d2f90699d 100644 --- a/docs/effects/all-effects/mining_efficiency.md +++ b/docs/effects/all-effects/mining_efficiency.md @@ -1,7 +1,4 @@ # `mining_efficiency` -:::infoRequires: -Server Version 1.21+ -::: :::dangerPermanent Effect This effect is permanent and does not require a trigger. diff --git a/docs/effects/all-effects/mining_speed_multiplier.md b/docs/effects/all-effects/mining_speed_multiplier.md index 13ec874e4..e0bbbe66f 100644 --- a/docs/effects/all-effects/mining_speed_multiplier.md +++ b/docs/effects/all-effects/mining_speed_multiplier.md @@ -1,7 +1,4 @@ # `mining_speed_multiplier` -:::infoRequires: -Server Version 1.21+ -::: :::dangerPermanent Effect This effect is permanent and does not require a trigger. diff --git a/docs/effects/all-effects/movement_efficiency_multiplier.md b/docs/effects/all-effects/movement_efficiency_multiplier.md index a9e5839b0..04f74ba39 100644 --- a/docs/effects/all-effects/movement_efficiency_multiplier.md +++ b/docs/effects/all-effects/movement_efficiency_multiplier.md @@ -1,7 +1,4 @@ # `movement_efficiency_multiplier` -:::infoRequires: -Server Version 1.21+ -::: :::dangerPermanent Effect This effect is permanent and does not require a trigger. diff --git a/docs/effects/all-effects/safe_fall_distance.md b/docs/effects/all-effects/safe_fall_distance.md index c63b49e63..a3e0ffb83 100644 --- a/docs/effects/all-effects/safe_fall_distance.md +++ b/docs/effects/all-effects/safe_fall_distance.md @@ -1,7 +1,4 @@ # `safe_fall_distance` -:::infoRequires: -Server Version 1.21+ -::: :::dangerPermanent Effect This effect is permanent and does not require a trigger. diff --git a/docs/effects/all-effects/scale.md b/docs/effects/all-effects/scale.md index 91c558e80..413ad6f4c 100644 --- a/docs/effects/all-effects/scale.md +++ b/docs/effects/all-effects/scale.md @@ -1,7 +1,4 @@ # `scale` -:::infoRequires: -Server Version 1.21+ -::: :::dangerPermanent Effect This effect is permanent and does not require a trigger. diff --git a/docs/effects/all-effects/sneaking_speed_multiplier.md b/docs/effects/all-effects/sneaking_speed_multiplier.md index a9b933f34..0c385b09c 100644 --- a/docs/effects/all-effects/sneaking_speed_multiplier.md +++ b/docs/effects/all-effects/sneaking_speed_multiplier.md @@ -1,7 +1,4 @@ # `sneaking_speed_multiplier` -:::infoRequires: -Server Version 1.21+ -::: :::dangerPermanent Effect This effect is permanent and does not require a trigger. diff --git a/docs/effects/all-effects/underwater_mining_speed_multiplier.md b/docs/effects/all-effects/underwater_mining_speed_multiplier.md index cf3f8a477..e9e8a685c 100644 --- a/docs/effects/all-effects/underwater_mining_speed_multiplier.md +++ b/docs/effects/all-effects/underwater_mining_speed_multiplier.md @@ -1,7 +1,4 @@ # `underwater_mining_speed_multiplier` -:::infoRequires: -Server Version 1.21+ -::: :::dangerPermanent Effect This effect is permanent and does not require a trigger. diff --git a/docs/effects/all-effects/water_movement_efficiency_multiplier.md b/docs/effects/all-effects/water_movement_efficiency_multiplier.md index 97bd7a04d..c842c0db8 100644 --- a/docs/effects/all-effects/water_movement_efficiency_multiplier.md +++ b/docs/effects/all-effects/water_movement_efficiency_multiplier.md @@ -1,7 +1,4 @@ # `water_movement_efficiency_multiplier` -:::infoRequires: -Server Version 1.21+ -::: :::dangerPermanent Effect This effect is permanent and does not require a trigger. diff --git a/docs/home.md b/docs/home.md index 98bd2afb7..f79d7860a 100644 --- a/docs/home.md +++ b/docs/home.md @@ -16,6 +16,8 @@ Download the latest version of eco from [GitHub](https://github.com/Auxilor/eco/ ## Where should I buy the plugins? All plugins are available on [Spigot](https://www.spigotmc.org/resources/authors/auxilor.507394/) and [Polymart](https://polymart.org/user/auxilor.1107), and you can buy plugins at a 25% discount in a bundle, too - [click here to get them!](https://polymart.org/bundle/eco-pack.110) +### All information in this documentation is for the latest plugin versions. Older versions may not contain all features and options shown. + ## Check out our partners! (Click to visit) [![GamerSupps](https://i.imgur.com/7mFhlQO.png)](http://gamersupps.gg/discount/Auxilor?afmc=Auxilor)