Skip to content

Commit fcfa8b4

Browse files
github-actions[bot]oliversalzburg
authored andcommitted
feat: Update metadata snapshots
1 parent ae3a330 commit fcfa8b4

File tree

3 files changed

+361
-1
lines changed

3 files changed

+361
-1
lines changed

lib/chronoforgeUpgrades.js

Lines changed: 186 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,186 @@
1+
//
2+
// Kitten game is licensed under a WET PAWS LICENSE.
3+
//
4+
// You are free to make any changes in the code for personal or educational purpose.
5+
// Using the game code for commercial gain or creation of derivative works is not permitted.
6+
//
7+
// Hosting a translated version of the game is permitted as long as the game retains all links.
8+
// And for god's sake please don't make huge idiotic red logos of your website. (Yes, u77 folks, I am talking about you).
9+
//
10+
// Kitten Science Game Data Exporter © 2025 by Oliver Salzburg is licensed under CC BY-NC-ND 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/4.0/
11+
//
12+
13+
export default {
14+
blastFurnace: {
15+
description:
16+
"Operates on chronoheat. Increases the maximum heat limit by 100.<br>Automation skips one year into the future for each 100% of fuel consumed.",
17+
effects: {
18+
heatMax: 100,
19+
heatPerTick: 0.02,
20+
},
21+
heat: 0,
22+
isAutomationEnabled: false,
23+
label: "Chrono Furnace",
24+
name: "blastFurnace",
25+
on: 0,
26+
priceRatio: 1.25,
27+
prices: [
28+
{
29+
name: "timeCrystal",
30+
val: 25,
31+
},
32+
{
33+
name: "relic",
34+
val: 5,
35+
},
36+
],
37+
unlocked: true,
38+
unlocks: {
39+
chronoforge: ["timeBoiler"],
40+
upgrades: ["tachyonModerator"],
41+
},
42+
},
43+
controlledDelay: {
44+
delayTicks: 0,
45+
description:
46+
"Each one makes the Chrono Furnace wait 0.2 seconds before firing again.<br>Toggling automation has no gameplay effect.",
47+
effects: {
48+
energyConsumption: 0.75,
49+
},
50+
isAutomationEnabled: false,
51+
label: "Controlled Delay",
52+
limitBuild: 25,
53+
name: "controlledDelay",
54+
priceRatio: 1,
55+
prices: [
56+
{
57+
name: "timeCrystal",
58+
val: 1,
59+
},
60+
{
61+
name: "gear",
62+
val: 10,
63+
},
64+
],
65+
unlocked: false,
66+
},
67+
ressourceRetrieval: {
68+
description: "Retrieve part of your yearly resources when you burn TC",
69+
effects: {
70+
shatterTCGain: 0.01,
71+
},
72+
label: "Resource Retrieval",
73+
limitBuild: 100,
74+
name: "ressourceRetrieval",
75+
priceRatio: 1.3,
76+
prices: [
77+
{
78+
name: "timeCrystal",
79+
val: 1000,
80+
},
81+
],
82+
unlocked: false,
83+
},
84+
temporalAccelerator: {
85+
description: "Improves time-related effects by 5%<br>Automation decreases shatter lag",
86+
effects: {
87+
timeRatio: 0.05,
88+
},
89+
isAutomationEnabled: null,
90+
label: "Temporal Accelerator",
91+
name: "temporalAccelerator",
92+
priceRatio: 1.25,
93+
prices: [
94+
{
95+
name: "timeCrystal",
96+
val: 10,
97+
},
98+
{
99+
name: "relic",
100+
val: 1000,
101+
},
102+
],
103+
unlocked: true,
104+
upgrades: {
105+
chronoforge: ["temporalImpedance"],
106+
},
107+
},
108+
temporalBattery: {
109+
description: "Improves your flux energy capacity by 25%",
110+
effects: {
111+
temporalFluxMax: 750,
112+
},
113+
label: "Temporal Battery",
114+
name: "temporalBattery",
115+
priceRatio: 1.25,
116+
prices: [
117+
{
118+
name: "timeCrystal",
119+
val: 5,
120+
},
121+
],
122+
unlocked: true,
123+
},
124+
temporalImpedance: {
125+
description: "Delay effect of Dark Future temporal penalty by 1000 years.",
126+
effects: {
127+
timeImpedance: 1000,
128+
},
129+
label: "Time Impedance",
130+
name: "temporalImpedance",
131+
priceRatio: 1.05,
132+
prices: [
133+
{
134+
name: "timeCrystal",
135+
val: 100,
136+
},
137+
{
138+
name: "relic",
139+
val: 250,
140+
},
141+
],
142+
unlocked: false,
143+
},
144+
temporalPress: {
145+
description: "Allows for fine tuning of shattering",
146+
effects: {
147+
energyConsumption: 5,
148+
shatterYearBoost: 0,
149+
},
150+
isAutomationEnabled: null,
151+
label: "Temporal Press",
152+
name: "temporalPress",
153+
priceRatio: 1.1,
154+
prices: [
155+
{
156+
name: "timeCrystal",
157+
val: 100,
158+
},
159+
{
160+
name: "void",
161+
val: 10,
162+
},
163+
],
164+
unlocked: false,
165+
},
166+
timeBoiler: {
167+
description: "Expands the heat capacity of Chrono Furnaces.",
168+
effects: {
169+
energyConsumption: 1,
170+
heatMaxExpansion: 10,
171+
},
172+
label: "Time Boiler",
173+
name: "timeBoiler",
174+
priceRatio: 1.25,
175+
prices: [
176+
{
177+
name: "timeCrystal",
178+
val: 25000,
179+
},
180+
],
181+
unlocked: false,
182+
upgrades: {
183+
chronoforge: ["blastFurnace"],
184+
},
185+
},
186+
};

