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:
Bumperdo09 2026-02-06 00:33:55 -05:00 committed by GitHub
parent 3eb0a5810b
commit 82114352d8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 29 additions and 0 deletions

View file

@ -13,6 +13,13 @@
"halign": "LEFT",
"valign": "BOTTOM"
},
"face": {
"x": 2,
"y": 134,
"enabled": true,
"halign": "LEFT",
"valign": "BOTTOM"
},
"hands": {
"x": 2,
"y": 44,

View file

@ -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",

Binary file not shown.

After

Width:  |  Height:  |  Size: 650 B

View file

@ -0,0 +1,8 @@
{
"entities": [
"minecraft:player"
],
"slots": [
"face"
]
}

View file

@ -0,0 +1,5 @@
{
"size": 1,
"icon": "tfg:slot/face",
"add_cosmetic": false
}

View file

@ -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')

View file

@ -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");