Earlier Versions
Name | Size | Uploaded | Game Version | Downloads | |
items-from-text-1.6.2.jar release | 49.07 KB | May 26, 2021 | 1.16.5 | 142 | Download |
items-from-text-1.6.1.jar release | 47.46 KB | May 22, 2021 | 1.16.5 | 24 | Download |
items-from-text-1.6.0.jar release | 48.20 KB | May 12, 2021 | 1.16.5 | 249 | Download |
items-from-text-1.5.0.jar release | 46.43 KB | Apr 28, 2021 | 1.16.5 | 133 | Download |
items-from-text-1.4.1.jar release | 45.52 KB | Apr 19, 2021 | 1.16.5 | 43 | Download |
items-from-text-1.4.0.jar release | 47.15 KB | Apr 17, 2021 | 1.16.5 | 22 | Download |
items-from-text-1.3.1.jar release | 44.37 KB | Apr 12, 2021 | 1.16.5 | 30 | Download |
items-from-text-1.3.0.jar release | 44.44 KB | Apr 12, 2021 | 1.16.5 | 11 | Download |
items-from-text-1.2.1.jar release | 43.42 KB | Apr 8, 2021 | 1.16.5 | 26 | Download |
items-from-text-1.2.0.jar release | 43.25 KB | Mar 31, 2021 | 1.16.5 | 33 | Download |
items-from-text-1.1.2.jar release | 39.65 KB | Mar 28, 2021 | 1.16.5 | 27 | Download |
items-from-text-1.1.1.jar release | 31.96 KB | Mar 26, 2021 | 1.16.5 | 19 | Download |
items-from-text-1.1.0.jar release | 31.94 KB | Mar 20, 2021 | 1.16.5 | 39 | Download |
items-from-text-1.0.0.jar release | 13.86 KB | Mar 16, 2021 | 1.16.5 | 42 | Download |
Description
A mod that allows you to create and add new items using pure text files.
No dependencies, doesn't need Fabric API.
Creating Items
- Create a new folder called "itemsfromtext" in your .minecraft folder and navigate inside
- For each item make a txt file and a png image. Both files should be named your item's registry name (e.g. ender_pearl)
- Inside the txt file complete one of the example templates below with your own item's data
- For custom namespaces, make a new folder within the main folder and put items in that folder
Crafting Recipes
Crafting recipes can either be shaped or shapeless.
To give your item a custom crafting recipe, add a recipe property.
Recipes must be defined like this:
recipe=shaped,TOP ROW,MIDDLE ROW,BOTTOM ROW,QUANTITY,KEYS or recipe=shapeless,QUANTITY,ITEMS
Examples:
Recipe for a Furnace:
recipe=shaped,XXX,X X,XXX,1,X-minecraft:cobblestone
Recipe for Flint and Steel:
recipe=shapeless,1,minecraft:flint,minecraft:iron_ingot
Templates
- Each item has a name field that represents the display name of the item.
- Most items (apart from tools) have a stack field which represents the max stack size.
- Optional for all items: "isFireproof" field (true or false) – is the item immune to burning in fire or lava.
- Optional for all items: "cookingTime" field (integer value) – marks the item as a fuel that cooks for the amount of ticks specified.
- Optional for non tool items: "isHandheld" field (true or false) – is the item held like a stick or tool.
- Optional for food items: "isSnack" field (true or false) – is the food consumed quickly.
- Optional for tool items: "repairItem" field – the item that can repair the tool with an Anvil.
Basic Items:
name=Ender Pearl
stack=16
Food:
name=Apple
stack=64
type=food
hunger=4
saturation=2.4
Tools:
name=Ruby Pickaxe
type=tool
toolType=pickaxe
attackDamage=9
attackSpeed=1.2
miningSpeed=10
miningLevel=4
durability=5000
enchantability=20
- "toolType" – the type of tool (supported are pickaxe, axe, shovel, hoe, sword)
Add a comment