Skip to content

Commit

Permalink
Sugar cane tweaks see #55
Browse files Browse the repository at this point in the history
  • Loading branch information
radiomike committed Mar 31, 2023
1 parent 9ba8b6f commit c5aa7a3
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
23 changes: 23 additions & 0 deletions kubejs/data/bloodmagic/recipes/alchemytable/reagent_growth.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"type": "bloodmagic:alchemytable",
"input": [
{
"tag": "forge:saplings"
},
{
"tag": "forge:saplings"
},
{
"item": "tfc:food/sugarcane"
},
{
"item": "minecraft:sugar"
}
],
"output": {
"item": "bloodmagic:reagentgrowth"
},
"syphon": 2000,
"ticks": 200,
"upgradeLevel": 2
}
26 changes: 26 additions & 0 deletions kubejs/server_scripts/item_tags.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,32 @@ onEvent('item.tags', e => {
e.add('forge:berries', [`tfc:food/${berry}`])
})

let saplings =[
"acacia",
"ash",
"aspen",
"birch",
"blackwood",
"chestnut",
"douglas_fir",
"hickory",
"kapok",
"maple",
"oak",
"palm",
"pine",
"rosewood",
"sequoia",
"spruce",
"sycamore",
"white_cedar",
"willow"
]

saplings.forEach(sapling => {
e.add('forge:saplings', [`tfc:wood/sapling/${sapling}`])
})

e.removeAll('tombstone:seeds')
let seeds =[
"carrot",
Expand Down

0 comments on commit c5aa7a3

Please sign in to comment.