lib/index.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import achievements from "./achievements.js";
22
import badges from "./badges.js";
33
import buildings from "./buildings.js";
4+
import chronoforgeUpgrades from "./chronoforgeUpgrades.js";
45
import crafts from "./crafts.js";
56
import jobs from "./jobs.js";
67
import perks from "./perks.js";
@@ -12,23 +13,26 @@ import religionUpgrades from "./religionUpgrades.js";
1213
import techs from "./techs.js";
1314
import transcendenceUpgrades from "./transcendenceUpgrades.js";
1415
import upgrades from "./upgrades.js";
16+
import voidspaceUpgrades from "./voidspaceUpgrades.js";
1517
import zebraUpgrades from "./zebraUpgrades.js";
1618
import zigguratUpgrades from "./zigguratUpgrades.js";
1719
export {
1820
achievements,
1921
badges,
2022
buildings,
23+
chronoforgeUpgrades,
2124
crafts,
2225
jobs,
23-
races,
2426
perks,
2527
planets,
2628
policies,
2729
programs,
30+
races,
2831
religionUpgrades,
2932
techs,
3033
transcendenceUpgrades,
3134
upgrades,
35+
voidspaceUpgrades,
3236
zebraUpgrades,
3337
zigguratUpgrades,
3438
};

lib/voidspaceUpgrades.js

