-
Notifications
You must be signed in to change notification settings - Fork 1
/
helper_jei.zs
43 lines (30 loc) · 1.32 KB
/
helper_jei.zs
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
#modloaded jei
#priority -1
#reloadable
/*
Configure your tool, by giving yourself bone with NBT tag.
use command:
/give @p bone 1 0 {style: "tags with spaces between"}
Avaliable style tags:
noFancy : No item names and comments
noPretty : No spaces in grid
noTrail : No trailing comma in ingredients map
noBucket : No transforming <forge:bucketfilled> into global Bucket()
dense : Always pack recipe in one line
5x5 : For big chests (Like Draconium chest) use 5x5 grids
instead default 3x3. This style working for any number,
including 7x7 and 9x9
Style tags related to ingredients:
noForceAmount : Disable foce transforming ingredients based on their amount
noOre : Not replace ingredients with OreDict entries
firstOre : Only use first OreDict entry if there is many
noTransformers: No `.anyDamage()` or `.withTag({})` if ingredient
can have damage or have default NBT tags
*/
val toolItem = itemUtils.getItem(scripts.craft.helper.helper.toolItemID);
mods.jei.JEI.addItem(toolItem.withTag({
style: "noFancy noPretty noBucket noTrail noTransformers noOre noForceAmount",
ench:[{lvl:1,id:0}], // Add enchant glow
enchantmentColor:16711680, // Random Things can change color with this tag
display:{Name:"Bone §b(no styles)"},
}));