import { Crimes } from "./Crimes"; import { Player } from "../Player"; import { dialogBoxCreate } from "../../utils/DialogBox"; export function determineCrimeSuccess(type, moneyGained) { var chance = 0; var found = false; for(const i in Crimes) { const crime = Crimes[i]; if(crime.type == type) { chance = crime.successRate(Player); found = true; break; } } if(!found) { console.log(crime); dialogBoxCreate("ERR: Unrecognized crime type. This is probably a bug please contact the developer"); return; } if (Math.random() <= chance) { //Success Player.gainMoney(moneyGained); return true; } else { //Failure return false; } } export function findCrime(roughName) { if (roughName.includes("shoplift")) { return Crimes.Shoplift; } else if (roughName.includes("rob") && roughName.includes("store")) { return Crimes.RobStore; } else if (roughName.includes("mug")) { return Crimes.Mug; } else if (roughName.includes("larceny")) { return Crimes.Larceny; } else if (roughName.includes("drugs")) { return Crimes.DealDrugs; } else if (roughName.includes("bond") && roughName.includes("forge")) { return Crimes.BondForgery; } else if (roughName.includes("traffick") && roughName.includes("arms")) { return Crimes.TraffickArms; } else if (roughName.includes("homicide")) { return Crimes.Homicide; } else if (roughName.includes("grand") && roughName.includes("auto")) { return Crimes.GrandTheftAuto; } else if (roughName.includes("kidnap")) { return Crimes.Kidnap; } else if (roughName.includes("assassinate")) { return Crimes.Assassination; } else if (roughName.includes("heist")) { return Crimes.Heist; } return null; }