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

[📦]: Sophisticated Storage [Forge 1.20.1] - Compat Request #766

Open
3 of 8 tasks
M0nkeyPr0grammer opened this issue Jan 9, 2025 · 4 comments
Open
3 of 8 tasks
Labels
1.20.1-FORGE Minecraft Version Module Adding mod support to EveryCompat

Comments

@M0nkeyPr0grammer
Copy link

M0nkeyPr0grammer commented Jan 9, 2025

Code Of Conduct

  • See EC Backlog if someone already suggested a mod that you are going to suggest.
  • The mod MUST contain variant WoodType: OAK or other vanilla WoodTypes for ITEM or BLOCK

Curseforge (Normal)

https://www.curseforge.com/minecraft/mc-mods/sophisticated-storage

Curseforge-Fabric (Optional)

No response

Version Loader Availability

  • 1.19.2 | FABRIC
  • 1.20.1 | FABRIC
  • 1.21.1 | FABRIC
  • 1.19.2 | FORGE
  • 1.20.1 | FORGE
  • 1.21.1 | NEOFORGE

MODID

sophisticated-storage

Types

Blocks:

  • Barrels: Available in Basic, Copper, Iron, Gold, Diamond, and Netherite tiers. Crafted using vanilla wood and dyes.
  • Chests: Offered in the same tiers—Basic, Copper, Iron, Gold, Diamond, and Netherite. Crafted with vanilla wood and dyes.
  • Limited Barrels (1-4): Also available in Basic, Copper, Iron, Gold, Diamond, and Netherite tiers, crafted using vanilla wood and dyes.

Items:

  • Follows the same tier progression and crafting materials as listed above.

Optional Information

Each block supports item upgrades provided by the mod, with higher tiers offering increased storage capacity and additional upgrade slots.

@M0nkeyPr0grammer M0nkeyPr0grammer added the Module Adding mod support to EveryCompat label Jan 9, 2025
@github-actions github-actions bot added the 1.20.1-FORGE Minecraft Version label Jan 9, 2025
@Xelbayria
Copy link
Collaborator

For Blocks and Items, I need the Ids of these with "oak" if not available, then with "acacia"

@M0nkeyPr0grammer
Copy link
Author

Alright, I will get this list for you on Friday

@M0nkeyPr0grammer
Copy link
Author

Block ID's

sophisticatedstorage:barrel
sophisticatedstorage:copper_barrel
sophisticatedstorage:iron_barrel
sophisticatedstorage:gold_barrel
sophisticatedstorage:diamond_barrel
sophisticatedstorage:netherite_barrel
sophisticatedstorage:limited_barrel_1
sophisticatedstorage:limited_iron_barrel_1
sophisticatedstorage:limited_copper_barrel_1
sophisticatedstorage:limited_gold_barrel_1
sophisticatedstorage:limited_diamond_barrel_1
sophisticatedstorage:limited_netherite_barrel_1
sophisticatedstorage:limited_barrel_2
sophisticatedstorage:limited_iron_barrel_2
sophisticatedstorage:limited_copper_barrel_2
sophisticatedstorage:limited_gold_barrel_2
sophisticatedstorage:limited_diamond_barrel_2
sophisticatedstorage:limited_netherite_barrel_2
sophisticatedstorage:limited_barrel_3
sophisticatedstorage:limited_iron_barrel_3
sophisticatedstorage:limited_copper_barrel_3
sophisticatedstorage:limited_gold_barrel_3
sophisticatedstorage:limited_diamond_barrel_3
sophisticatedstorage:limited_netherite_barrel_3
sophisticatedstorage:limited_barrel_4
sophisticatedstorage:limited_iron_barrel_4
sophisticatedstorage:limited_copper_barrel_4
sophisticatedstorage:limited_gold_barrel_4
sophisticatedstorage:limited_diamond_barrel_4
sophisticatedstorage:limited_netherite_barrel_4
sophisticatedstorage:chest
sophisticatedstorage:copper_chest
sophisticatedstorage:iron_chest
sophisticatedstorage:gold_chest
sophisticatedstorage:diamond_chest
sophisticatedstorage:netherite_chest

Item IDs