Lines changed: 170 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,170 @@
1+
//
2+
// Kitten game is licensed under a WET PAWS LICENSE.
3+
//
4+
// You are free to make any changes in the code for personal or educational purpose.
5+
// Using the game code for commercial gain or creation of derivative works is not permitted.
6+
//
7+
// Hosting a translated version of the game is permitted as long as the game retains all links.
8+
// And for god's sake please don't make huge idiotic red logos of your website. (Yes, u77 folks, I am talking about you).
9+
//
10+
// Kitten Science Game Data Exporter © 2025 by Oliver Salzburg is licensed under CC BY-NC-ND 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/4.0/
11+
//
12+
13+
export default {
14+
chronocontrol: {
15+
description: "Increase the duration of Temporal Paradox",
16+
effects: {
17+
energyConsumption: 15,
18+
temporalParadoxDay: 0,
19+
},
20+
label: "Chronocontrol",
21+
name: "chronocontrol",
22+
priceRatio: 1.25,
23+
prices: [
24+
{
25+
name: "temporalFlux",
26+
val: 3000,
27+
},
28+
{
29+
name: "timeCrystal",
30+
val: 30,
31+
},
32+
{
33+
name: "void",
34+
val: 500,
35+
},
36+
],
37+
unlocked: false,
38+
unlockScheme: {
39+
name: "vintage",
40+
threshold: 1,
41+
},
42+
unlocks: {
43+
upgrades: ["turnSmoothly"],
44+
},
45+
},
46+
cryochambers: {
47+
breakIronWill: true,
48+
description:
49+
"Will preserve one kitten after the reset.<br>You can have one Cryochamber per Chronosphere",
50+
effects: {
51+
maxKittens: 1,
52+
},
53+
flavor: "Board for the past",
54+
label: "Cryochamber",
55+
limitBuild: 0,
56+
name: "cryochambers",
57+
priceRatio: 1.25,
58+
prices: [
59+
{
60+
name: "karma",
61+
val: 1,
62+
},
63+
{
64+
name: "timeCrystal",
65+
val: 2,
66+
},
67+
{
68+
name: "void",
69+
val: 100,
70+
},
71+
],
72+
unlocked: false,
73+
upgrades: {
74+
voidSpace: ["cryochambers"],
75+
},
76+
},
77+
usedCryochambers: {
78+
description: "Unsealed Cryochamber. Not in operating condition.",
79+
effects: {},
80+
fixPrices: [
81+
{
82+
name: "temporalFlux",
83+
val: 3000,
84+
},
85+
{
86+
name: "timeCrystal",
87+
val: 100,
88+
},
89+
{
90+
name: "void",
91+
val: 500,
92+
},
93+
],
94+
label: "Used Cryochamber",
95+
limitBuild: 0,
96+
name: "usedCryochambers",
97+
priceRatio: 1.25,
98+
prices: [],
99+
unlocked: false,
100+
},
101+
voidHoover: {
102+
description: "Increase the maximum of void gained per day during the Temporal Paradox",
103+
effects: {
104+
temporalParadoxVoid: 1,
105+
},
106+
label: "Void Hoover",
107+
name: "voidHoover",
108+
priceRatio: 1.25,
109+
prices: [
110+
{
111+
name: "antimatter",
112+
val: 1000,
113+
},
114+
{
115+
name: "timeCrystal",
116+
val: 10,
117+
},
118+
{
119+
name: "void",
120+
val: 250,
121+
},
122+
],
123+
unlocked: false,
124+
},
125+
voidResonator: {
126+
description:
127+
"Every Void Resonator will improve Order of the Void effect by 10%. Will trigger Order of the Void on a time skip.",
128+
effects: {
129+
voidResonance: 0.1,
130+
},
131+
label: "Void Resonator",
132+
name: "voidResonator",
133+
priceRatio: 1.25,
134+
prices: [
135+
{
136+
name: "timeCrystal",
137+
val: 1000,
138+
},
139+
{
140+
name: "relic",
141+
val: 10000,
142+
},
143+
{
144+
name: "void",
145+
val: 50,
146+
},
147+
],
148+
unlocked: false,
149+
},
150+
voidRift: {
151+
description: "Increase the maximum storage space by 2%",
152+
effects: {
153+
globalResourceRatio: 0.02,
154+
umbraBoostRatio: 0.1,
155+
},
156+
label: "Void Rift",
157+
name: "voidRift",
158+
priceRatio: 1.3,
159+
prices: [
160+
{
161+
name: "void",
162+
val: 75,
163+
},
164+
],
165+
unlocked: false,
166+
upgrades: {
167+
spaceBuilding: ["hrHarvester"],
168+
},
169+
},
170+
};

0 commit comments

Comments
 (0)