mirror of
https://github.com/tobspr/shapez.io.git
synced 2024-10-27 20:34:29 +00:00
Increase spawn rate of rare shapes
This commit is contained in:
parent
21382a6f2e
commit
da64a46ad8
@ -39,7 +39,7 @@ export const globalConfig = {
|
|||||||
undergroundBeltMaxTiles: 5,
|
undergroundBeltMaxTiles: 5,
|
||||||
|
|
||||||
buildingSpeeds: {
|
buildingSpeeds: {
|
||||||
cutter: 1 / 2,
|
cutter: 1 / 4,
|
||||||
rotater: 1 / 1,
|
rotater: 1 / 1,
|
||||||
painter: 1 / 3,
|
painter: 1 / 3,
|
||||||
mixer: 1 / 2,
|
mixer: 1 / 2,
|
||||||
|
@ -162,8 +162,8 @@ export class MapChunk {
|
|||||||
weights = {
|
weights = {
|
||||||
[enumSubShape.rect]: 100,
|
[enumSubShape.rect]: 100,
|
||||||
[enumSubShape.circle]: Math_round(50 + clamp(distanceToOriginInChunks * 2, 0, 50)),
|
[enumSubShape.circle]: Math_round(50 + clamp(distanceToOriginInChunks * 2, 0, 50)),
|
||||||
[enumSubShape.star]: Math_round(5 + clamp(distanceToOriginInChunks, 0, 30)),
|
[enumSubShape.star]: Math_round(9 + clamp(distanceToOriginInChunks, 0, 30)),
|
||||||
[enumSubShape.windmill]: Math_round(3 + clamp(distanceToOriginInChunks / 2, 0, 20)),
|
[enumSubShape.windmill]: Math_round(6 + clamp(distanceToOriginInChunks / 2, 0, 20)),
|
||||||
};
|
};
|
||||||
|
|
||||||
if (distanceToOriginInChunks < 5) {
|
if (distanceToOriginInChunks < 5) {
|
||||||
|
Loading…
Reference in New Issue
Block a user