Skip to content

Commit

Permalink
Fixed some tram capacities
Browse files Browse the repository at this point in the history
  • Loading branch information
audigex committed Aug 12, 2024
1 parent 42d9bd6 commit 61c9e07
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion docs/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
- Added Class 68 + Mk3 rake
- Adjusted EyeCandy engine to hopefully discourage AI use
- Fixed some animated pixels on HST rear power car
- Fixed vehicles not being removed correctly by parameters
- Fixed some tram capacities
- Fixed Tram parameter switch
- Fixed Debug Mode and Simple Mode not removing some vehicles

# v2.12 (2024-08-08)
- Added LMS Black 5
Expand Down
2 changes: 1 addition & 1 deletion src/trams/Metro/BR777_Tram.pnml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ item (FEAT_ROADVEHS, item_TRAM_BR777, 643) {
purchase: spriteset_br777_purchase;
colour_mapping: return PALETTE_CC_FIRST;
sound_effect: sw_TRAM_electric_sound;
cargo_capacity: return(484 * param_pax / 4);
cargo_capacity: return(121 * param_pax);
cost_factor: return(GetAdjustedCostTRAM(50));
running_cost_factor: return(GetAdjustedCostTRAM(40));
weight: 99;
Expand Down
2 changes: 1 addition & 1 deletion src/trams/Metro/LU1938_Tram.pnml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ item (FEAT_ROADVEHS, item_TRAM_LU1938, 490) {
articulated_part: switch_articulated_TRAM_LU1938;
default: sw_TRAM_LU1938;
purchase: spriteset_TRAM_LU1938_Purchase;
cargo_capacity: return(141 * param_pax / 8);
cargo_capacity: return(1128 * param_pax / 8);
cost_factor: return(GetAdjustedCostTRAM(61));
running_cost_factor: return(GetAdjustedCostTRAM(37));
weight: 197;
Expand Down
4 changes: 2 additions & 2 deletions src/trams/Metro/LUS7S8_Tram.pnml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ item (FEAT_ROADVEHS, item_TRAM_LULS7, 292) {
purchase: spriteset_TRAM_LUS7S8_Purchase;
colour_mapping: return PALETTE_CC_FIRST;
sound_effect: sw_TRAM_electric_sound;
cargo_capacity: return(205 * param_pax /7);
cargo_capacity: return(1435 * param_pax /7);
cost_factor: return(GetAdjustedCostTRAM(113));
running_cost_factor: return(GetAdjustedCostTRAM(45));
weight: 213;
Expand Down Expand Up @@ -76,7 +76,7 @@ item (FEAT_ROADVEHS, item_TRAM_LULS8, 293) {
purchase: spriteset_TRAM_LUS7S8_Purchase;
colour_mapping: return PALETTE_CC_FIRST;
sound_effect: sw_TRAM_electric_sound;
cargo_capacity: return(205 * param_pax / 8);
cargo_capacity: return(1640 * param_pax / 8);
cost_factor: return(GetAdjustedCostTRAM(125));
running_cost_factor: return(GetAdjustedCostTRAM(50));
weight: 242;
Expand Down

0 comments on commit 61c9e07

Please sign in to comment.