Package: Making Space
Nothing more to this game. About 30 lines of Lua:
minetest.register_item(":", { type = "none", wield_image = "ms_player_hand.png", wield_scale = {x = 0.5, y = 1, z = 4}, tool_capabilities = { full_punch_interval = 1.0, max_drop_level = 0, group_caps = { oddly_breakable_by_hand = { times = {[1] = 3.50, [2] = 2.00, [3] = 0.70}, uses = 0 }, }, damage_groups = {fleshy = 1} } })
and
minetest.register_node("ms_map_borders:wall", { description = 'Unbreakable wall', tiles = { "wall_side.png" }, groups = { map_border = 1 }, is_ground_content = true } ) minetest.register_alias('mapgen_stone', 'ms_map_borders:wall') minetest.register_alias('mapgen_water_source', 'ms_map_borders:wall') minetest.register_alias('mapgen_river_water_source', 'ms_map_borders:wall')
which mostly are taken verbatim from the Void Game (and which are just boring definitions anyways). No game logic behind it.
converted review into a thread
Nothing more to this game. About 30 lines of Lua:
and
which mostly are taken verbatim from the Void Game (and which are just boring definitions anyways). No game logic behind it.
converted review into a thread