1
0
mirror of https://github.com/Dragonop/claycrafter.git synced 2025-07-16 18:00:20 +02:00

11 Commits

Author SHA1 Message Date
a658381feb Merge branch 'github' 2021-03-24 20:01:56 +01:00
cbbc225c1f Merge remote-tracking branch 'upstream/master' 2021-03-24 20:00:48 +01:00
7b1423e8cd Fix deprecated use of use_texture_alpha for Minetest 5.4+ 2021-03-03 23:08:40 +01:00
69330d88bc Revert "Create LICENSE"
This reverts commit 47a5202d82.
2021-01-28 19:11:11 -03:00
47a5202d82 Create LICENSE
License for code
2021-01-28 19:07:03 -03:00
8b6c5f0cad Updated Glass of Water to actually be transparent
Added `use_texture_alpha = true` to the definition of claycrafter:glass_of_water
2021-01-02 23:16:21 -03:00
8e33df0067 Update README.md 2020-12-23 14:20:54 -03:00
fc9daaa401 Merge remote-tracking branch 'upstream/master' 2020-11-14 08:57:05 +01:00
1a64404611 Ajoute message de chargement du mod dans le journal "action" 2018-12-24 13:02:34 +01:00
f62ad8ef38 Modify README.md file 2018-08-20 21:47:01 +02:00
feb2efb6bc Add compatibility with dirt_compressed node from moreblocks 2018-03-28 19:36:35 +02:00
4 changed files with 28 additions and 31 deletions

View File

@ -2,31 +2,30 @@
Minetest clay crafter mod.
Adds a way for players to obtain clay other than mining, out of a common material: dirt. It adds three new nodes:
Claycrafter: Used to convert compressed dirt into clay.
**Claycrafter:** Used to convert compressed dirt into clay.
Compressed dirt: Just 9 dirt, compressed, useful for saving storage space, too! (Not present if moreblocks is installed, use moreblocks:dirt_compressed instead)
**Compressed dirt:** Just 9 dirt, compressed, useful for saving storage space, too!
(Not present if moreblocks is installed, use moreblocks:dirt_compressed instead)
**Glass of water:** Used as fuel for the Claycrafter. Placeable.
For extra info look at the [Forum Thread](https://forum.minetest.net/viewtopic.php?f=11&t=13992)
Glass of water: Used as fuel for the Claycrafter. Placeable.
##### Dependencies:
Default
Vessels
Default
Vessels
##### Optional dependencies:
moreblocks
##### Optional dependencies:
moreblocks
Special thanks to everamzah
##### License for Code
Dragonop (LGPLv3)
##### License for Code
##### License for Media
Textures created or modified by Dragonop (CC-BY-SA 4.0)
Glass of water derived from the Drinking Glass texture from the vessels mod made by Thomas-S which is distributed as (CC-BY-SA 3.0)
Compressed dirt derived from the minetest's game default dirt texture made by Neuromancer and later modified by random-geek which is distributed as (CC-BY-SA 3.0)
Arrow textures by Blockmen, from minetest game's default, distributed under (CC-BY-SA 3.0)
Dragonop (LGPLv3)
##### License for Media
Textures created or modified by Dragonop (CC-BY-SA 4.0)
Glass of water derived from the Drinking Glass texture from the vessels mod made by Thomas-S which is distributed as (CC-BY-SA 3.0)
Compressed dirt derived from the minetest's game default dirt texture made by Neuromancer and later modified by random-geek which is distributed as (CC-BY-SA 3.0)
Arrow textures by Blockmen, from minetest game's default, distributed under (CC-BY-SA 3.0)
##### Special thanks to everamzah

View File

@ -200,19 +200,14 @@ minetest.register_abm({
--
-- Cooking
--
local compressed_dirt = "claycrafter:compressed_dirt"
if minetest.get_modpath("moreblocks") then
compressed_dirt = "moreblocks:dirt_compressed"
end
local cooktime = minetest.get_item_group(inv:get_stack("fuel", 1):get_name(), "h2o")
local cookable = true
if minetest.get_modpath("moreblocks") ~= nil then
if inv:get_stack("src", 1):get_name() ~= "moreblocks:dirt_compressed" then
cookable = false
end
else
if inv:get_stack("src", 1):get_name() ~= "claycrafter:compressed_dirt" then
cookable = false
end
if inv:get_stack("src", 1):get_name() ~= compressed_dirt then
cookable = false
end
-- Check if we have enough fuel to burn

View File

@ -4,3 +4,5 @@ local modpath = minetest.get_modpath("claycrafter")
dofile(modpath .. "/items.lua")
dofile(modpath .. "/claycrafter.lua")
minetest.log("action", "[claycrafter] loaded.")

View File

@ -33,6 +33,7 @@ minetest.register_node("claycrafter:glass_of_water", {
inventory_image = "claycrafter_glass_of_water_inv.png",
wield_image = "claycrafter_glass_of_water.png",
paramtype = "light",
use_texture_alpha = "blend",
is_ground_content = false,
walkable = false,
sunlight_propagates = true,