From: xangelo Date: Wed, 6 Sep 2023 17:32:54 +0000 (-0400) Subject: chore(release): 0.3.5 X-Git-Tag: v0.3.5 X-Git-Url: https://git.xangelo.ca/?p=risinglegends.git;a=commitdiff_plain;h=v0.3.5;hp=v0.3.4;ds=sidebyside chore(release): 0.3.5 --- diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e3b88a..81ae3c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [0.3.5](https://git.xangelo.ca/?p=risinglegends.git;a=commitdiff;h=v0.3.5;hp=v0.3.4;ds=sidebyside) (2023-09-06) + + +### Bug Fixes + +* reduce specials to 10% 5beba79 + ### [0.3.4](https://git.xangelo.ca/?p=risinglegends.git;a=commitdiff;h=v0.3.4;hp=v0.3.3;ds=sidebyside) (2023-09-06) diff --git a/package-lock.json b/package-lock.json index e59b806..ac9b526 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "rising-legends", - "version": "0.3.4", + "version": "0.3.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "rising-legends", - "version": "0.3.4", + "version": "0.3.5", "dependencies": { "@honeycombio/opentelemetry-node": "^0.4.0", "@opentelemetry/auto-instrumentations-node": "^0.37.0", diff --git a/package.json b/package.json index 5416f4b..891588d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "rising-legends", "private": true, - "version": "0.3.4", + "version": "0.3.5", "scripts": { "up": "npx prisma migrate dev --name \"init\"", "start": "pm2 start dist/server/api.js", diff --git a/src/shared/constants.ts b/src/shared/constants.ts index c95c80d..4cda940 100644 --- a/src/shared/constants.ts +++ b/src/shared/constants.ts @@ -2,4 +2,4 @@ export const FIGHT_ATTACK_DELAY = 1500; export const STEP_DELAY = 2000; export const ALERT_DISPLAY_LENGTH = 3000; // this is displayed as a percentage out of 100 -export const CHANCE_TO_FIGHT_SPECIAL = 100; +export const CHANCE_TO_FIGHT_SPECIAL = 10;