Charakterbewegungen hinzugefügt, Deko hinzugefügt, Kochrezepte angepasst
This commit is contained in:
parent
95945c0306
commit
a0c893ca0b
1124 changed files with 64294 additions and 763 deletions
21
mods/moreblocks/stairsplus/groups/builtin.lua
Normal file
21
mods/moreblocks/stairsplus/groups/builtin.lua
Normal file
|
@ -0,0 +1,21 @@
|
|||
stairsplus.api.register_passthrough_groups({
|
||||
"not_in_creative_inventory",
|
||||
"dig_immediate",
|
||||
"float",
|
||||
"level",
|
||||
"slippery",
|
||||
"falling_node",
|
||||
"disable_jump",
|
||||
})
|
||||
|
||||
stairsplus.api.register_scaling_groups({
|
||||
"bouncy",
|
||||
"fall_damage_add_percent",
|
||||
"slippery",
|
||||
})
|
||||
|
||||
stairsplus.api.register_ignore_groups({
|
||||
"attached_node",
|
||||
"connect_to_raillike",
|
||||
"tool",
|
||||
})
|
15
mods/moreblocks/stairsplus/groups/default.lua
Normal file
15
mods/moreblocks/stairsplus/groups/default.lua
Normal file
|
@ -0,0 +1,15 @@
|
|||
if not stairsplus.has.default then
|
||||
return
|
||||
end
|
||||
|
||||
stairsplus.api.register_passthrough_groups({
|
||||
"crumbly",
|
||||
"cracky",
|
||||
"snappy",
|
||||
"choppy",
|
||||
"fleshy",
|
||||
"flammable",
|
||||
"explody",
|
||||
"oddly_breakable_by_hand",
|
||||
"snowy", -- https://github.com/fluxionary/minetest-moreblocks/issues/20 might revisit this later
|
||||
})
|
3
mods/moreblocks/stairsplus/groups/init.lua
Normal file
3
mods/moreblocks/stairsplus/groups/init.lua
Normal file
|
@ -0,0 +1,3 @@
|
|||
stairsplus.dofile("groups", "builtin")
|
||||
stairsplus.dofile("groups", "default")
|
||||
stairsplus.dofile("groups", "other")
|
61
mods/moreblocks/stairsplus/groups/other.lua
Normal file
61
mods/moreblocks/stairsplus/groups/other.lua
Normal file
|
@ -0,0 +1,61 @@
|
|||
-- group overrides for various other mods
|
||||
|
||||
-- various things found in the wild
|
||||
stairsplus.api.register_passthrough_groups({
|
||||
"bendy",
|
||||
"dig_generic",
|
||||
"dig_sand",
|
||||
"dig_stone",
|
||||
"dig_tree",
|
||||
"fast_travel",
|
||||
"melty",
|
||||
"unbreakable",
|
||||
})
|
||||
|
||||
stairsplus.api.register_ignore_groups({
|
||||
"type_node",
|
||||
"ud_param2_colorable",
|
||||
})
|
||||
|
||||
-- mineclone
|
||||
stairsplus.api.register_passthrough_groups({
|
||||
"pickaxey",
|
||||
"axey",
|
||||
"shovely",
|
||||
"swordy",
|
||||
"swordy_cobweb",
|
||||
"shearsy",
|
||||
"shearsy_wool",
|
||||
"handy",
|
||||
"creative_breakable",
|
||||
"dig_by_water",
|
||||
"destroy_by_lava_flow",
|
||||
"dig_by_piston",
|
||||
"non_mycelium_plant",
|
||||
"enderman_takable",
|
||||
"disable_suffocation",
|
||||
"no_rename",
|
||||
})
|
||||
|
||||
stairsplus.api.register_scaling_groups({
|
||||
"falling_node_damage",
|
||||
"fire_encouragement",
|
||||
"fire_flammability",
|
||||
"comparator_signal",
|
||||
"set_on_fire",
|
||||
"compostability",
|
||||
})
|
||||
|
||||
stairsplus.api.register_ignore_groups({
|
||||
"crush_after_fall",
|
||||
"cultivatable",
|
||||
"path_creation_possible",
|
||||
"spreading_dirt_type",
|
||||
"dirtifies_below_solid",
|
||||
"dirtifier",
|
||||
"destroys_items",
|
||||
"no_eat_delay",
|
||||
"can_eat_when_full",
|
||||
"attached_node_facedir",
|
||||
"supported_node",
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue