Skip to content

Commit

Permalink
move ores around
Browse files Browse the repository at this point in the history
  • Loading branch information
medsal15 committed Oct 28, 2024
1 parent 9399233 commit a35d878
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/layers/main/0/mining.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const ORE_SIZES = {
width: 3,
height: 3,
};
//todo rebalance upgrade & compactor costs
//todo rebalance upgrade costs
addLayer('m', {
row: 0,
position: 1,
Expand Down Expand Up @@ -1486,7 +1486,7 @@ addLayer('m', {
get id() { return this._id ??= Object.entries(layers.m.ores).find(([, r]) => r == this)[0]; },
color() { return tmp.items.copper_ore.color; },
name: 'copper ore',
position: [0, 1],
position: [1, 1],
health(vein) {
vein ??= tmp.m.ores[this.id].vein;

Expand Down Expand Up @@ -1522,7 +1522,7 @@ addLayer('m', {
get id() { return this._id ??= Object.entries(layers.m.ores).find(([, r]) => r == this)[0]; },
color() { return tmp.items.tin_ore.color; },
name: 'tin ore',
position: [1, 1],
position: [1, 2],
health(vein) {
vein ??= tmp.m.ores[this.id].vein;

Expand Down
Binary file modified resources/images/ores.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit a35d878

Please sign in to comment.