Pure fertilizer utility patch (#2884)

* Added pure fertilizers at 100%

Signed-off-by: Coox1e <166007852+Coox1e@users.noreply.github.com>

* Changed pure compost recipes to match their updated value

Signed-off-by: Coox1e <166007852+Coox1e@users.noreply.github.com>

* Changed pure recipes to LV

Signed-off-by: Coox1e <166007852+Coox1e@users.noreply.github.com>

---------

Signed-off-by: Coox1e <166007852+Coox1e@users.noreply.github.com>
This commit is contained in:
Coox1e 2026-01-28 07:56:24 +11:00 committed by GitHub
parent 9b31d2439a
commit 941c22ff92
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 23 additions and 7 deletions

View file

@ -109,6 +109,10 @@ const registerTFCFertilizers = (event) => {
event.fertilizer('gtceu:tiny_ammonium_chloride_dust', 0.03, null, null)
event.fertilizer('gtceu:small_ammonium_chloride_dust', 0.075, null, null)
event.fertilizer('gtceu:ammonium_chloride_dust', 0.3, null, null)
event.fertilizer('tfc:pure_nitrogen', 1, null, null)
event.fertilizer('tfc:pure_phosphorus', null, 1, null)
event.fertilizer('tfc:pure_potassium', null, null, 1)
}
@ -117,4 +121,4 @@ const registerTFCFertilizers = (event) => {
const registerTFCKnappingTypes = (event) => {
event.knappingType('minecraft:flint', 1, 1, 'tfc:item.knapping.stone', true, false, true, 'minecraft:flint', 'tfg:flint')
event.knappingType('tfc:straw', 4, 4, 'tfc:item.knapping.leather', false, false, false, 'tfc:straw', 'tfg:straw')
}
}