你是否只想要热力的管道/机器而不要热力的材料?

你是否因为矿词冲突而烦恼?

你是否觉得删除热力材料矿词十分麻烦?

下面我将教大家如何批量删除热力矿词。

注:需要CrT


添加.zs文件


注:如果有.zs文件可以在文件里添加。

在.minecraft\scripts中(未使用隔离)或.minecraft\versions\xxx\scripts中(xxx是版本名),

添加一个文件(最好是本文文档)。

为文件起名然后把后缀改为.zs。(最好不要改成recipe.zs)

问:为什么我改不了。

答:首先在文件夹里打开查看:

[1.12.2]删除热力矿词-第1张图片

再打勾文件扩展名。

[1.12.2]删除热力矿词-第2张图片


添加内容

打开.zs文件。

添加以下内容。

//锭
<ore:ingotCopper>.remove(<thermalfoundation:material:128>);
<ore:ingotTin>.remove(<thermalfoundation:material:129>);
<ore:ingotSilver>.remove(<thermalfoundation:material:130>);
<ore:ingotLead>.remove(<thermalfoundation:material:131>);
<ore:ingotAluminum>.remove(<thermalfoundation:material:132>);
<ore:ingotNickel>.remove(<thermalfoundation:material:133>);
<ore:ingotPlatinum>.remove(<thermalfoundation:material:134>);
<ore:ingotIridium>.remove(<thermalfoundation:material:135>);
<ore:ingotSteel>.remove(<thermalfoundation:material:160>);
<ore:ingotElectrum>.remove(<thermalfoundation:material:161>);
<ore:ingotInvar>.remove(<thermalfoundation:material:162>);
<ore:ingotBronze>.remove(<thermalfoundation:material:163>);
//矿石
<ore:oreCopper>.remove(<thermalfoundation:ore>);
<ore:oreTin>.remove(<thermalfoundation:ore:1>);
<ore:oreSilver>.remove(<thermalfoundation:ore:2>);
<ore:oreLead>.remove(<thermalfoundation:ore:3>);
<ore:oreAluminum>.remove(<thermalfoundation:ore:4>);
<ore:oreNickel>.remove(<thermalfoundation:ore:5>);
<ore:orePlatinum>.remove(<thermalfoundation:ore:6>);
<ore:oreIridium>.remove(<thermalfoundation:ore:7>);
//块
<ore:blockCopper>.remove(<thermalfoundation:storage>);
<ore:blockTin>.remove(<thermalfoundation:storage:1>);
<ore:blockSilver>.remove(<thermalfoundation:storage:2>);
<ore:blockLead>.remove(<thermalfoundation:storage:3>);
<ore:blockAluminum>.remove(<thermalfoundation:storage:4>);
<ore:blockNickel>.remove(<thermalfoundation:storage:5>);
<ore:blockPlatinum>.remove(<thermalfoundation:storage:6>);
<ore:blockIridium>.remove(<thermalfoundation:storage:7>);
<ore:blockSteel>.remove(<thermalfoundation:storage_alloy>);
<ore:blockElectrum>.remove(<thermalfoundation:storage_alloy:1>);
<ore:blockInvar>.remove(<thermalfoundation:storage_alloy:2>);
<ore:blockBronze>.remove(<thermalfoundation:storage_alloy:3>);
<ore:blockCharcoal>.remove(<thermalfoundation:storage_resource>);
<ore:blockFuelCoke>.remove(<thermalfoundation:storage_resource:1>);

//颜料
<ore:dye>.remove(<thermalfoundation:dye>);
<ore:dye>.remove(<thermalfoundation:dye:1>);
<ore:dye>.remove(<thermalfoundation:dye:2>);
<ore:dye>.remove(<thermalfoundation:dye:3>);
<ore:dye>.remove(<thermalfoundation:dye:4>);
<ore:dye>.remove(<thermalfoundation:dye:5>);
<ore:dye>.remove(<thermalfoundation:dye:6>);
<ore:dye>.remove(<thermalfoundation:dye:7>);
<ore:dye>.remove(<thermalfoundation:dye:8>);
<ore:dye>.remove(<thermalfoundation:dye:9>);
<ore:dye>.remove(<thermalfoundation:dye:10>);
<ore:dye>.remove(<thermalfoundation:dye:11>);
<ore:dye>.remove(<thermalfoundation:dye:12>);
<ore:dye>.remove(<thermalfoundation:dye:13>);
<ore:dye>.remove(<thermalfoundation:dye:14>);
<ore:dye>.remove(<thermalfoundation:dye:15>);

<ore:dyeBlack>.remove(<thermalfoundation:dye>);
<ore:dyeRed>.remove(<thermalfoundation:dye:1>);
<ore:dyeGreen>.remove(<thermalfoundation:dye:2>);
<ore:dyeBrown>.remove(<thermalfoundation:dye:3>);
<ore:dyeBlue>.remove(<thermalfoundation:dye:4>);
<ore:dyePurple>.remove(<thermalfoundation:dye:5>);
<ore:dyeCyan>.remove(<thermalfoundation:dye:6>);
<ore:dyeLightGray>.remove(<thermalfoundation:dye:7>);
<ore:dyeGray>.remove(<thermalfoundation:dye:8>);
<ore:dyePink>.remove(<thermalfoundation:dye:9>);
<ore:dyeLime>.remove(<thermalfoundation:dye:10>);
<ore:dyeYellow>.remove(<thermalfoundation:dye:11>);
<ore:dyeLightBlue>.remove(<thermalfoundation:dye:12>);
<ore:dyeMagenta>.remove(<thermalfoundation:dye:13>);
<ore:dyeOrange>.remove(<thermalfoundation:dye:14>);
<ore:dyeWhite>.remove(<thermalfoundation:dye:15>);

//齿轮
<ore:gearIron>.remove(<thermalfoundation:material:24>);
<ore:gearStone>.remove(<thermalfoundation:material:23>);
<ore:gearDiamond>.remove(<thermalfoundation:material:26>);
<ore:gearIron>.remove(<thermalfoundation:material:256>);
<ore:gearGold>.remove(<thermalfoundation:material:257>);
<ore:gearCopper>.remove(<thermalfoundation:material:258>);
<ore:gearTin>.remove(<thermalfoundation:material:259>);
<ore:gearSilver>.remove(<thermalfoundation:material:260>);
<ore:gearLead>.remove(<thermalfoundation:material:261>);
<ore:gearAluminum>.remove(<thermalfoundation:material:262>);
<ore:gearNickel>.remove(<thermalfoundation:material:263>);
<ore:gearPlatinum>.remove(<thermalfoundation:material:264>);
<ore:gearIridium>.remove(<thermalfoundation:material:265>);
<ore:gearSteel>.remove(<thermalfoundation:material:288>);
<ore:gearElectrum>.remove(<thermalfoundation:material:289>);
<ore:gearInvar>.remove(<thermalfoundation:material:290>);
<ore:gearBronze>.remove(<thermalfoundation:material:291>);

//板
<ore:plateIron>.remove(<thermalfoundation:material:32>);
<ore:plateGold>.remove(<thermalfoundation:material:33>);
<ore:plateCopper>.remove(<thermalfoundation:material:320>);
<ore:plateTin>.remove(<thermalfoundation:material:321>);
<ore:plateSilver>.remove(<thermalfoundation:material:322>);
<ore:plateLead>.remove(<thermalfoundation:material:323>);
<ore:plateAluminum>.remove(<thermalfoundation:material:324>);
<ore:plateNickel>.remove(<thermalfoundation:material:325>);
<ore:platePlatinum>.remove(<thermalfoundation:material:326>);
<ore:plateIridium>.remove(<thermalfoundation:material:327>);
<ore:plateSteel>.remove(<thermalfoundation:material:352>);
<ore:plateElectrum>.remove(<thermalfoundation:material:353>);
<ore:plateInvar>.remove(<thermalfoundation:material:354>);
<ore:plateBronze>.remove(<thermalfoundation:material:355>);

//粉
<ore:dustCopper>.remove(<thermalfoundation:material:64>);
<ore:dustTin>.remove(<thermalfoundation:material:65>);
<ore:dustSilver>.remove(<thermalfoundation:material:66>);
<ore:dustLead>.remove(<thermalfoundation:material:67>);
<ore:dustAluminum>.remove(<thermalfoundation:material:68>);
<ore:dustNickel>.remove(<thermalfoundation:material:69>);
<ore:dustPlatinum>.remove(<thermalfoundation:material:70>);
<ore:dustIridium>.remove(<thermalfoundation:material:71>);
<ore:dustSteel>.remove(<thermalfoundation:material:96>);
<ore:dustElectrum>.remove(<thermalfoundation:material:97>);
<ore:dustInvar>.remove(<thermalfoundation:material:98>);
<ore:dustBronze>.remove(<thermalfoundation:material:99>);
//非金属粉
<ore:dustCoal>.remove(<thermalfoundation:material:768>);
<ore:dustCharcoal>.remove(<thermalfoundation:material:769>);
<ore:dustObsidian>.remove(<thermalfoundation:material:770>);
<ore:dustSulfur>.remove(<thermalfoundation:material:771>);
<ore:dustSaltpeter>.remove(<thermalfoundation:material:772>);
<ore:dustWood>.remove(<thermalfoundation:material:800>);

//粒
<ore:nuggetIron>.remove(<thermalfoundation:material:192>);
<ore:nuggetGold>.remove(<thermalfoundation:material:193>);

<ore:nuggetCopper>.remove(<thermalfoundation:material:194>);
<ore:nuggetTin>.remove(<thermalfoundation:material:195>);
<ore:nuggetSilver>.remove(<thermalfoundation:material:196>);
<ore:nuggetLead>.remove(<thermalfoundation:material:197>);
<ore:nuggetAluminum>.remove(<thermalfoundation:material:198>);
<ore:nuggetNickel>.remove(<thermalfoundation:material:199>);
<ore:nuggetPlatinum>.remove(<thermalfoundation:material:200>);
<ore:nuggetIridium>.remove(<thermalfoundation:material:201>);
<ore:nuggetSteel>.remove(<thermalfoundation:material:202>);
<ore:nuggetElectrum>.remove(<thermalfoundation:material:203>);
<ore:nuggetInvar>.remove(<thermalfoundation:material:204>);
<ore:nuggetBronze>.remove(<thermalfoundation:material:205>);




//焦炭
<ore:fuelCoke>.remove(<thermalfoundation:material:802>);