diff --git a/kubejs/server_scripts/Tweaks/tags.js b/kubejs/server_scripts/Tweaks/tags.js index 4ba6ced5..b8bc2948 100644 --- a/kubejs/server_scripts/Tweaks/tags.js +++ b/kubejs/server_scripts/Tweaks/tags.js @@ -7,6 +7,18 @@ ServerEvents.tags('block', allthemods => { // Extreme Reactors allthemods.add('c:storage_blocks/yellorium', 'alltheores:uranium_block' ) + + // Essence Blocks + allthemods.add('c:storage_blocks/air_essence', 'kubejs:air_essence_block') + allthemods.add('c:storage_blocks/earth_essence', 'kubejs:earth_essence_block') + allthemods.add('c:storage_blocks/fire_essence', 'kubejs:fire_essence_block') + allthemods.add('c:storage_blocks/water_essence', 'kubejs:water_essence_block') + allthemods.add('c:storage_blocks', [ + '#c:storage_blocks/air_essence', + '#c:storage_blocks/earth_essence', + '#c:storage_blocks/fire_essence', + '#c:storage_blocks/water_essence' + ]) }) ServerEvents.tags('item', allthemods => { @@ -36,9 +48,20 @@ ServerEvents.tags('item', allthemods => { allthemods.add('c:storage_blocks', '#c:storage_blocks/raw_crimson_iron') allthemods.add('c:storage_blocks', '#c:storage_blocks/raw_azure_silver') - allthemods.add('c:ores/cinnabar', 'alltheores:cinnabar_ore') - - //Ars Elemental Books + + // Essence Blocks + allthemods.add('c:storage_blocks/air_essence', 'kubejs:air_essence_block') + allthemods.add('c:storage_blocks/earth_essence', 'kubejs:earth_essence_block') + allthemods.add('c:storage_blocks/fire_essence', 'kubejs:fire_essence_block') + allthemods.add('c:storage_blocks/water_essence', 'kubejs:water_essence_block') + allthemods.add('c:storage_blocks', [ + '#c:storage_blocks/air_essence', + '#c:storage_blocks/earth_essence', + '#c:storage_blocks/fire_essence', + '#c:storage_blocks/water_essence' + ]) + + // Ars Elemental Books allthemods.add('minecraft:bookshelf_books', 'ars_elemental:air_caster_tome') allthemods.add('minecraft:bookshelf_books', 'ars_elemental:fire_caster_tome') allthemods.add('minecraft:bookshelf_books', 'ars_elemental:water_caster_tome') @@ -62,4 +85,4 @@ ServerEvents.tags('entity_type', allthemods => { }); // This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 10. -// As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission. +// As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission. \ No newline at end of file