modified crowded pods to be more inline with upgrade design

This commit is contained in:
Ellpeck 2020-06-10 20:39:40 +02:00
parent 060c69007d
commit 4e55392fe3
3 changed files with 4 additions and 4 deletions

View file

@ -50,13 +50,15 @@ namespace TouchyTickets.Attractions {
genRate *= (float) Math.Pow(modifier.Modifier.Multiplier, modifier.Amount);
// apply star upgrades
if (Upgrade.FerrisWheelModifier.IsActive() && this.GetSurrounding(map, position, FerrisWheel).Any())
genRate *= 2;
if (Upgrade.FoodCourtModifier.IsActive() && this.GetSurrounding(map, position, FoodCourt).Any())
genRate *= 2;
if (Upgrade.SpiralSlideModifier.IsActive() && this.GetSurrounding(map, position, SpiralSlide).Any())
genRate *= 2;
if (Upgrade.HauntedHouseModifier.IsActive() && this.Type.Flags.HasFlag(Relaxed) && this.GetSurrounding(map, position, HauntedHouse).Any())
genRate *= 3;
return genRate;
}

View file

@ -48,8 +48,6 @@ namespace TouchyTickets.Attractions {
public float GetGenerationRate() {
var genRate = this.generationPerSecond;
if (this == FerrisWheel && Upgrade.FerrisWheelModifier.IsActive())
genRate *= 4;
if (this.Flags.HasFlag(FastCars) && Upgrade.RollerCoasterModifier.IsActive())
genRate *= 2;
if (this.Flags.HasFlag(Walking) && Upgrade.ManualRideModifier.IsActive())

View file

@ -66,7 +66,7 @@
"FoodCourtModifier": "Tasty Treats",
"FoodCourtModifierDescription": "Doubles ticket sales for all attractions adjacent to food courts.",
"FerrisWheelModifier": "Crowded Pods",
"FerrisWheelModifierDescription": "Quadruples ticket sales for ferris wheels. Who cares about fire safety?",
"FerrisWheelModifierDescription": "Allows more people to oversee the area from ferris wheels. Doubles ticket sales for adjacent rides.",
"RollerCoasterModifier": "No Brakes",
"RollerCoasterModifierDescription": "Increases the speed of all car-based attractions, doubling their ticket sales.",
"ManualRideModifier": "Push and Shove",