added some uses to mars charnia, to mirror kelp
This commit is contained in:
parent
a593d40d93
commit
e9506d17d0
5 changed files with 30 additions and 0 deletions
|
|
@ -25,6 +25,15 @@ const registerBeneathBlockTags = (event) => {
|
|||
event.remove('minecraft:leaves', 'beneath:wood/leaves/warped')
|
||||
event.add('tfg:do_not_destroy_in_space', 'beneath:wood/leaves/crimson')
|
||||
event.add('tfg:do_not_destroy_in_space', 'beneath:wood/leaves/warped')
|
||||
|
||||
event.add('tfg:softwood', 'beneath:wood/log/crimson')
|
||||
event.add('tfg:softwood', 'beneath:wood/wood/crimson')
|
||||
event.add('tfg:stripped_softwood', 'beneath:wood/stripped_log/crimson')
|
||||
event.add('tfg:stripped_softwood', 'beneath:wood/stripped_wood/crimson')
|
||||
event.add('tfg:hardwood', 'beneath:wood/log/crimson')
|
||||
event.add('tfg:hardwood', 'beneath:wood/wood/crimson')
|
||||
event.add('tfg:strippedhardwood', 'beneath:wood/stripped_log/crimson')
|
||||
event.add('tfg:strippedhardwood', 'beneath:wood/stripped_wood/crimson')
|
||||
}
|
||||
|
||||
const registerBeneathItemTags = (event) => {
|
||||
|
|
|
|||
|
|
@ -405,6 +405,7 @@ const registerFirmaLifeRecipes = (event) => {
|
|||
|
||||
event.shaped('firmalife:drying_mat', ['AAA'], { A: 'tfc:plant/leafy_kelp' }).id('tfg:shaped/drying_mat_leafy_kelp')
|
||||
event.shaped('firmalife:drying_mat', ['AAA'], { A: 'tfc:plant/winged_kelp' }).id('tfg:shaped/drying_mat_winged_kelp')
|
||||
event.shaped('firmalife:drying_mat', ['AAA'], { A: 'tfg:charnia' }).id('tfg:shaped/drying_mat_charnia')
|
||||
|
||||
// #endregion
|
||||
|
||||
|
|
|
|||
|
|
@ -55,6 +55,13 @@ function registerTFGHeatData(event) {
|
|||
event.itemHeat('tfg:unfired_rod_mold', 1.0, null, null);
|
||||
event.itemHeat('tfg:unfired_small_gear_mold', 1.0, null, null);
|
||||
event.itemHeat('tfg:unfired_nugget_mold', 1.0, null, null);
|
||||
|
||||
event.itemHeat('betterend:charnia_orange', 0.25, null, null)
|
||||
event.itemHeat('betterend:charnia_cyan', 0.25, null, null)
|
||||
event.itemHeat('betterend:charnia_green', 0.25, null, null)
|
||||
event.itemHeat('betterend:charnia_light_blue', 0.25, null, null)
|
||||
event.itemHeat('betterend:charnia_purple', 0.25, null, null)
|
||||
event.itemHeat('betterend:charnia_red', 0.25, null, null)
|
||||
}
|
||||
|
||||
//#endregion
|
||||
|
|
|
|||
|
|
@ -233,4 +233,10 @@ function registerTFGMarsRecipes(event) {
|
|||
.processingTime(1000)
|
||||
.heated()
|
||||
.id('tfg:vacuumizing/mars_latex')
|
||||
|
||||
event.recipes.tfc.heating('#tfg:charnia', 200)
|
||||
.resultItem('3x tfc:powder/soda_ash')
|
||||
.id('tfg:heating/charnia_to_soda')
|
||||
|
||||
event.smelting('3x tfc:powder/soda_ash', '#tfg:charnia').id('tfg:smelting/charnia_to_soda')
|
||||
}
|
||||
|
|
@ -100,6 +100,13 @@ function registerTFGMarsItemTags(event) {
|
|||
|
||||
event.remove('ad_astra:destroyed_in_space', 'minecraft:pitcher_plant')
|
||||
event.remove('ad_astra:destroyed_in_space', 'minecraft:torchflower')
|
||||
|
||||
event.add('tfg:charnia', 'betterend:charnia_orange')
|
||||
event.add('tfg:charnia', 'betterend:charnia_cyan')
|
||||
event.add('tfg:charnia', 'betterend:charnia_green')
|
||||
event.add('tfg:charnia', 'betterend:charnia_light_blue')
|
||||
event.add('tfg:charnia', 'betterend:charnia_purple')
|
||||
event.add('tfg:charnia', 'betterend:charnia_red')
|
||||
}
|
||||
|
||||
function registerTFGMarsBlockTags(event) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue