Add Curios Face Slot (For Engineers Goggles and Face Mask) (#2992)
* Add Curios Face Slot Curio face slot for create goggles and GT face mask. GT night vision goggles would need extra work to get working in the curio slot * InventoryHUD config for face curio slot
This commit is contained in:
parent
3eb0a5810b
commit
82114352d8
7 changed files with 29 additions and 0 deletions
|
|
@ -13,6 +13,13 @@
|
|||
"halign": "LEFT",
|
||||
"valign": "BOTTOM"
|
||||
},
|
||||
"face": {
|
||||
"x": 2,
|
||||
"y": 134,
|
||||
"enabled": true,
|
||||
"halign": "LEFT",
|
||||
"valign": "BOTTOM"
|
||||
},
|
||||
"hands": {
|
||||
"x": 2,
|
||||
"y": 44,
|
||||
|
|
|
|||
|
|
@ -1686,6 +1686,7 @@
|
|||
"trim_material.tfc.neutronium_tfc": "Neutronium",
|
||||
"trim_material.tfc.pyrite_tfc": "Pyrite",
|
||||
"trim_material.tfc.redx_tfc": "RedX",
|
||||
"curios.identifier.face": "Face",
|
||||
"tfg.emi.ore_veins.rock_types": "Found in rock types:",
|
||||
"tfg.emi.ore_veins.rarity": "Rarity: 1/%d chunks",
|
||||
"tfg.emi.ore_veins.density": "Density: %d",
|
||||
|
|
|
|||
BIN
kubejs/assets/tfg/textures/slot/face.png
Normal file
BIN
kubejs/assets/tfg/textures/slot/face.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 650 B |
8
kubejs/data/tfg/curios/entities/entities.json
Normal file
8
kubejs/data/tfg/curios/entities/entities.json
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"entities": [
|
||||
"minecraft:player"
|
||||
],
|
||||
"slots": [
|
||||
"face"
|
||||
]
|
||||
}
|
||||
5
kubejs/data/tfg/curios/slots/face.json
Normal file
5
kubejs/data/tfg/curios/slots/face.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"size": 1,
|
||||
"icon": "tfg:slot/face",
|
||||
"add_cosmetic": false
|
||||
}
|
||||
|
|
@ -9,6 +9,10 @@ const registerCreateItemTags = (event) => {
|
|||
event.add('c:hidden_from_recipe_viewers', item)
|
||||
})
|
||||
|
||||
// Face curio slot for goggles
|
||||
event.remove("curios:head", "create:goggles")
|
||||
event.add("curios:face", "create:goggles")
|
||||
|
||||
// This is greate's fault
|
||||
event.remove('c:hidden_from_recipe_viewers', 'create:copper_sheet')
|
||||
event.remove('c:hidden_from_recipe_viewers', 'create:brass_sheet')
|
||||
|
|
|
|||
|
|
@ -13,6 +13,10 @@ function registerGTCEUItemTags(event) {
|
|||
event.add("c:hidden_from_recipe_viewers", item);
|
||||
});
|
||||
|
||||
// Face curio slot for mask
|
||||
event.remove("curios:head", "gtceu:face_mask")
|
||||
event.add("curios:face", "gtceu:face_mask")
|
||||
|
||||
// Добавление тега EMI для скрытия всех руд
|
||||
event.add("c:hidden_from_recipe_viewers", "#forge:ores");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue