Skip to content

Commit

Permalink
Add more space buildings to cooling list
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBrain0110 committed Jul 12, 2018
1 parent ebff842 commit 8046cda
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,6 @@ typings/

# next.js build output
.next

# Savegame Files
*.sav
10 changes: 7 additions & 3 deletions regolate.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,18 @@ function printDataStructure(itemName) {
const saveData = loadFile(savename);
console.log("Save File Parsed");

modifyItems("Regolith", null, 10);
modifyItems("Regolith", 1, 10);
checkItems("Regolith");
modifyItems("BunkerTile", null, 100);
checkItems("BunkerTile");
modifyItems("ExteriorWall", null, 100);
checkItems("ExteriorWall");
modifyItems("SolarPanel", null, 100);
checkItems("SolarPanel");
//printDataStructure("ExteriorWall");
//printDataStructure("SolarPanel");
modifyItems("Iron", null, 200)
modifyItems("BunkerDoor", null, 100)
modifyItems("GlassTile", null, 100)
printDataStructure("BunkerDoor");

//saveFile(`${savename}-pruned`, saveData);
saveFile(`${savename}-pruned`, saveData);

0 comments on commit 8046cda

Please sign in to comment.