remove excluded mods

This commit is contained in:
2026-01-05 10:05:26 +01:00
parent c092c5353b
commit a7d0ff9aaa
3637 changed files with 15 additions and 74 deletions

View File

@@ -0,0 +1,42 @@
Platform.mods.kubejs.name = 'Reclamation'
StartupEvents.registry('item', event => {
event.create('scrap_wood')
.displayName('Scrap Wood')
.burnTime('100')
event.create('feather_flesh_amalgam')
.displayName('Feather-Flesh Amalgam')
event.create('blooded_amalgam')
.displayName("Blooded Amalgam")
event.create('mana_amalgam')
.displayName("Mana-Dosed Amalgam")
event.create('infused_amalgam')
.displayName("Infused Amalgam")
.glow(true)
//theurgy stuff
event.create('sulfur_dirt', 'theurgy:alchemical_sulfur')
.sourceItem('minecraft:dirt')
.sourceName('Dirt')
.sulfurTier('abundant')
.sulfurType('misc')
.tag('theurgy:alchemical_sulfurs')
})
ItemEvents.modification(event => {
event.modify('enchanted:garlic', item => {
item.foodProperties = food => {
food.hunger(1)
food.saturation(0.5)
}
})
event.modify('complicated_bees:cold_frame', item => {
item.maxDamage = 30
})
})