samfundev / KtaneTwitchPlays

A mod that allows Twitch chat to solve bombs in KTANE.
MIT License
46 stars 38 forks source link

More flexible distributions #512

Closed KScl closed 4 years ago

KScl commented 4 years ago

Distributions can contain more than a fixed percentage of vanilla and mods. They can also now contain:

As an example:

    "test": {
      "DisplayName": "Testing Mix",
      "Pools": [
        {
          "Definition": "ALL_SOLVABLE, MODS",
          "Weight": 0.5
        },
        {
          "Definition": "SCORE, <= 7",
          "Weight": 0.5,
          "Reward": 3,
          "Time": 120
        },
        {
          "Definition": "FIXED, spwizTetris",
          "Weight": 0.0,
          "Reward": 70,
          "Time": 0
        }
      ],
      "MinModules": 2,
      "MaxModules": 101,
      "Enabled": true,
      "Hidden": false
    },

As a result of this change, a couple additional changes happened:

This closes #474.