Hardwood Materials, items made

This commit is contained in:
Nebby_G 2025-01-18 12:11:03 -03:00
parent b6fa89fa55
commit 6c36949dc1
5 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,11 @@
const registerTFGItems = (event) =>
{
event.create('tfg:hardwood_strip')
.translationKey('item.tfg.hardwood_strip')
event.create('tfg:soaked_hardwood_strip')
.translationKey('item.tfg.soaked_hardwood_strip')
event.create('tfg:soaked_unrefined_paper')
.translationKey('item.tfg.soaked_unrefined_paper')
}

View file

@ -0,0 +1,16 @@
const registerTFGMaterials = (event) =>
{
event.create('hardwood')
.dust()
.flags(GTMaterialFlags.FLAMMABLE)
.iconSet(GTMaterialIconSet.FINE)
.color('0x7a5225')
.secondaryColor('0x7a5225')
event.create('thermochemically_treated_hardwood')
.dust()
.flags(GTMaterialFlags.FLAMMABLE)
.iconSet(GTMaterialIconSet.FINE)
.color('0x52482c')
.secondaryColor('0x52482c')
}