## Acacia
    Item.of('sophisticatedstorage:barrel', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:barrel', '{flatTop:1b,woodType:"acacia"}')
    Item.of('sophisticatedstorage:copper_barrel', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:iron_barrel', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:gold_barrel', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:diamond_barrel', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:netherite_barrel', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:limited_barrel_1', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_1', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_1', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_1', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_1', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_1', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:limited_barrel_2', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_2', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_2', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_2', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_2', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_2', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:limited_barrel_3', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_3', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_3', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_3', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_3', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_3', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:limited_barrel_4', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_1', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_1', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_1', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_1', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_1', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:chest', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:copper_chest', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:iron_chest', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:gold_chest', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:diamond_chest', '{woodType:"acacia"}')
    Item.of('sophisticatedstorage:netherite_chest', '{woodType:"acacia"}')
    
## Birch
    Item.of('sophisticatedstorage:barrel', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:barrel', '{flatTop:1b,woodType:"birch"}')
    Item.of('sophisticatedstorage:copper_barrel', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:iron_barrel', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:gold_barrel', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:diamond_barrel', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:netherite_barrel', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:limited_barrel_1', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_1', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_1', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_1', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_1', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_1', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:limited_barrel_2', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_2', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_2', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_2', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_2', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_2', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:limited_barrel_3', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_3', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_3', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_3', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_3', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_3', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:limited_barrel_4', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_1', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_1', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_1', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_1', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_1', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:chest', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:copper_chest', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:iron_chest', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:gold_chest', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:diamond_chest', '{woodType:"birch"}')
    Item.of('sophisticatedstorage:netherite_chest', '{woodType:"birch"}')
    
    ## Crimson
    Item.of('sophisticatedstorage:barrel', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:barrel', '{flatTop:1b,woodType:"crimson"}')
    Item.of('sophisticatedstorage:copper_barrel', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:iron_barrel', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:gold_barrel', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:diamond_barrel', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:netherite_barrel', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:limited_barrel_1', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_1', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_1', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_1', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_1', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_1', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:limited_barrel_2', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_2', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_2', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_2', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_2', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_2', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:limited_barrel_3', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_3', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_3', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_3', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_3', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_3', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:limited_barrel_4', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_1', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_1', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_1', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_1', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_1', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:chest', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:copper_chest', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:iron_chest', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:gold_chest', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:diamond_chest', '{woodType:"crimson"}')
    Item.of('sophisticatedstorage:netherite_chest', '{woodType:"crimson"}')

# Dark Oak
    Item.of('sophisticatedstorage:barrel', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:barrel', '{flatTop:1b,woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:copper_barrel', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:iron_barrel', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:gold_barrel', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:diamond_barrel', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:netherite_barrel', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:limited_barrel_1', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_1', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_1', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_1', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_1', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_1', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:limited_barrel_2', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_2', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_2', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_2', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_2', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_2', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:limited_barrel_3', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_3', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_3', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_3', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_3', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_3', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:limited_barrel_4', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_1', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_1', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_1', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_1', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_1', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:chest', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:copper_chest', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:iron_chest', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:gold_chest', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:diamond_chest', '{woodType:"dark_oak"}')
    Item.of('sophisticatedstorage:netherite_chest', '{woodType:"dark_oak"}')

# Jungle
    Item.of('sophisticatedstorage:barrel', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:barrel', '{flatTop:1b,woodType:"jungle"}')
    Item.of('sophisticatedstorage:copper_barrel', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:iron_barrel', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:gold_barrel', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:diamond_barrel', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:netherite_barrel', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:limited_barrel_1', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_1', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_1', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_1', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_1', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_1', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:limited_barrel_2', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_2', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_2', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_2', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_2', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_2', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:limited_barrel_3', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_3', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_3', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_3', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_3', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_3', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:limited_barrel_4', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_1', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_1', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_1', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_1', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_1', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:chest', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:copper_chest', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:iron_chest', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:gold_chest', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:diamond_chest', '{woodType:"jungle"}')
    Item.of('sophisticatedstorage:netherite_chest', '{woodType:"jungle"}')

# Oak
    Item.of('sophisticatedstorage:barrel', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:barrel', '{flatTop:1b,woodType:"oak"}')
    Item.of('sophisticatedstorage:copper_barrel', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:iron_barrel', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:gold_barrel', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:diamond_barrel', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:netherite_barrel', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:limited_barrel_1', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_1', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_1', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_1', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_1', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_1', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:limited_barrel_2', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_2', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_2', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_2', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_2', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_2', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:limited_barrel_3', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_3', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_3', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_3', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_3', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_3', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:limited_barrel_4', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_1', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_1', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_1', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_1', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_1', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:chest', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:copper_chest', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:iron_chest', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:gold_chest', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:diamond_chest', '{woodType:"oak"}')
    Item.of('sophisticatedstorage:netherite_chest', '{woodType:"oak"}')

# Spruce
    Item.of('sophisticatedstorage:barrel', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:barrel', '{flatTop:1b,woodType:"spruce"}')
    Item.of('sophisticatedstorage:copper_barrel', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:iron_barrel', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:gold_barrel', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:diamond_barrel', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:netherite_barrel', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:limited_barrel_1', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_1', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_1', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_1', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_1', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_1', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:limited_barrel_2', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_2', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_2', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_2', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_2', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_2', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:limited_barrel_3', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_3', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_3', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_3', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_3', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_3', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:limited_barrel_4', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_1', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_1', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_1', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_1', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_1', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:chest', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:copper_chest', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:iron_chest', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:gold_chest', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:diamond_chest', '{woodType:"spruce"}')
    Item.of('sophisticatedstorage:netherite_chest', '{woodType:"spruce"}')

# Warped
    Item.of('sophisticatedstorage:barrel', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:barrel', '{flatTop:1b,woodType:"warped"}')
    Item.of('sophisticatedstorage:copper_barrel', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:iron_barrel', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:gold_barrel', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:diamond_barrel', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:netherite_barrel', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:limited_barrel_1', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_1', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_1', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_1', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_1', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_1', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:limited_barrel_2', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_2', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_2', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_2', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_2', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_2', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:limited_barrel_3', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_3', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_3', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_3', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_3', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_3', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:limited_barrel_4', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_1', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_1', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_1', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_1', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_1', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:chest', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:copper_chest', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:iron_chest', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:gold_chest', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:diamond_chest', '{woodType:"warped"}')
    Item.of('sophisticatedstorage:netherite_chest', '{woodType:"warped"}')

# Mangrove
    Item.of('sophisticatedstorage:barrel', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:barrel', '{flatTop:1b,woodType:"mangrove"}')
    Item.of('sophisticatedstorage:copper_barrel', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:iron_barrel', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:gold_barrel', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:diamond_barrel', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:netherite_barrel', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:limited_barrel_1', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_1', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_1', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_1', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_1', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_1', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:limited_barrel_2', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_2', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_2', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_2', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_2', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_2', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:limited_barrel_3', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_3', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_3', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_3', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_3', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_3', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:limited_barrel_4', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_1', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_1', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_1', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_1', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_1', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:chest', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:copper_chest', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:iron_chest', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:gold_chest', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:diamond_chest', '{woodType:"mangrove"}')
    Item.of('sophisticatedstorage:netherite_chest', '{woodType:"mangrove"}')

# Cherry
    Item.of('sophisticatedstorage:barrel', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:barrel', '{flatTop:1b,woodType:"cherry"}')
    Item.of('sophisticatedstorage:copper_barrel', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:iron_barrel', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:gold_barrel', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:diamond_barrel', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:netherite_barrel', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:limited_barrel_1', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_1', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_1', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_1', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_1', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_1', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:limited_barrel_2', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_2', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_2', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_2', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_2', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_2', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:limited_barrel_3', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_3', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_3', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_3', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_3', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_3', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:limited_barrel_4', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_1', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_1', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_1', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_1', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_1', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:chest', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:copper_chest', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:iron_chest', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:gold_chest', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:diamond_chest', '{woodType:"cherry"}')
    Item.of('sophisticatedstorage:netherite_chest', '{woodType:"cherry"}')

# Bamboo
    Item.of('sophisticatedstorage:barrel', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:barrel', '{flatTop:1b,woodType:"bamboo"}')
    Item.of('sophisticatedstorage:copper_barrel', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:iron_barrel', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:gold_barrel', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:diamond_barrel', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:netherite_barrel', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:limited_barrel_1', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_1', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_1', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_1', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_1', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_1', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:limited_barrel_2', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_2', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_2', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_2', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_2', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_2', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:limited_barrel_3', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_3', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_3', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_3', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_3', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_3', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:limited_barrel_4', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:limited_iron_barrel_1', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:limited_copper_barrel_1', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:limited_gold_barrel_1', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:limited_diamond_barrel_1', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:limited_netherite_barrel_1', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:chest', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:copper_chest', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:iron_chest', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:gold_chest', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:diamond_chest', '{woodType:"bamboo"}')
    Item.of('sophisticatedstorage:netherite_chest', '{woodType:"bamboo"}')

@Xelbayria
Copy link
Collaborator

Thank you. I'm going take a look at the mod to understand how it works.

@Xelbayria Xelbayria moved this to 🔖 Ready & Suggested in EC backlog Jan 9, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
1.20.1-FORGE Minecraft Version Module Adding mod support to EveryCompat
Projects
Status: 🔖 Ready & Suggested
Development

No branches or pull requests

2 participants