Added blood donation bonus

This commit is contained in:
Olivier Gagnon
2022-04-14 15:17:46 -04:00
parent afbfb46775
commit 52e27e317e
5 changed files with 38 additions and 29 deletions
+2 -1
View File
@@ -37,6 +37,7 @@ import { ISkillProgress } from "../formulas/skill";
import { PlayerAchievement } from "../../Achievements/Achievements";
import { cyrb53 } from "../../utils/StringHelperFunctions";
import { getRandomInt } from "../../utils/helpers/getRandomInt";
import { CONSTANTS } from "src/Constants";
export class PlayerObject implements IPlayer {
// Class members
@@ -354,7 +355,7 @@ export class PlayerObject implements IPlayer {
this.faction_rep_mult = 1;
//Money
this.money = 1000;
this.money = 1000 + CONSTANTS.Donations;
//Location information
this.city = CityName.Sector12;