mirror of
https://github.com/thepaperpilot/Planar-Pioneers.git
synced 2024-11-21 16:13:54 +00:00
Make later procgen features more common
This commit is contained in:
parent
4f0cf58e70
commit
aa8b0a6825
1 changed files with 4 additions and 4 deletions
|
@ -212,10 +212,10 @@ export function createPlane(
|
|||
const featureWeights = {
|
||||
upgrades: 32,
|
||||
repeatables: i <= 1 ? 0 : 16,
|
||||
conversion: i <= 3 ? 0 : 8,
|
||||
xp: i <= 5 ? 0 : 4,
|
||||
dimensions: i <= 7 ? 0 : 2,
|
||||
prestige: i <= 7 || i >= length - 1 ? 0 : 1
|
||||
conversion: i <= 2 ? 0 : 12,
|
||||
xp: i <= 3 ? 0 : 8,
|
||||
dimensions: i <= 4 ? 0 : 6,
|
||||
prestige: i <= 5 || i >= length - 1 ? 0 : 4
|
||||
};
|
||||
const type = pickRandom(featureWeights, random);
|
||||
switch (type) {
|
||||
|
|
Loading…
Reference in a new issue