Skip to content

Commit

Permalink
Merge pull request #69 from Tendsty/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
Tendsty authored Sep 28, 2024
2 parents 2091713 + 76344cc commit 21f6864
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gooboo",
"version": "1.5.1",
"version": "1.5.2",
"description": "An idle game",
"author": "Tendsty",
"main": "main.js",
Expand Down
2 changes: 1 addition & 1 deletion public/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.1
1.5.2
2 changes: 1 addition & 1 deletion src/js/modules/gallery/upgrade.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default {
}, price(lvl) {
return {gallery_beauty: Math.pow(15, lvl) * buildNum(350, 'M')};
}, effect: [
{name: 'currencyGalleryConverterCap', type: 'mult', value: lvl => Math.pow(1.5, lvl)}
{name: 'currencyGalleryConverterCap', type: 'mult', value: lvl => Math.pow(1.9, lvl)}
]},
orangeConversion: {cap: 10, requirement() {
return store.state.stat.gallery_orange.total > 0;
Expand Down
2 changes: 2 additions & 0 deletions src/js/modules/meta.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import v1_4_1 from "./patchnote/v1_4_1";
import v1_5_0 from "./patchnote/v1_5_0";
import v1_4_2 from "./patchnote/v1_4_2";
import v1_5_1 from "./patchnote/v1_5_1";
import v1_5_2 from "./patchnote/v1_5_2";

export default {
name: 'meta',
Expand Down Expand Up @@ -56,6 +57,7 @@ export default {
store.commit('system/initTheme', {name: key, ...elem});
}
for (const [key, elem] of Object.entries({
'1.5.2': v1_5_2,
'1.5.1': v1_5_1,
'1.5.0': v1_5_0,
'1.4.2': v1_4_2,
Expand Down
15 changes: 15 additions & 0 deletions src/js/modules/patchnote/v1_5_2.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
export default {
day: '2024-09-29',
content: {
gallery: [
{
unlock: 'galleryConversion',
type: 'balance',
text: '395',
balance: 'buff',
before: '1.5x',
after: '1.9x'
},
],
}
}
3 changes: 3 additions & 0 deletions src/lang/de/patchnote.js
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,9 @@ export default {
392: 'Kartenkraft wird nun korrekt beim Prestige zurückgesetzt',
393: 'Der Courage-Multiplikator einzelner Klassen wird nun korrekt beim Prestige zurückgesetzt',
394: 'Der Tooltip bei der Umwandlung zeigt nun an, dass alle Konverter verbraucht werden',

// v1.5.2
395: 'Konverter-Kapazität pro "Mülleimer"-Stufe',
},
v: {
1: {
Expand Down
3 changes: 3 additions & 0 deletions src/lang/en/patchnote.js
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,9 @@ export default {
392: 'Fixed card power not properly resetting on prestige',
393: 'Fixed the class courage gain multiplier not properly resetting on prestige',
394: 'The conversion tooltip now states that all converters will be used',

// v1.5.2
395: 'Converter capacity per level of "Trash can"',
},
v: {
1: {
Expand Down
2 changes: 1 addition & 1 deletion src/store/system.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { LOCAL_STORAGE_NAME } from "../js/constants";
export default {
namespaced: true,
state: {
version: '1.5.1',
version: '1.5.2',
cheaterSelfMark: 0,
cheatDetected: {},
lastPlayedDays: [],
Expand Down

0 comments on commit 21f6864

Please sign in to comment.