Skip to content

Commit

Permalink
Merge pull request #3 from AstronIsTaken/dev
Browse files Browse the repository at this point in the history
Demeter DU update: Add mining units
  • Loading branch information
AstronIsTaken committed Oct 29, 2021
2 parents 33182d7 + 24ea433 commit b632c33
Show file tree
Hide file tree
Showing 3 changed files with 132 additions and 4 deletions.
14 changes: 13 additions & 1 deletion data/itemsAccordion.json
Original file line number Diff line number Diff line change
Expand Up @@ -1395,6 +1395,17 @@
},
"Transfer Unit"
]
},
{
"name": "Mining Units",
"data": [
"Basic Mining Unit S",
"Basic Mining Unit L",
"Uncommon Mining Unit L",
"Advanced Mining Unit L",
"Rare Mining Unit L",
"Exotic Mining Unit L"
]
}
]
},
Expand Down Expand Up @@ -2183,6 +2194,7 @@
"name": "Quantum Alignment Units",
"data": [
"Advanced Quantum Alignment Unit",
"Rare Quantum Alignment Unit",
"Exotic Quantum Alignment Unit"
]
},
Expand Down Expand Up @@ -2610,4 +2622,4 @@
}
]
}
]
]
118 changes: 117 additions & 1 deletion data/recipes.json
Original file line number Diff line number Diff line change
Expand Up @@ -2305,6 +2305,27 @@
"Advanced Quantum Core": 1
}
},
"Rare Quantum Alignment Unit": {
"tier": 4,
"type": "Exceptional Part",
"volume": 27.5,
"outputQuantity": 1,
"time": 11820,
"byproducts": {},
"industry": "Electronics Industry M",
"input": {
"Polycarbonate Plastic": 5,
"Basic LED": 5,
"Basic Quantum Core": 2,
"Polycalcite Plastic": 5,
"Uncommon LED": 5,
"Uncommon Quantum Core": 1,
"Polysulfide Plastic": 5,
"Advanced Quantum Core": 1,
"Fluoropolymer": 5,
"Rare Quantum Core": 1
}
},
"Exotic Quantum Alignment Unit": {
"tier": 5,
"type": "Exceptional Part",
Expand Down Expand Up @@ -20704,5 +20725,100 @@
"Advanced Antenna S": 1,
"Advanced Standard Frame S": 1
}
},
"Basic Mining Unit S": {
"tier": 1,
"type": "Industry & Infrastructure Element",
"volume": 70,
"outputQuantity": 1,
"time": 432,
"byproducts": {},
"industry": "Assembly Line S",
"input": {
"Basic Fixation": 6,
"Basic Hydraulics": 5,
"Basic Ore Scanner S": 1,
"Basic Standard Frame S": 1
}
},
"Basic Mining Unit L": {
"tier": 1,
"type": "Industry & Infrastructure Element",
"volume": 2200,
"outputQuantity": 1,
"time": 6912,
"byproducts": {},
"industry": "Assembly Line L",
"input": {
"Basic Fixation": 216,
"Basic Hydraulics": 125,
"Basic Ore Scanner L": 1,
"Basic Standard Frame L": 1
}
},
"Uncommon Mining Unit L": {
"tier": 2,
"type": "Industry & Infrastructure Element",
"volume": 2454,
"outputQuantity": 1,
"time": 20760,
"byproducts": {},
"industry": "Assembly Line L",
"input": {
"Basic Fixation": 108,
"Uncommon Fixation": 108,
"Uncommon Hydraulics": 125,
"Uncommon Ore Scanner L": 1,
"Uncommon Standard Frame L": 1
}
},
"Advanced Mining Unit L": {
"tier": 3,
"type": "Industry & Infrastructure Element",
"volume": 4050,
"outputQuantity": 1,
"time": 77760,
"byproducts": {},
"industry": "Assembly Line L",
"input": {
"Uncommon Fixation": 216,
"Advanced Hydraulics": 125,
"Advanced Ore Scanner L": 1,
"Advanced Quantum Alignment Unit": 64,
"Advanced Standard Frame L": 1
}
},
"Rare Mining Unit L": {
"tier": 4,
"type": "Industry & Infrastructure Element",
"volume": 4200,
"outputQuantity": 1,
"time": 234000,
"byproducts": {},
"industry": "Assembly Line L",
"input": {
"Uncommon Fixation": 108,
"Advanced Fixation": 108,
"Rare Hydraulics": 125,
"Rare Ore Scanner L": 1,
"Rare Quantum Alignment Unit": 64,
"Rare Standard Frame L": 1
}
},
"Exotic Mining Unit L": {
"tier": 5,
"type": "Industry & Infrastructure Element",
"volume": 4400,
"outputQuantity": 1,
"time": 698400,
"byproducts": {},
"industry": "Assembly Line L",
"input": {
"Advanced Fixation": 216,
"Exotic Hydraulics": 125,
"Exotic Ore Scanner L": 1,
"Exotic Quantum Alignment Unit": 64,
"Exotic Standard Frame L": 1
}
}
}
}
4 changes: 2 additions & 2 deletions js/crafting_calc_interface.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ function copyStringToClipboard(str) {
var itemsAccordion, prices, recipes, german;

const version = "1";
const lastUpdateTime = "2021-08-25";
const lastUpdateTime = "2021-10-29";
document.getElementById("lastUpdateTime").innerHTML = lastUpdateTime;
console.log("Crafting Calculator Updated On: " + lastUpdateTime)
console.log("Crafting Calculator Profile Version: " + version)
Expand Down Expand Up @@ -1431,4 +1431,4 @@ tryRestoreState();
cc.updateSkills(getAllSkills(), skillValues);
updateSkills();
setupCallbacks();
calculate();
calculate();

0 comments on commit b632c33

Please sign in to comment.