rename extruder molds

This commit is contained in:
Gustavo 2025-08-06 19:31:02 +10:00
parent 7a2c63d2d0
commit cdf57686ba
2 changed files with 27 additions and 27 deletions

View file

@ -229,32 +229,32 @@ global.GTCEU_ARMORS = [
//#region Extruder Molds //#region Extruder Molds
/** @global */ /** @global */
global.TFG_EXTRUDER_MOLDS = [ global.TFG_EXTRUDER_MOLDS = [
'tfg:mining_hammer_head_extruder_mold', ['tfg:mining_hammer_head_extruder_mold', "Mining Hammer Head"],
'tfg:sword_head_extruder_mold', ['tfg:sword_head_extruder_mold', "Sword Head"],
'tfg:pickaxe_head_extruder_mold', ['tfg:pickaxe_head_extruder_mold', "Pickaxe Head"],
'tfg:shovel_head_extruder_mold', ['tfg:shovel_head_extruder_mold', "Shovel Head"],
'tfg:axe_head_extruder_mold', ['tfg:axe_head_extruder_mold', "Axe Head"],
'tfg:hoe_head_extruder_mold', ['tfg:hoe_head_extruder_mold', "Hoe Head"],
'tfg:scythe_head_extruder_mold', ['tfg:scythe_head_extruder_mold', "Scythe Head"],
'tfg:file_head_extruder_mold', ['tfg:file_head_extruder_mold', "File Head"],
'tfg:hammer_head_extruder_mold', ['tfg:hammer_head_extruder_mold', "Hammer Head"],
'tfg:saw_head_extruder_mold', ['tfg:saw_head_extruder_mold', "Saw Head"],
'tfg:knife_head_extruder_mold', ['tfg:knife_head_extruder_mold', "Knife Head"],
'tfg:butchery_knife_head_extruder_mold', ['tfg:butchery_knife_head_extruder_mold', "Butchery Knife Head"],
'tfg:spade_head_extruder_mold', ['tfg:spade_head_extruder_mold', "Spade Head"],
'tfg:propick_head_extruder_mold', ['tfg:propick_head_extruder_mold', "Prospector's Pick Head"],
'tfg:javelin_head_extruder_mold', ['tfg:javelin_head_extruder_mold', "Javelin Head"],
'tfg:chisel_head_extruder_mold', ['tfg:chisel_head_extruder_mold', "Chisel Head"],
'tfg:mace_head_extruder_mold', ['tfg:mace_head_extruder_mold', "Mace Head"],
'tfg:mattock_head_extruder_mold', ['tfg:mattock_head_extruder_mold', "Mattock Head"],
'tfg:fish_hook_extruder_mold', ['tfg:fish_hook_extruder_mold', "Fish Hook"],
'tfg:whisk_extruder_mold', ['tfg:whisk_extruder_mold', "Whisk"],
'tfg:screwdriver_tip_extruder_mold', ['tfg:screwdriver_tip_extruder_mold', "Screwdriver Tip"],
'tfg:wrench_tip_extruder_mold', ['tfg:wrench_tip_extruder_mold', "Wrench Tip"],
'tfg:wire_cutter_head_extruder_mold', ['tfg:wire_cutter_head_extruder_mold', "Wire Cutter Tip"],
'tfg:small_casing_extruder_mold', ['tfg:small_casing_extruder_mold', "Small Bullet Casing"],
'tfg:shell_casing_extruder_mold', ['tfg:shell_casing_extruder_mold', "Shell Bullet Casing"],
'tfg:large_casing_extruder_mold' ['tfg:large_casing_extruder_mold', "Large Bullet Casing"]
]; ];
//#endregion //#endregion

View file

@ -67,7 +67,7 @@ const registerTFGItems = (event) => {
// #region Molds // #region Molds
global.TFG_EXTRUDER_MOLDS.forEach(id => event.create(id)) global.TFG_EXTRUDER_MOLDS.forEach(id => event.create(id[0]).displayName(id[1]))
global.TFG_CASTING_MOLDS.forEach(id => event.create(id)) global.TFG_CASTING_MOLDS.forEach(id => event.create(id))
// #endregion // #endregion