Organize mods into modpacks for better overview
This commit is contained in:
parent
f9db58bf50
commit
3696ee3761
1683 changed files with 0 additions and 0 deletions
1
mods/CORE/mcl_sounds/description.txt
Normal file
1
mods/CORE/mcl_sounds/description.txt
Normal file
|
@ -0,0 +1 @@
|
|||
This mod contains the core sounds of MineClone 2 as well as helper function for mods to access them.
|
87
mods/CORE/mcl_sounds/init.lua
Normal file
87
mods/CORE/mcl_sounds/init.lua
Normal file
|
@ -0,0 +1,87 @@
|
|||
--
|
||||
-- Sounds
|
||||
--
|
||||
|
||||
mcl_sounds = {}
|
||||
|
||||
function mcl_sounds.node_sound_defaults(table)
|
||||
table = table or {}
|
||||
table.footstep = table.footstep or
|
||||
{name="", gain=1.0}
|
||||
table.dug = table.dug or
|
||||
{name="default_dug_node", gain=0.25}
|
||||
table.place = table.place or
|
||||
{name="default_place_node_hard", gain=1.0}
|
||||
return table
|
||||
end
|
||||
|
||||
function mcl_sounds.node_sound_stone_defaults(table)
|
||||
table = table or {}
|
||||
table.footstep = table.footstep or
|
||||
{name="default_hard_footstep", gain=0.5}
|
||||
table.dug = table.dug or
|
||||
{name="default_hard_footstep", gain=1.0}
|
||||
mcl_sounds.node_sound_defaults(table)
|
||||
return table
|
||||
end
|
||||
|
||||
-- TODO: Maybe add custom metal sounds
|
||||
mcl_sounds.node_sound_metal_defaults = mcl_sounds.node_sound_stone_defaults
|
||||
|
||||
function mcl_sounds.node_sound_dirt_defaults(table)
|
||||
table = table or {}
|
||||
table.footstep = table.footstep or
|
||||
{name="default_dirt_footstep", gain=1.0}
|
||||
table.dug = table.dug or
|
||||
{name="default_dirt_footstep", gain=1.5}
|
||||
table.place = table.place or
|
||||
{name="default_place_node", gain=1.0}
|
||||
mcl_sounds.node_sound_defaults(table)
|
||||
return table
|
||||
end
|
||||
|
||||
function mcl_sounds.node_sound_sand_defaults(table)
|
||||
table = table or {}
|
||||
table.footstep = table.footstep or
|
||||
{name="default_sand_footstep", gain=0.5}
|
||||
table.dug = table.dug or
|
||||
{name="default_sand_footstep", gain=1.0}
|
||||
table.place = table.place or
|
||||
{name="default_place_node", gain=1.0}
|
||||
mcl_sounds.node_sound_defaults(table)
|
||||
return table
|
||||
end
|
||||
|
||||
function mcl_sounds.node_sound_wood_defaults(table)
|
||||
table = table or {}
|
||||
table.footstep = table.footstep or
|
||||
{name="default_wood_footstep", gain=0.5}
|
||||
table.dug = table.dug or
|
||||
{name="default_wood_footstep", gain=1.0}
|
||||
mcl_sounds.node_sound_defaults(table)
|
||||
return table
|
||||
end
|
||||
|
||||
function mcl_sounds.node_sound_leaves_defaults(table)
|
||||
table = table or {}
|
||||
table.footstep = table.footstep or
|
||||
{name="default_grass_footstep", gain=0.35}
|
||||
table.dug = table.dug or
|
||||
{name="default_grass_footstep", gain=0.85}
|
||||
table.dig = table.dig or
|
||||
{name="default_dig_crumbly", gain=0.4}
|
||||
table.place = table.place or
|
||||
{name="default_place_node", gain=1.0}
|
||||
mcl_sounds.node_sound_defaults(table)
|
||||
return table
|
||||
end
|
||||
|
||||
function mcl_sounds.node_sound_glass_defaults(table)
|
||||
table = table or {}
|
||||
table.footstep = table.footstep or
|
||||
{name="default_glass_footstep", gain=0.5}
|
||||
table.dug = table.dug or
|
||||
{name="default_break_glass", gain=1.0}
|
||||
mcl_sounds.node_sound_defaults(table)
|
||||
return table
|
||||
end
|
1
mods/CORE/mcl_sounds/mod.conf
Normal file
1
mods/CORE/mcl_sounds/mod.conf
Normal file
|
@ -0,0 +1 @@
|
|||
name = mcl_sounds
|
BIN
mods/CORE/mcl_sounds/sounds/default_break_glass.1.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_break_glass.1.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_break_glass.2.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_break_glass.2.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_break_glass.3.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_break_glass.3.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_cool_lava.1.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_cool_lava.1.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_cool_lava.2.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_cool_lava.2.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_cool_lava.3.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_cool_lava.3.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_dig_choppy.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_dig_choppy.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_dig_cracky.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_dig_cracky.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_dig_crumbly.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_dig_crumbly.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_dig_dig_immediate.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_dig_dig_immediate.ogg
Normal file
Binary file not shown.
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_dirt_footstep.1.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_dirt_footstep.1.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_dirt_footstep.2.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_dirt_footstep.2.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_dug_node.1.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_dug_node.1.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_dug_node.2.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_dug_node.2.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_glass_footstep.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_glass_footstep.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_grass_footstep.1.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_grass_footstep.1.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_grass_footstep.2.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_grass_footstep.2.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_grass_footstep.3.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_grass_footstep.3.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_gravel_footstep.1.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_gravel_footstep.1.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_gravel_footstep.2.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_gravel_footstep.2.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_gravel_footstep.3.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_gravel_footstep.3.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_gravel_footstep.4.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_gravel_footstep.4.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_hard_footstep.1.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_hard_footstep.1.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_hard_footstep.2.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_hard_footstep.2.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_hard_footstep.3.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_hard_footstep.3.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_place_node.1.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_place_node.1.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_place_node.2.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_place_node.2.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_place_node.3.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_place_node.3.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_place_node_hard.1.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_place_node_hard.1.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_place_node_hard.2.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_place_node_hard.2.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_sand_footstep.1.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_sand_footstep.1.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_sand_footstep.2.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_sand_footstep.2.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_snow_footstep.1.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_snow_footstep.1.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_snow_footstep.2.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_snow_footstep.2.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_snow_footstep.3.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_snow_footstep.3.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_tool_break.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_tool_break.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_wood_footstep.1.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_wood_footstep.1.ogg
Normal file
Binary file not shown.
BIN
mods/CORE/mcl_sounds/sounds/default_wood_footstep.2.ogg
Normal file
BIN
mods/CORE/mcl_sounds/sounds/default_wood_footstep.2.ogg
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue