mirror of
https://github.com/FaceDeer/dfcaverns.git
synced 2025-07-17 07:50:23 +02:00
images for the combination dials
This commit is contained in:
@ -2,7 +2,7 @@ local S = minetest.get_translator(minetest.get_current_modname())
|
||||
|
||||
local dimple_grow_time = df_farming.config.plant_growth_time * df_farming.config.dimple_cup_delay_multiplier / 4
|
||||
|
||||
local dimple_cup_groups = {snappy = 3, flammable = 2, plant = 1, not_in_creative_inventory = 1, attached_node = 1, color_blue = 1, basecolor_blue = 1, excolor_blue = 1, light_sensitive_fungus = 11, flower = 1, flora = 1, fire_encouragement=60,fire_flammability=100, compostability=70, handy=1,shearsy=1,hoey=1}
|
||||
local dimple_cup_groups = {snappy = 3, flammable = 2, plant = 1, not_in_creative_inventory = 1, attached_node = 1, light_sensitive_fungus = 11, flower = 1, flora = 1, fire_encouragement=60,fire_flammability=100, compostability=70, handy=1,shearsy=1,hoey=1}
|
||||
|
||||
local register_dimple_cup = function(number)
|
||||
local name = "df_farming:dimple_cup_"..tostring(number)
|
||||
@ -60,6 +60,14 @@ for i = 1,4 do
|
||||
register_dimple_cup(i)
|
||||
end
|
||||
|
||||
local dimple_cup_groups_harvested = {}
|
||||
for group, val in pairs(dimple_cup_groups) do
|
||||
dimple_cup_groups_harvested[group] = val
|
||||
end
|
||||
dimple_cup_groups_harvested.color_blue = 1
|
||||
dimple_cup_groups_harvested.basecolor_blue = 1
|
||||
dimple_cup_groups_harvested.excolor_blue = 1
|
||||
|
||||
local name = "df_farming:dimple_cup_harvested"
|
||||
local def = {
|
||||
description = S("Dimple Cup"),
|
||||
@ -73,7 +81,7 @@ local def = {
|
||||
floodable = true,
|
||||
is_ground_content = false,
|
||||
buildable_to = true,
|
||||
groups = dimple_cup_groups,
|
||||
groups = dimple_cup_groups_harvested,
|
||||
sounds = df_dependencies.sound_leaves(),
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
|
Reference in New Issue
Block a user