Hardwood Materials, items made
This commit is contained in:
parent
b6fa89fa55
commit
6c36949dc1
5 changed files with 38 additions and 0 deletions
11
kubejs/startup_scripts/tfg/items.js
Normal file
11
kubejs/startup_scripts/tfg/items.js
Normal 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')
|
||||
}
|
||||
16
kubejs/startup_scripts/tfg/materials.js
Normal file
16
kubejs/startup_scripts/tfg/materials.js
Normal 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')
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue