Update 20230331

This commit is contained in:
Lukas Reichlin 2023-03-31 11:16:08 +02:00
parent 2e7bbe7347
commit f1f106748a
6 changed files with 33 additions and 7 deletions

View File

@ -18,6 +18,11 @@ minetest.register_craft({
burntime = 10,
})
minetest.register_craft({
output = "biofuel:phial_fuel 4",
recipe = {{"biofuel:bottle_fuel"}}
})
--Bottle of Biofuel
@ -40,6 +45,12 @@ minetest.register_craft({
burntime = 40,
})
minetest.register_craft({
type = "shapeless",
output = "biofuel:bottle_fuel 9",
recipe = {"biofuel:fuel_can"}
})
--Canister of Biofuel
@ -91,10 +102,6 @@ register_biofuel("wine:bottle_bourbon", 40)
register_biofuel("wine:bottle_sake", 40)
register_biofuel("wine:bottle_vodka", 40)
--Basic Materials
register_biofuel("basic_materials:oil_extract")
--Cucina_Vegana
register_biofuel("cucina_vegana:sunflower_seeds_oil")
register_biofuel("cucina_vegana:flax_seed_oil")
@ -104,3 +111,17 @@ register_biofuel("cucina_vegana:peanut_oil")
--Farming_Redo
register_biofuel("farming:bottle_ethanol")
register_biofuel("farming:hemp_oil")
--Basic Materials
register_biofuel("basic_materials:oil_extract")
if minetest.get_modpath("basic_materials") then
minetest.register_craft({
type = "shapeless",
output = "basic_materials:oil_extract 2",
recipe = {"biofuel:bottle_fuel", "biofuel:bottle_fuel"}
})
end

View File

@ -75,3 +75,8 @@ Version 0.8
zh_TW Translation added (Emojigit)
es Translation added (Jolesh)
New Screenshots (Lokrates)
add reverse Recipes (Lokrates)

View File

@ -4,5 +4,5 @@ description = A Minetest-Mod to produce biofuel from unused plants.
min_minetest_version = 5.4
depends = default
optional_depends = pipeworks,farming,pooper,wine,basic_materials,cucina_vegana,moretrees,vines,hopper
version = 0.7
version = 0.8
title = Biofuel

View File

@ -3,7 +3,7 @@
--License: General Public License, version 3 or later
--Original Work Copyright (C) 2016 cd2 (cdqwertz) <cdqwertz@gmail.com>
--Modified Work Copyright (C) 2017 Vitalie Ciubotaru <vitalie at ciubotaru dot tk>
--Modified Work Copyright (C) 2018 - 2021 Lokrates
--Modified Work Copyright (C) 2018 - 2023 Lokrates
--Modified Work Copyright (C) 2018 naturefreshmilk
--Modified Work Copyright (C) 2019 OgelGames
--Modified Work Copyright (C) 2020 6r1d
@ -36,7 +36,7 @@ end
minetest.log('action', 'MOD: Biofuel ' .. "loading...")
biofuel_version = '0.7'
biofuel_version = '0.8'
food_fuel = minetest.settings:get_bool("food_fuel") -- Enables the conversion of food into fuel (settingtypes.txt)
if food_fuel == nil then food_fuel = false end -- default false

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 90 KiB

BIN
screenshot2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB