소스 검색

Add new planet-eating lines, and significantly increase planet/star/solar system density

tags/v1.1.1
Fen Dweller 5 년 전
부모
커밋
677e369d70
No known key found for this signature in database GPG 키 ID: E80B35A6F11C3656
3개의 변경된 파일31개의 추가작업 그리고 5개의 파일을 삭제
  1. +3
    -3
      game.js
  2. +27
    -1
      recursive-desc.js
  3. +1
    -1
      recursive-macro.js

+ 3
- 3
game.js 파일 보기

@@ -2108,9 +2108,9 @@ function getWeights(region, area) {


if (area > areas["Planet"]) { if (area > areas["Planet"]) {
weights = { weights = {
"Planet": 1.47e-10,
"Star": 1.7713746e-12,
"Solar System": 4e-10,
"Planet": 1.47e-3,
"Star": 1.7713746e-3,
"Solar System": 4e-4,
"Galaxy": 0.1, "Galaxy": 0.1,
"Cluster": 0.5, "Cluster": 0.5,
"Universe": 1, "Universe": 1,


+ 27
- 1
recursive-desc.js 파일 보기

@@ -1987,6 +1987,32 @@ rules["eat"].push({
} }
}); });


rules["eat"].push({
test: (container, macro) => {
return hasExactly(container, "Planet", 1) && nothingLarger(container, "Planet");
},
desc: (container, macro, verbose, flat) => {
return [
"Your colossal",
macro.jawDesc(true),
"yawn wide as you drift towards the planet, blotting out the sun in the shadow of your terrifying maw. Your tongue curls along the underside of your snack's crust, slathering it in drool and gently tugging it towards you. Cracks and quakes rock the fragile crust; your body's overwhelming gravity alone is enough to stretch and warp the planet. Before long, it is entombed within your",
macro.jawDesc(true),
"and, a heartbeat later, a massive GLURKH drags it into your gullet."
].join(" ")
}
})

rules["eat"].push({
test: (container, macro) => hasAtleast(container, "Planet", 3) && hasLessThan(container, "Planet", 15) && nothingLarger(container, "Planet"),
desc: (container, macro, verbose, flat) => [
"You scoop up a plethora of planets, popping them into your",
macro.jawDesc(true),
"like the finger-food they've become, tugging each one into your gullet - and on an irreversible one-way journey to your gut - with little gluks and gulps, sealing away all",
container.contents["Planet"].count,
"of them within your cosmic body."
].join(" ")
})

// CHEWING // CHEWING


rules["chew"].push({ rules["chew"].push({
@@ -4052,4 +4078,4 @@ rules["male-spurt"].push({


//powerplants factories //powerplants factories


//anal vore test "ring seals to the ground and pulls in" usde weight of rear to pull in more mass
//anal vore test "ring seals to the ground and pulls in" usde weight of rear to pull in more mass

+ 1
- 1
recursive-macro.js 파일 보기

@@ -172,7 +172,7 @@ var clusters =
"Town": 5, "Town": 5,
"City": 1, "City": 1,
"Continent": 5, "Continent": 5,
"Planet": 1,
"Planet": 9,
"Star": 1, "Star": 1,
"Solar System": 1, "Solar System": 1,
"Galaxy": 1, "Galaxy": 1,


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