public static List <StatBoost> GetStatBoostsForPython() => new List <StatBoost>() { new StatBoost() { StatType = StatTypes.GetByUniqueId("excitement"), Multiplier = 2f, // Going on Python makes you twice as excited as you were Duration = 5, } };
private void AddEmployeeButton_Click(object sender, RoutedEventArgs e) { Employee NewEmployee = new Employee(); NewEmployee.Function = "Performer"; NewEmployee.Boost.StatType = StatTypes.GetByUniqueId("excitement"); Employees.Add(NewEmployee); employeeListView.Items.Add(NewEmployee.Name); }
public static List <StatBoost> GetStatBoostsForPython() => new List <StatBoost>() { new StatBoost() { StatType = StatTypes.GetByUniqueId("excitement"), Multiplier = 2f, // Going on Python makes you twice as excited as you were Duration = 5, }, new StatBoost() { StatType = StatTypes.GetByUniqueId("want_for_ride"), Multiplier = -2f, // Going on Python makes you not want to go on a ride again Duration = 50, } };