Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Storage Block Tags to Essence Blocks #1903

Merged
merged 1 commit into from
Jan 22, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 27 additions & 4 deletions kubejs/server_scripts/Tweaks/tags.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 => {
Expand Down Expand Up @@ -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')
Expand All @@ -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.