소스 검색

Fixed scat being so ridiculous by making it have fixed proportions

tags/v0.7.3
Fen Dweller 7 년 전
부모
커밋
a8b6ca662e
1개의 변경된 파일2개의 추가작업 그리고 3개의 파일을 삭제
  1. +2
    -3
      game.js

+ 2
- 3
game.js 파일 보기

@@ -3318,10 +3318,9 @@ function scat(vol) {
vol = macro.scatStorage.amount;
}

let area = Math.pow(vol, 2/3);
let area = Math.pow(vol, 2/3) / 2;
let scatLength = Math.pow(vol, 1/3) * 4;

let scatArea = macro.analVoreArea;
let scatLength = vol / macro.analVoreArea;
let prey = getPrey(biome, area);
let line = describe("scat", prey, macro, verbose).replace("$MASS",mass(vol*1000,unit,true)).replace("$LENGTH",length(scatLength,unit,true));
let linesummary = summarize(prey.sum(), true);


불러오는 중...
취소
저장