Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature Request] add world scaling #15

Closed
elhertz opened this issue Aug 25, 2023 · 1 comment
Closed

[Feature Request] add world scaling #15

elhertz opened this issue Aug 25, 2023 · 1 comment

Comments

@elhertz
Copy link

elhertz commented Aug 25, 2023

Add world scaling to increase mob levels depending on the distance from the world's spawnpoint (x,z)
In this example config below you have a zone where a mob spawning in x:500 z:500 would be a Level 5 mob

  "dimensions": [
    {
      "world_matches": {
        "dimension_regex": "minecraft:overworld"
      },
      "zones": [
        {
          "zone_matches": {
            "world_scaling": {
              "enabled": true,
              "distance_from_spawn": 100
            }
          },
          "difficulty": {
            "name": "normal",
            "starting_level": 0,
            "increase_level_by": 1
          }
        }

Tried making a new zone setting so it's easier to understand my suggestion

@ZsoltMolnarrr
Copy link
Owner

World specific scaling is already implemented, however it doesn't have anything to do with coordinates, because it applies to a world.

      "world_matches": {
        "dimension_regex": "minecraft:the_nether"
      },
      "difficulty": {
        "name": "normal",
        "level": 3
      },

This issue looks like a duplicate of #16 , where some kind of coordinate related scaling is requested.
Feel free to reopen if that is not the case.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants